HomeSort by relevance Sort by last modified time
    Searched defs:Value (Results 1 - 25 of 1094) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Wpce791/
LpcIsaAcpi.h 46 UINT8 Value;
  /external/clang/test/CodeGen/
typedef.c 3 typedef struct { int i; } Value;
4 typedef Value *PValue;
  /external/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 26 /// Note that much like pointers, an integer value of zero has special utility
27 /// due to boolean conversions. For example, a non-null value can be tested for
29 /// Also, the default constructed value zero initializes the integer.
32 uintptr_t Value;
40 // We shift as many zeros into the value as we can while preserving the
54 explicit PointerEmbeddedInt(uintptr_t Value, RawValueTag) : Value(Value) {}
57 PointerEmbeddedInt() : Value(0) {}
64 assert((std::is_signed<IntT>::value ? llvm::isInt<Bits>(I
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolCompilandEnv.cpp 26 Variant Value = RawSymbol->getValue();
27 if (Value.Type != PDB_VariantType::String)
29 return std::string(Value.Value.String);
PDBSymbolCompiland.cpp 40 std::string Value = Env->getValue();
41 return Value;
  /external/lzma/CPP/7zip/UI/Common/
Property.h 11 UString Value;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 29 /// Note that much like pointers, an integer value of zero has special utility
30 /// due to boolean conversions. For example, a non-null value can be tested for
32 /// Also, the default constructed value zero initializes the integer.
35 uintptr_t Value = 0;
43 // We shift as many zeros into the value as we can while preserving the
57 explicit PointerEmbeddedInt(uintptr_t Value, RawValueTag) : Value(Value) {}
65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
67 Value = static_cast<uintptr_t>(I) << Shift
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
PDBSymbolCompilandEnv.cpp 28 Variant Value = RawSymbol->getValue();
29 if (Value.Type != PDB_VariantType::String)
31 return std::string(Value.Value.String);
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_rpc_factory_registration.cc 24 struct Value {
31 REGISTER_RPC_FACTORY("grpc", Value::Function);
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmCpuLib/ArmCortexA5xLib/
ArmCortexA5xLib.c 68 UINT64 Value;
69 Value = ArmReadCpuExCr ();
70 Value |= Bits;
71 ArmWriteCpuExCr (Value);
80 UINT64 Value;
81 Value = ArmReadCpuExCr ();
82 Value &= ~Bits;
83 ArmWriteCpuExCr (Value);
  /external/capstone/
LEB128.h 25 /// Utility function to decode a ULEB128 value.
29 uint64_t Value = 0;
32 Value += (*p & 0x7f) << Shift;
37 return Value;
  /external/oj-libjdwp/src/share/classes/com/sun/jdi/
Value.java 29 * The mirror for a value in the target VM.
31 * value hierarchy encompassing primitive values and object values.
38 * <TD>- value of a field
42 * <TD>- value of a variable
53 * The following table illustrates which subinterfaces of Value
55 * <TABLE BORDER=1 SUMMARY="Maps each kind of value to a mirrored
56 * instance of a subinterface of Value">
60 * <TH id="kind" align="left">Kind of value</TH>
63 * <TH id="type" align="left">{@link Type} of value<br>{@link #type() Value.type()}</TH
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_csscolorvalue.h 17 FX_ARGB Value() const { return value_; }
cfx_cssenumvalue.h 14 explicit CFX_CSSEnumValue(CFX_CSSPropertyValue value);
17 CFX_CSSPropertyValue Value() const { return value_; }
cfx_cssstringvalue.h 14 explicit CFX_CSSStringValue(const WideString& value);
17 const WideString Value() const { return value_; }
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ilistTest.cpp 20 int Value;
23 Node(int _Value) : Value(_Value) {}
29 EXPECT_EQ(1, List.back().Value);
34 EXPECT_EQ(2, List.back().Value);
35 EXPECT_EQ(2, List.front().getNextNode()->Value);
36 EXPECT_EQ(1, List.back().getPrevNode()->Value);
39 EXPECT_EQ(2, ConstList.back().Value);
40 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
41 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFRelocMap.h 18 /// RelocAddrEntry contains relocated value and section index.
22 uint64_t Value;
  /external/v8/tools/clang/value_cleanup/tests/
values.h 14 class Value {
16 using ListStorage = std::vector<Value>;
25 class ListValue : public Value {
37 void Append(std::unique_ptr<Value> in_value);
39 bool AppendIfNotPresent(std::unique_ptr<Value> in_value);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSecLibCTA9x4/
CTA9x4Sec.c 125 UINT32 Value;
170 Value = MmioRead32 (ARM_VE_SYS_CFGRW1_REG); //Scc - CFGRW1
172 MmioWrite32 (ARM_VE_SYS_CFGRW1_REG, (Value & 0x0FFFFFFF) | ARM_VE_CFGRW1_REMAP_DRAM);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibMsc.c 57 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
65 @return The value read.
74 UINT8 Value;
77 Value = (UINT8)_inp ((UINT16)Port);
79 return Value;
85 Writes the 8-bit I/O port specified by Port with the value specified by Value
86 and returns Value. This function must guarantee that all I/O read and write
92 @param Value The value to write to the I/O port.
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/I2CLibPei/
I2CIoLibPei.c 22 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
30 @return The value read.
39 UINT8 Value;
41 Value = *(volatile UINT8*)Address;
42 return Value;
48 Reads the 16-bit MMIO register specified by Address. The 16-bit read value is
57 @return The value read.
66 UINT16 Value;
69 Value = *(volatile UINT16*)Address;
70 return Value;
    [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/compiler-rt/lib/ubsan/
ubsan_value.cc 10 // Representation of a runtime value, as marshaled from the generated code to
23 SIntMax Value::getSIntValue() const {
44 UIntMax Value::getUIntValue() const {
60 UIntMax Value::getPositiveIntValue() const {
68 /// Get the floating-point value of this object, extended to a long double.
71 FloatMax Value::getFloatValue() const {
79 __fp16 Value;
80 internal_memcpy(&Value, &Val, 4);
81 return Value;
85 float 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/libunwind/doc/
unw_backtrace.tex 35 \section{Return Value}
38 \Var{buffer}. The return value may be zero to indicate that no addresses were

Completed in 455 milliseconds

1 2 3 4 5 6 7 8 91011>>