HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 401 - 425 of 6124) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmGenericTimerVirtCounterLib/
ArmGenericTimerVirtCounterLib.c 91 IN UINTN Value
94 ArmArchTimerWriteReg (CntvTval, (VOID *)&Value);
115 UINTN Value;
116 ArmArchTimerReadReg (CntvCtl, (VOID *)&Value);
118 return Value;
124 UINTN Value
127 ArmArchTimerWriteReg (CntvCtl, (VOID *)&Value);
136 UINT64 Value;
137 ArmArchTimerReadReg (CntvCval, (VOID *)&Value);
139 return Value;
    [all...]
  /external/llvm/include/llvm/IR/
Use.h 12 /// instruction or some other User instance which refers to a Value. The Use
13 /// class keeps the "use list" of the referenced value up to date.
34 class Value;
49 /// \brief A Use represents the edge between a Value definition and its users.
52 /// all of the uses for a particular value definition. It also supports jumping
53 /// directly to the used value when we arrive from the User's operands, and
54 /// jumping directly to the User when we arrive from the Value's uses.
56 /// The pointer to the used Value is explicit, and the pointer to the User is
91 operator Value *() const { return Val; }
92 Value *get() const { return Val;
    [all...]
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 83 void setUseMarkup(bool Value) { UseMarkup = Value; }
90 void setPrintImmHex(bool Value) { PrintImmHex = Value; }
93 void setPrintHexStyle(HexStyle::Style Value) { PrintHexStyle = Value; }
96 format_object<int64_t> formatImm(int64_t Value) const {
97 return PrintImmHex ? formatHex(Value) : formatDec(Value);
101 format_object<int64_t> formatDec(int64_t Value) const
    [all...]
  /external/pdfium/fxjs/
cjs_return.h 16 explicit CJS_Return(v8::Local<v8::Value>);
24 v8::Local<v8::Value> Return() const { return return_; }
31 v8::Local<v8::Value> return_;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
Statistic.h 53 std::atomic<unsigned> Value;
56 unsigned getValue() const { return Value.load(std::memory_order_relaxed); }
66 Value = 0;
70 // Allow use of this class as the value itself.
75 Value.store(Val, std::memory_order_relaxed);
80 Value.fetch_add(1, std::memory_order_relaxed);
86 return Value.fetch_add(1, std::memory_order_relaxed);
90 Value.fetch_sub(1, std::memory_order_relaxed);
96 return Value.fetch_sub(1, std::memory_order_relaxed);
102 Value.fetch_add(V, std::memory_order_relaxed)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Use.h 12 /// instruction or some other User instance which refers to a Value. The Use
13 /// class keeps the "use list" of the referenced value up to date.
37 class Value;
39 /// A Use represents the edge between a Value definition and its users.
42 /// all of the uses for a particular value definition. It also supports jumping
43 /// directly to the used value when we arrive from the User's operands, and
44 /// jumping directly to the User when we arrive from the Value's uses.
46 /// The pointer to the used Value is explicit, and the pointer to the User is
105 friend class Value;
107 operator Value *() const { return Val;
    [all...]
UseListOrder.h 24 class Value;
28 const Value *V = nullptr;
32 UseListOrder(const Value *V, const Function *F, size_t ShuffleSize)
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCInstPrinter.h 83 void setUseMarkup(bool Value) { UseMarkup = Value; }
90 void setPrintImmHex(bool Value) { PrintImmHex = Value; }
93 void setPrintHexStyle(HexStyle::Style Value) { PrintHexStyle = Value; }
96 format_object<int64_t> formatImm(int64_t Value) const {
97 return PrintImmHex ? formatHex(Value) : formatDec(Value);
101 format_object<int64_t> formatDec(int64_t Value) const
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
GlobalStatus.h 19 class Value;
47 /// This global is stored to, but only its initializer and one other value
48 /// is ever stored to it. If this global isStoredOnce, we track the value
58 /// If only one value (besides the initializer constant) is ever stored to
59 /// this global, keep track of what value it is.
60 Value *StoredOnceValue = nullptr;
80 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Use.h 12 /// instruction or some other User instance which refers to a Value. The Use
13 /// class keeps the "use list" of the referenced value up to date.
34 class Value;
39 /// \brief A Use represents the edge between a Value definition and its users.
42 /// all of the uses for a particular value definition. It also supports jumping
43 /// directly to the used value when we arrive from the User's operands, and
44 /// jumping directly to the User when we arrive from the Value's uses.
46 /// The pointer to the used Value is explicit, and the pointer to the User is
81 operator Value *() const { return Val; }
82 Value *get() const { return Val;
    [all...]
  /external/tensorflow/tensorflow/core/util/rpc/
rpc_factory_registry_test.cc 22 struct Value {
29 REGISTER_RPC_FACTORY("TEST FACTORY 1", Value::Function);
30 REGISTER_RPC_FACTORY("TEST FACTORY 2", Value::Function);
  /external/jsoncpp/include/json/
value.h 35 /** \brief Type of the value held by a Value object.
38 nullValue = 0, ///< 'null' value
39 intValue, ///< signed integer value
40 uintValue, ///< unsigned integer value
41 realValue, ///< double value
42 stringValue, ///< UTF-8 string value
43 booleanValue, ///< bool value
44 arrayValue, ///< array value (ordered list)
45 objectValue ///< object value (collection of name/value pairs)
    [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 24 /// has array of i8 type filled in with the nul terminated string value
46 Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) {
59 static CallInst *createCallHelper(Value *Callee, ArrayRef<Value *> Ops,
68 static InvokeInst *createInvokeHelper(Value *Invokee, BasicBlock *NormalDest,
70 ArrayRef<Value *> Ops,
82 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align
    [all...]
  /external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/ARM/
ARMGenMCCodeEmitter.inc     [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 77 uint64_t Value = decodeULEB128(Data + Offset, &Length);
79 return Value;
104 SW.printString("Value", ParseString(Data, Offset));
107 void ARMAttributeParser::PrintAttribute(unsigned Tag, unsigned Value,
113 SW.printNumber("Value", Value);
128 uint64_t Value = ParseInteger(Data, Offset);
130 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr;
131 PrintAttribute(Tag, Value, ValueDesc)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Attribute.py 2 # name value pair
19 ## name value pair
28 self.Value = Non
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ipf/
Unaligned.c 24 Reads a 16-bit value from memory that may be unaligned.
26 This function returns the 16-bit value pointed to by Buffer. The function
31 @param Buffer Pointer to a 16-bit value that may be unaligned.
48 Writes a 16-bit value to memory that may be unaligned.
50 This function writes the 16-bit value specified by Value to Buffer. Value is
56 @param Buffer Pointer to a 16-bit value that may be unaligned.
57 @param Value 16-bit value to write to Buffer.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
Synchronization.c 211 Value and returns the incremented value. The increment operation must be
212 performed using MP safe mechanisms. The state of the return value is not
215 If Value is NULL, then ASSERT().
217 @param Value A pointer to the 32-bit value to increment.
219 @return The incremented value.
225 IN UINT32 *Value
228 ASSERT (Value != NULL);
229 return InternalSyncIncrement (Value);
    [all...]
Unaligned.c 26 Reads a 16-bit value from memory that may be unaligned.
28 This function returns the 16-bit value pointed to by Buffer. The function
33 @param Buffer Pointer to a 16-bit value that may be unaligned.
50 Writes a 16-bit value to memory that may be unaligned.
52 This function writes the 16-bit value specified by Value to Buffer. Value is
58 @param Buffer Pointer to a 16-bit value that may be unaligned.
59 @param Value 16-bit value to write to Buffer.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiServicesTablePointerLibKr1/
PeiServicesTablePointerLibInternals.h 29 Reads the current value of Kr1.
31 @return The current value of Kr1.
41 Writes the current value of Kr1.
43 @param Value The 64-bit value to write to Kr1.
49 IN UINT64 Value
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLibGcc.c 30 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
38 @return The value read.
57 Writes the 8-bit I/O port specified by Port with the value specified by Value
58 and returns Value. This function must guarantee that all I/O read and write
64 @param Value The value to write to the I/O port.
66 @return The value written the I/O port.
74 IN UINT8 Value
77 __asm__ __volatile__ ("outb %b0,%w1" : : "a" (Value), "d" ((UINT16)Port));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Arm/
Unaligned.c 21 Reads a 16-bit value from memory that may be unaligned.
23 This function returns the 16-bit value pointed to by Buffer. The function
28 @param Buffer The pointer to a 16-bit value that may be unaligned.
30 @return The 16-bit value read from Buffer.
51 Writes a 16-bit value to memory that may be unaligned.
53 This function writes the 16-bit value specified by Value to Buffer. Value is
59 @param Buffer The pointer to a 16-bit value that may be unaligned.
60 @param Value 16-bit value to write to Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ipf/
Unaligned.c 18 Reads a 16-bit value from memory that may be unaligned.
20 This function returns the 16-bit value pointed to by Buffer. The function
25 @param Buffer The pointer to a 16-bit value that may be unaligned.
27 @return The 16-bit value read from Buffer.
42 Writes a 16-bit value to memory that may be unaligned.
44 This function writes the 16-bit value specified by Value to Buffer. Value is
50 @param Buffer The pointer to a 16-bit value that may be unaligned.
51 @param Value The 16-bit value to write to Buffer.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
Unaligned.c 20 Reads a 16-bit value from memory that may be unaligned.
22 This function returns the 16-bit value pointed to by Buffer. The function
27 @param Buffer A pointer to a 16-bit value that may be unaligned.
29 @return The 16-bit value read from Buffer.
44 Writes a 16-bit value to memory that may be unaligned.
46 This function writes the 16-bit value specified by Value to Buffer. Value is
52 @param Buffer A pointer to a 16-bit value that may be unaligned.
53 @param Value 16-bit value to write to Buffer.
    [all...]
  /external/adhd/ucm-config/cyan/sof-chtmax98090/
HiFi.conf 56 Value {
70 Value {
90 Value {
117 Value {
125 Value {
150 Value {
158 Value {
182 Value {

Completed in 1798 milliseconds

<<11121314151617181920>>