/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
builder_math.h | 32 Value* VLOG2PS(Value* src); 33 Value* VPOW24PS(Value* src); 34 Value* VEXP2PS(Value* src);
|
builder_misc.h | 60 Value *VIMMED1(int i); 61 Value *VIMMED1_16(int i); 63 Value *VIMMED1(uint32_t i); 64 Value *VIMMED1_16(uint32_t i); 66 Value *VIMMED1(float i); 67 Value *VIMMED1_16(float i); 69 Value *VIMMED1(bool i); 70 Value *VIMMED1_16(bool i); 72 Value *VUNDEF(Type* t); 74 Value *VUNDEF_F() [all...] |
/external/swiftshader/src/Reactor/ |
Nucleus.hpp | 26 class Value; 58 static Value *allocateStackVariable(Type *type, int arraySize = 0); 64 static Value *getArgument(unsigned int index); 68 static void createRet(Value *V); 70 static void createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse); 73 static Value *createAdd(Value *lhs, Value *rhs); 74 static Value *createSub(Value *lhs, Value *rhs) [all...] |
/external/swiftshader/third_party/subzero/runtime/ |
szrt.c | 19 uint32_t __Sz_fptoui_f32_i32(float value) { return (uint32_t)value; } 21 uint32_t __Sz_fptoui_f64_i32(double value) { return (uint32_t)value; } 23 uint64_t __Sz_fptoui_f32_i64(float Value) { return (uint64_t)Value; } 25 uint64_t __Sz_fptoui_f64_i64(double Value) { return (uint64_t)Value; } 27 int64_t __Sz_fptosi_f32_i64(float Value) { return (int64_t)Value; } [all...] |
/external/llvm/include/llvm/CodeGen/ |
AtomicExpandUtils.h | 14 class Value; 21 typedef function_ref<void(IRBuilder<> &, Value *, Value *, Value *, 22 AtomicOrdering, Value *&, Value *&)> CreateCmpXchgInstFun;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
AtomicExpandUtils.h | 20 class Value; 26 function_ref<void(IRBuilder<> &, Value *, Value *, Value *, AtomicOrdering, 27 Value *&, Value *&)>;
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/ |
SwapBytes16.c | 23 This function swaps the bytes in a 16-bit unsigned value to switch the value
24 from little endian to big endian or vice versa. The byte swapped value is
27 @param Value A 16-bit unsigned value.
29 @return The byte swapped Value.
35 IN UINT16 Value
38 return (UINT16) ((Value<< 8) | (Value>> 8));
|
SwapBytes64.c | 23 This function swaps the bytes in a 64-bit unsigned value to switch the value
24 from little endian to big endian or vice versa. The byte swapped value is
27 @param Value A 64-bit unsigned value.
29 @return The byte swapped Value.
35 IN UINT64 Value
38 return InternalMathSwapBytes64 (Value);
|
/external/llvm/lib/Support/ |
LEB128.cpp | 19 /// Utility function to get the size of the ULEB128-encoded value. 20 unsigned getULEB128Size(uint64_t Value) { 23 Value >>= 7; 25 } while (Value); 29 /// Utility function to get the size of the SLEB128-encoded value. 30 unsigned getSLEB128Size(int64_t Value) { 32 int Sign = Value >> (8 * sizeof(Value) - 1); 36 unsigned Byte = Value & 0x7f; 37 Value >>= 7 [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
LEB128.cpp | 19 /// Utility function to get the size of the ULEB128-encoded value. 20 unsigned getULEB128Size(uint64_t Value) { 23 Value >>= 7; 25 } while (Value); 29 /// Utility function to get the size of the SLEB128-encoded value. 30 unsigned getSLEB128Size(int64_t Value) { 32 int Sign = Value >> (8 * sizeof(Value) - 1); 36 unsigned Byte = Value & 0x7f; 37 Value >>= 7 [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParserCommon.h | 17 inline bool isImmSExti16i8Value(uint64_t Value) { 18 return isInt<8>(Value) || 19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value))); 22 inline bool isImmSExti32i8Value(uint64_t Value) { 23 return isInt<8>(Value) || 24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value))); 27 inline bool isImmSExti64i8Value(uint64_t Value) { 28 return isInt<8>(Value); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/ |
X86AsmParserCommon.h | 17 inline bool isImmSExti16i8Value(uint64_t Value) { 18 return isInt<8>(Value) || 19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value))); 22 inline bool isImmSExti32i8Value(uint64_t Value) { 23 return isInt<8>(Value) || 24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value))); 27 inline bool isImmSExti64i8Value(uint64_t Value) { 28 return isInt<8>(Value); [all...] |
/external/adhd/ucm-config/for_all_boards/Hangouts Meet speakermic/ |
HiFi.conf | 2 Value {
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/ |
Types.h | 22 class Value; 24 /// Map a value to a virtual register. 30 using ValueToVReg = DenseMap<const Value *, unsigned>;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 22 class Value; 41 Value *castToCStr(Value *V, IRBuilder<> &B); 44 /// pointer. Ptr is required to be some pointer type, and the return value has 46 Value *emitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL, 51 /// type, and the return value has 'intptr_t' type. 52 Value *emitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 21 class Value; 33 Value *castToCStr(Value *V, IRBuilder<> &B); 36 /// pointer. Ptr is required to be some pointer type, and the return value has 38 Value *emitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL, 43 /// type, and the return value has 'intptr_t' type. 44 Value *emitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ebc/ |
Synchronization.c | 27 IN volatile UINT32 *Value,
32 return *Value != CompareValue ? *Value :
33 ((*Value = ExchangeValue), CompareValue);
40 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and
41 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.
44 @param Value A pointer to the 64-bit value for the compare exchange [all...] |
/external/clang/test/CodeGenCXX/ |
debug-info-union-template.cpp | 6 template <typename T> union Value { int a; }; 7 void g(float value) { 8 Value<float> tempValue; 10 Value<float> f; 13 // CHECK: !DICompositeType(tag: DW_TAG_union_type, name: "Value<float>",
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
InstructionSimplify.h | 13 // returning a constant ("and i32 %x, 0" -> "0") or an already existing value 25 class Value; 32 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 37 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 42 Value *SimplifyMulInst(Value *LHS, Value *RHS, const TargetData *TD = 0 [all...] |
/external/clang/unittests/ASTMatchers/Dynamic/ |
VariantValueTest.cpp | 21 VariantValue Value = kUnsigned; 23 EXPECT_TRUE(Value.isUnsigned()); 24 EXPECT_EQ(kUnsigned, Value.getUnsigned()); 26 EXPECT_TRUE(Value.hasValue()); 27 EXPECT_FALSE(Value.isString()); 28 EXPECT_FALSE(Value.isMatcher()); 33 VariantValue Value = kString; 35 EXPECT_TRUE(Value.isString()); 36 EXPECT_EQ(kString, Value.getString()); 37 EXPECT_EQ("String", Value.getTypeAsString()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
InstructionSimplify.h | 13 // returning a constant ("and i32 %x, 0" -> "0") or an already existing value 52 class Value; 81 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 85 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW, 89 Value *SimplifyFAddInst(Value *LHS, Value *RHS, FastMathFlags FMF [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/ |
WriteMsr64.c | 21 void __writemsr (unsigned long Register, unsigned __int64 Value);
29 IN UINT64 Value
32 __writemsr (Index, Value);
33 return Value;
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/ |
WriteMsr64.c | 19 void __writemsr (unsigned long Register, unsigned __int64 Value);
27 @param Value Data wants to be written.
29 @return Value written to MSR.
36 IN UINT64 Value
39 __writemsr (Index, Value);
40 return Value;
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/Ebc/ |
Synchronization.c | 20 unsigned integer specified by Value. If Value is equal to
21 CompareValue, then Value is set to ExchangeValue and
22 CompareValue is returned. If Value is not equal to
23 CompareValue, then Value is returned. The compare exchange
26 @param Value A pointer to the 16-bit value for the
28 @param CompareValue 16-bit value used in compare operation.
29 @param ExchangeValue 16-bit value used in exchange operation.
31 @return The original *Value before exchange. [all...] |
/external/adhd/ucm-config/for_all_boards/Plankton Captured HDMI Audio/ |
HiFi.conf | 2 Value { 14 Value {
|