/external/skia/src/core/ |
SkImageFilterCache.cpp | 35 SkTDynamicHash<Value, Key>::Iter iter(&fLookup); 38 Value* v = &*iter; 43 struct Value { 44 Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset, const SkImageFilter* filter) 51 static const Key& GetKey(const Value& v) { 57 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Value); 62 if (Value* v = fLookup.find(key)) { 75 if (Value* v = fLookup.find(key)) { 78 Value* v = new Value(key, image, offset, filter) [all...] |
/external/skqp/src/core/ |
SkImageFilterCache.cpp | 35 SkTDynamicHash<Value, Key>::Iter iter(&fLookup); 38 Value* v = &*iter; 43 struct Value { 44 Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset, const SkImageFilter* filter) 51 static const Key& GetKey(const Value& v) { 57 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Value); 62 if (Value* v = fLookup.find(key)) { 75 if (Value* v = fLookup.find(key)) { 78 Value* v = new Value(key, image, offset, filter) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
CodeViewRecordIO.h | 49 template <typename T> Error mapObject(T &Value) { 51 return Writer->writeObject(Value); 56 Value = *ValuePtr; 60 template <typename T> Error mapInteger(T &Value) { 62 return Writer->writeInteger(Value); 64 return Reader->readInteger(Value); 67 template <typename T> Error mapEnum(T &Value) { 68 if (sizeof(Value) > maxFieldLength()) 74 X = static_cast<U>(Value); 79 Value = static_cast<T>(X) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
MathExtras.h | 45 /// The returned value is undefined. 47 /// The returned value is numeric_limits<T>::max() 49 /// The returned value is numeric_limits<T>::digits 213 static_assert(std::is_unsigned<T>::value, "Invalid type!"); 283 /// Return the high 32 bits of a 64 bit value. 284 constexpr inline uint32_t Hi_32(uint64_t Value) { 285 return static_cast<uint32_t>(Value >> 32); 288 /// Return the low 32 bits of a 64 bit value. 289 constexpr inline uint32_t Lo_32(uint64_t Value) { 290 return static_cast<uint32_t>(Value); 712 static const uint64_t value = (Value + Align - 1) \/ Align * Align; member in struct:AlignTo::from_value [all...] |
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
MathExtras.h | 36 /// \brief The returned value is undefined. 38 /// \brief The returned value is numeric_limits<T>::max() 40 /// \brief The returned value is numeric_limits<T>::digits 247 /// Hi_32 - This function returns the high 32 bits of a 64 bit value. 248 constexpr inline uint32_t Hi_32(uint64_t Value) { 249 return static_cast<uint32_t>(Value >> 32); 252 /// Lo_32 - This function returns the low 32 bits of a 64 bit value. 253 constexpr inline uint32_t Lo_32(uint64_t Value) { 254 return static_cast<uint32_t>(Value); 331 /// Gets the maximum value for a N-bit unsigned integer 694 static const uint64_t value = (Value + Align - 1) \/ Align * Align; member in struct:AlignTo::from_value [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
elemental_ir_emitter.cc | 59 // Returns whether operand is a floating-point literal with the given value. 60 bool IsFPLiteralWithValue(const HloInstruction* operand, float value) { 62 operand->literal().IsAllFloat(value)) { 66 IsFPLiteralWithValue(operand->operand(0), value); 77 StatusOr<llvm::Value*> GpuElementalIrEmitter::EmitLibdeviceMathCall( 78 const string& callee_name, absl::Span<llvm::Value* const> operands, 86 std::vector<llvm::Value*> converted_operands(operands.begin(), 111 llvm::Value* result = EmitMathCall(munged_callee, converted_operands, 120 StatusOr<llvm::Value*> GpuElementalIrEmitter::EmitLlvmIntrinsicMathCall( 121 const string& callee_name, absl::Span<llvm::Value* const> operands [all...] |
/external/webrtc/webrtc/base/ |
json_unittest.cc | 19 static Json::Value in_s("foo"); 20 static Json::Value in_sn("99"); 21 static Json::Value in_si("-99"); 22 static Json::Value in_sb("true"); 23 static Json::Value in_sd("1.2"); 24 static Json::Value in_n(12); 25 static Json::Value in_i(-12); 26 static Json::Value in_u(34U); 27 static Json::Value in_b(true); 28 static Json::Value in_d(1.2) [all...] |
/external/pdfium/fxjs/ |
cjs_app.h | 25 CJS_Return set_active_docs(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 28 CJS_Return set_calculate(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 31 CJS_Return set_forms_version(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 34 CJS_Return set_fs(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 37 CJS_Return set_fullscreen(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 40 CJS_Return set_language(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 43 CJS_Return set_media(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 46 CJS_Return set_platform(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 50 v8::Local<v8::Value> vp); 53 CJS_Return set_viewer_type(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp) [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
AliasAnalysis.h | 27 // alias, regardless of the value of the Size component. 78 /// UnknownSize - This is a special value which can be used with the 89 /// if known, or a conservative value otherwise. 100 const Value *Ptr; 111 explicit Location(const Value *P = 0, uint64_t S = UnknownSize, 115 Location getWithNewPtr(const Value *NewPtr) const { 167 AliasResult alias(const Value *V1, uint64_t V1Size, 168 const Value *V2, uint64_t V2Size) { 173 AliasResult alias(const Value *V1, const Value *V2) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
MemoryDependenceAnalysis.h | 48 class Value; 66 /// desired value. The pointer member of the MemDepResult pair holds the 82 /// load/store. The value loaded or stored is the produced value. 88 /// this case, the load is loading an undef value or a store is the 124 ValueTy Value; 126 explicit MemDepResult(ValueTy V) : Value(V) {} 153 bool isClobber() const { return Value.is<Clobber>(); } 157 bool isDef() const { return Value.is<Def>(); } 162 return Value.is<Other>() && Value.cast<Other>() == NonLocal [all...] |
MemoryBuiltins.h | 54 class Value; 56 /// Tests if a value is a call or invoke to a library function that 59 bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI, 62 /// Tests if a value is a call or invoke to a function that returns a 64 bool isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI, 67 /// Tests if a value is a call or invoke to a library function that 69 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, 72 /// Tests if a value is a call or invoke to a library function that 74 bool isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, 77 /// Tests if a value is a call or invoke to a library function tha [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetSockOpt/ |
SetSockOpt.c | 89 } Value;
92 // Display the value length
103 // Display the value
105 Value.u8 = &mBuffer[0];
109 pEnd = &Value.u8[ LengthInBytes ];
110 while ( pEnd > Value.u8 ) {
111 Print ( L" %02x", *Value.u8 );
112 Value.u8 += 1;
118 Print ( L"%d", *Value.i32 );
128 if (( SOCK_STREAM <= *Value.i32 ) && ( SOCK_SEQPACKET >= *Value.i32 )) { [all...] |
/external/skia/src/utils/ |
SkJSON.h | 56 class alignas(8) Value { 68 * @return The type of this value. 100 * @return The string representation of this value. 106 Value implementation notes: 148 // the high bits, sizeof(T) must be less than sizeof(Value) when accessing inline payloads. 169 static_assert(sizeof (T) <= sizeof(Value), ""); 170 static_assert(alignof(T) <= alignof(Value), ""); 175 T* cast() { return const_cast<T*>(const_cast<const Value*>(this)->cast<T>()); } 180 static_assert(sizeof(uintptr_t) == sizeof(Value) || 181 sizeof(uintptr_t) * 2 == sizeof(Value), ""); [all...] |
/external/skqp/src/utils/ |
SkJSON.h | 56 class alignas(8) Value { 68 * @return The type of this value. 100 * @return The string representation of this value. 106 Value implementation notes: 148 // the high bits, sizeof(T) must be less than sizeof(Value) when accessing inline payloads. 169 static_assert(sizeof (T) <= sizeof(Value), ""); 170 static_assert(alignof(T) <= alignof(Value), ""); 175 T* cast() { return const_cast<T*>(const_cast<const Value*>(this)->cast<T>()); } 180 static_assert(sizeof(uintptr_t) == sizeof(Value) || 181 sizeof(uintptr_t) * 2 == sizeof(Value), ""); [all...] |
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
DWARFFormValue.cpp | 86 Value.data = NULL; 87 // Read the value for the form into value and follow and DW_FORM_indirect 94 Value.uval = data.getUnsigned(offset_ptr, cu->getAddressByteSize()); 97 Value.uval = data.getULEB128(offset_ptr); 101 Value.uval = data.getU8(offset_ptr); 105 Value.uval = data.getU16(offset_ptr); 109 Value.uval = data.getU32(offset_ptr); 115 Value.uval = data.getU8(offset_ptr); 119 Value.uval = data.getU16(offset_ptr) [all...] |
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
IRBuilder.cpp | 23 /// has array of i8 type filled in with the nul terminated string value 26 Value *IRBuilderBase::CreateGlobalString(StringRef Str, const Twine &Name) { 42 Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) { 55 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops, 64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, 67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) } [all...] |
/external/v8/src/inspector/ |
v8-console.h | 36 v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&); 38 v8::Local<v8::Value>, 96 template <void (V8Console::*func)(const v8::FunctionCallbackInfo<v8::Value>&)> 97 static void call(const v8::FunctionCallbackInfo<v8::Value>& info) { 99 static_cast<V8Console*>(info.Data().As<v8::External>()->Value()); 103 template <void (V8Console::*func)(const v8::FunctionCallbackInfo<v8::Value>&, 105 static void call(const v8::FunctionCallbackInfo<v8::Value>& info) { 112 static void call(const v8::FunctionCallbackInfo<v8::Value>& info) { 121 void memoryGetterCallback(const v8::FunctionCallbackInfo<v8::Value>&); 122 void memorySetterCallback(const v8::FunctionCallbackInfo<v8::Value>&) [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
InstCombine.h | 38 /// getComplexity: Assign a complexity or rank value to LLVM Values... 40 static inline unsigned getComplexity(Value *V) { 100 // Return Value: 107 Value *OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty); 123 Value *FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS); 124 Value *FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS); 126 Value *FoldOrOfICmps(ICmpInst *LHS, ICmpInst *RHS); 127 Value *FoldOrOfFCmps(FCmpInst *LHS, FCmpInst *RHS) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
InstrTypes.h | 35 #include "llvm/IR/Value.h" 80 static bool classof(const Value *V) { 282 UnaryInstruction(Type *Ty, unsigned iType, Value *V, 287 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) 299 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); 309 static bool classof(const Value *V) { 319 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryInstruction, Value) 329 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, 331 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
DecParserMisc.py | 168 # Check if Value has the format of <NumValUint8> ["," <NumValUint8>]{0,}
171 # @param Value: Value to be checked
173 def IsValidNList(Value):
174 Par = ParserHelper(Value)
226 # @param Value: The pcd Value
228 def IsValidPcdDatum(Type, Value):
229 if not Value:
236 if not ((Value.startswith('L"') or Value.startswith('"') and \ [all...] |
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tools.Tests.pas | 114 property Value: String read GetValue write SetValue; 139 Foo.Value := FValue; 163 Value: string; 165 Value := 'bar'; 166 FIANTLRString.SetValue(Value); 167 CheckEquals(FIANTLRString.Value,'bar'); 194 Foo.Value := 'original'; 209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value); 233 Value: Integer [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
AMDGPUCodeGenPrepare.cpp | 41 #include "llvm/IR/Value.h" 139 Value* expandDivRem24(IRBuilder<> &Builder, BinaryOperator &I, 140 Value *Num, Value *Den, 144 Value* expandDivRem32(IRBuilder<> &Builder, BinaryOperator &I, 145 Value *Num, Value *Den) const; 282 Value *ExtOp0 = nullptr; 283 Value *ExtOp1 = nullptr; 284 Value *ExtRes = nullptr [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/ |
ProcessOptions.c | 43 // We can safely assume for now that we are concatenating a narrow value to this string.
54 Get UINT64 type value.
56 @param Value Input Hii value.
58 @retval UINT64 Return the UINT64 type value.
63 IN EFI_HII_VALUE *Value
70 switch (Value->Type) {
72 RetVal = Value->Value.u8;
76 RetVal = Value->Value.u16; [all...] |
/external/llvm/include/llvm/Analysis/ |
MemoryBuiltins.h | 33 class Value; 41 /// \brief Tests if a value is a call or invoke to a library function that 44 bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI, 47 /// \brief Tests if a value is a call or invoke to a function that returns a 49 bool isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI, 52 /// \brief Tests if a value is a call or invoke to a library function that 54 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, 57 /// \brief Tests if a value is a call or invoke to a library function that 59 bool isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI, 62 /// \brief Tests if a value is a call or invoke to a library function tha [all...] |
/external/mesa3d/src/egl/main/ |
eglimage.c | 131 attrs->DMABufFourCC.Value = val; 135 attrs->DMABufPlaneFds[0].Value = val; 139 attrs->DMABufPlaneOffsets[0].Value = val; 143 attrs->DMABufPlanePitches[0].Value = val; 147 attrs->DMABufPlaneFds[1].Value = val; 151 attrs->DMABufPlaneOffsets[1].Value = val; 155 attrs->DMABufPlanePitches[1].Value = val; 159 attrs->DMABufPlaneFds[2].Value = val; 163 attrs->DMABufPlaneOffsets[2].Value = val; 167 attrs->DMABufPlanePitches[2].Value = val [all...] |