/external/adhd/ucm-config/monroe/HDA Intel MID/ |
HiFi.conf | 2 Value { 11 Value {
|
/external/adhd/ucm-config/veyron/RockchipHDMI/ |
HiFi.conf | 2 Value { 9 Value {
|
/external/adhd/ucm-config/veyron_fievel/RockchipHDMI/ |
HiFi.conf | 2 Value { 9 Value {
|
/external/adhd/ucm-config/veyron_jaq/RockchipHDMI/ |
HiFi.conf | 2 Value { 9 Value {
|
/external/adhd/ucm-config/veyron_minnie/RockchipHDMI/ |
HiFi.conf | 2 Value { 9 Value {
|
/external/adhd/ucm-config/veyron_speedy/RockchipHDMI/ |
HiFi.conf | 2 Value { 9 Value {
|
/external/clang/lib/StaticAnalyzer/Core/ |
APSIntType.cpp | 16 APSIntType::testInRange(const llvm::APSInt &Value, 21 Value.isSigned() && Value.isNegative()) 26 if (Value.isSigned() && !IsUnsigned) 27 MinBits = Value.getMinSignedBits(); 29 MinBits = Value.getActiveBits(); 36 if (Value.isSigned()) 37 MinBits = Value.getMinSignedBits() - IsUnsigned; 39 MinBits = Value.getActiveBits() + !IsUnsigned; 45 if (Value.isSigned() && Value.isNegative() [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/ |
BuildLibCalls.h | 21 class Value; 25 Value *CastToCStr(Value *V, IRBuilder<> &B); 29 /// return value has 'intptr_t' type. 30 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD); 34 /// and the return value has 'i8*' type. 35 Value *EmitStrChr(Value *Ptr, char C, IRBuilder<> &B, const TargetData *TD); 38 Value *EmitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B [all...] |
/external/clang/test/CodeGen/ |
typedef.c | 3 typedef struct { int i; } Value; 4 typedef Value *PValue;
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
CaptureTracking.h | 18 class Value; 20 /// PointerMayBeCaptured - Return true if this pointer value may be captured 23 /// specifies whether returning the value (or part of it) from the function 25 /// whether storing the value (or part of it) into memory anywhere 27 bool PointerMayBeCaptured(const Value *V,
|
ValueTracking.h | 24 class Value; 39 void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero, 45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne, 48 /// isPowerOfTwo - Return true if the given value is known to have exactly one 52 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, unsigned Depth = 0); 54 /// isKnownNonZero - Return true if the given value is known to be non-zero 58 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0); 69 bool MaskedValueIsZero(Value *V, const APInt &Mask, 81 unsigned ComputeNumSignBits(Value *Op, const TargetData *TD = 0, 89 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ipf/ |
Synchronization.c | 27 Value and returns the incremented value. The increment operation must be
28 performed using MP safe mechanisms. The state of the return value is not
31 @param Value A pointer to the 32-bit value to increment.
33 @return The incremented value.
39 IN volatile UINT32 *Value
45 OriginalValue = *Value;
47 Value,
58 Value and returns the decrement value. The decrement operation must be [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/Ipf/ |
Synchronization.c | 21 Value and returns the incremented value. The increment operation must be
22 performed using MP safe mechanisms. The state of the return value is not
25 @param Value A pointer to the 32-bit value to increment.
27 @return The incremented value.
33 IN volatile UINT32 *Value
39 OriginalValue = *Value;
41 Value,
52 Value and returns the decrement value. The decrement operation must be [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/Main/ |
ByteSwap.c | 26 This function swaps the bytes in a 16-bit unsigned value to switch the value
27 from little endian to big endian or vice versa. The byte swapped value is
30 @param Value A 16-bit unsigned value.
32 @return The byte swapped Value.
35 uint16_t bswap16(uint16_t Value)
37 return SwapBytes16(Value);
43 This function swaps the bytes in a 32-bit unsigned value to switch the value
[all...] |
/external/flatbuffers/net/FlatBuffers/ |
Offset.cs | 24 public int Value; 25 public Offset(int value) 27 Value = value; 33 public int Value; 34 public StringOffset(int value) 36 Value = value; 42 public int Value; 43 public VectorOffset(int value) [all...] |
/external/llvm/lib/DebugInfo/CodeView/ |
TypeRecordBuilder.cpp | 24 void TypeRecordBuilder::writeUInt8(uint8_t Value) { 25 Writer.write(Value); 28 void TypeRecordBuilder::writeInt16(int16_t Value) { 29 Writer.write(Value); 32 void TypeRecordBuilder::writeUInt16(uint16_t Value) { 33 Writer.write(Value); 36 void TypeRecordBuilder::writeInt32(int32_t Value) { 37 Writer.write(Value); 40 void TypeRecordBuilder::writeUInt32(uint32_t Value) { 41 Writer.write(Value); [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
vector_support_library.h | 23 #include "llvm/IR/Value.h" 51 llvm::Value* Mul(llvm::Value* lhs, llvm::Value* rhs); 52 llvm::Value* Mul(int64 lhs, llvm::Value* rhs) { 55 llvm::Value* Mul(const llvm::APFloat& lhs, llvm::Value* rhs) { 61 llvm::Value* Mul(double lhs, llvm::Value* rhs) = delete [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
CmpInstAnalysis.h | 22 class Value; 37 /// <=> Value Definition 53 /// Non-NULL return value will be a true or false constant. 56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, 66 bool decomposeBitTestICmp(Value *LHS, Value *RHS, CmpInst::Predicate &Pred, 67 Value *&X, APInt &Mask,
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
MathExtras.h | 25 /// Hi_32 - This function returns the high 32 bits of a 64 bit value. 26 inline uint32_t Hi_32(uint64_t Value) { 27 return static_cast<uint32_t>(Value >> 32); 30 /// Lo_32 - This function returns the low 32 bits of a 64 bit value. 31 inline uint32_t Lo_32(uint64_t Value) { 32 return static_cast<uint32_t>(Value); 88 inline bool isMask_32(uint32_t Value) { 89 return Value && ((Value + 1) & Value) == 0 [all...] |
/external/perfetto/src/trace_processor/ |
json_trace_utils_unittest.cc | 19 #include <json/value.h> 30 ASSERT_EQ(CoerceToUint32(Json::Value(42)).value_or(0), 42); 31 ASSERT_EQ(CoerceToUint32(Json::Value("42")).value_or(0), 42); 32 ASSERT_EQ(CoerceToInt64(Json::Value(42.1)).value_or(-1), 42); 36 ASSERT_EQ(CoerceToInt64(Json::Value(42)).value_or(-1), 42); 37 ASSERT_EQ(CoerceToInt64(Json::Value("42")).value_or(-1), 42); 38 ASSERT_EQ(CoerceToInt64(Json::Value(42.1)).value_or(-1), 42); 39 ASSERT_FALSE(CoerceToInt64(Json::Value("foo")).has_value()); 40 ASSERT_FALSE(CoerceToInt64(Json::Value("1234!")).has_value()); 44 ASSERT_EQ(CoerceToNs(Json::Value(42)).value_or(-1), 42000) [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/Library/ |
PostCodeLib.h | 22 Sends a 32-bit value to a POST card.
24 Sends the 32-bit value specified by Value to a POST card, and returns Value.
26 directly to a POST card device. Other implementations may send Value to
28 display the 32-bit value on the status reporting device.
32 PostCode() must return Value immediately.
34 @param Value The 32-bit value to write to the POST card.
36 @return The 32-bit value to write to the POST card. [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/ |
elemental_ir_emitter.h | 23 #include "llvm/IR/Value.h" 43 virtual StatusOr<llvm::Value*> EmitUnaryOp(const HloInstruction* op, 44 llvm::Value* operand_value); 46 virtual StatusOr<llvm::Value*> EmitBinaryOp(const HloInstruction* op, 47 llvm::Value* lhs_value, 48 llvm::Value* rhs_value); 64 virtual StatusOr<llvm::Value*> EmitIntegerUnaryOp(const HloInstruction* op, 65 llvm::Value* operand_value); 67 virtual StatusOr<llvm::Value*> EmitFloatUnaryOp(const HloInstruction* op, 68 llvm::Value* operand_value) [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/ |
IoLib.c | 20 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
29 @return The value read.
45 Writes the 64-bit I/O port specified by Port with the value specified by Value
46 and returns Value. This function must guarantee that all I/O read and write
53 @param Value The value to write to the I/O port.
55 @return The value written the I/O port.
62 IN UINT64 Value
73 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is [all...] |
/external/webrtc/webrtc/base/ |
json.h | 30 bool GetIntFromJson(const Json::Value& in, int* out); 31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out); 32 bool GetStringFromJson(const Json::Value& in, std::string* out); 33 bool GetBoolFromJson(const Json::Value& in, bool* out); 34 bool GetDoubleFromJson(const Json::Value& in, double* out); 37 bool GetValueFromJsonArray(const Json::Value& in, size_t n, 38 Json::Value* out); 39 bool GetIntFromJsonArray(const Json::Value& in, size_t n, 41 bool GetUIntFromJsonArray(const Json::Value& in, size_t n, 43 bool GetStringFromJsonArray(const Json::Value& in, size_t n [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
LongJump.c | 34 If Value is 0, then ASSERT().
37 @param Value The value to return when the SetJump() context is restored.
44 IN UINTN Value
48 ASSERT (Value != 0);
50 InternalLongJump (JumpBuffer, Value);
|