/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/ |
IoLib.c | 28 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
36 @return The value read.
52 Writes the 64-bit I/O port specified by Port with the value specified by Value
53 and returns Value. This function must guarantee that all I/O read and write
59 @param Value The value to write to the I/O port.
61 @return The value written the I/O port.
68 IN UINT64 Value
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
SynchronizationGcc.c | 120 // Get the current timer value
250 Value and returns the incremented value. The increment operation must be
251 performed using MP safe mechanisms. The state of the return value is not
254 If Value is NULL, then ASSERT().
256 @param Value A pointer to the 32-bit value to increment.
258 @return The incremented value.
264 IN UINT32 *Value
267 ASSERT (Value != NULL); [all...] |
SynchronizationMsc.c | 222 Value and returns the incremented value. The increment operation must be
223 performed using MP safe mechanisms. The state of the return value is not
226 If Value is NULL, then ASSERT().
228 @param Value A pointer to the 32-bit value to increment.
230 @return The incremented value.
236 IN UINT32 *Value
239 ASSERT (Value != NULL);
240 return InternalSyncIncrement (Value);
[all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ebc/ |
SetJumpLongJump.c | 25 value to be returned by SetJump().
53 @param Value The value to return when the SetJump() context is restored.
60 IN UINTN Value
|
/device/linaro/bootloader/edk2/MdePkg/Library/SmmIoLibSmmCpuIo2/ |
IoLib.c | 23 The read value is returned. If such operations are not supported, then ASSERT().
52 Writes the I/O port specified by Port with registers width and value specified by Width
59 @param Data The value to write to the I/O port.
84 The read value is returned. If such operations are not supported, then ASSERT().
113 Writes the MMIO registers specified by Address with registers width and value specified by Width
120 @param Data The value to write to the I/O port.
144 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
152 @return The value read.
167 Writes the 8-bit I/O port specified by Port with the value specified by Value
[all...] |
/device/linaro/bootloader/edk2/OvmfPkg/PlatformPei/ |
Cmos.h | 22 The 8-bit read value is returned.
26 @return The value read.
39 with the value specified by Value and returns Value.
42 @param Value The value to write to CMOS.
44 @return The value written to CMOS.
51 IN UINT8 Value
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/ |
p1-cxx11.cpp | 5 struct Value { 7 void set(T value) {} 10 Value v; 16 Value v; 23 Value v;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/ |
CrcFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant; 34 * @return CRC-32 of string as number value 36 public Value execute(Value... args) {
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/ |
FirstFunction.java | 21 import com.google.clearsilver.jsilver.values.Value; 22 import static com.google.clearsilver.jsilver.values.Value.literalConstant; 32 * @return Boolean value. 34 public Value execute(Value... args) {
|
LastFunction.java | 21 import com.google.clearsilver.jsilver.values.Value; 22 import static com.google.clearsilver.jsilver.values.Value.literalConstant; 32 * @return Boolean value. 34 public Value execute(Value... args) {
|
SubcountFunction.java | 21 import com.google.clearsilver.jsilver.values.Value; 22 import static com.google.clearsilver.jsilver.values.Value.literalConstant; 31 * @param args A variable value referring to an HDF node 34 public Value execute(Value... args) {
|
/external/libchrome/base/json/ |
json_string_value_serializer.h | 25 // Attempt to serialize the data structure represented by Value into 26 // JSON. If the return value is true, the result will have been written 28 bool Serialize(const base::Value& root) override; 32 bool SerializeAndOmitBinaryValues(const base::Value& root); 38 bool SerializeInternal(const base::Value& root, bool omit_binary_values); 58 // in to the constructor into a structure of Value objects. If the return 59 // value is null, and if |error_code| is non-null, |error_code| will 63 // The caller takes ownership of the returned value. 64 std::unique_ptr<base::Value> Deserialize(int* error_code,
|
/external/llvm/include/llvm/ADT/ |
StringSwitch.h | 27 /// literals. The template type parameter \p T is the type of the value that 58 StringSwitch& Case(const char (&S)[N], const T& Value) { 61 Result = &Value; 69 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { 72 Result = &Value; 80 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { 83 Result = &Value; 92 const T& Value) { 96 Result = &Value; 105 const char (&S2)[N2], const T& Value) { [all...] |
/external/llvm/include/llvm/Analysis/ |
Loads.h | 30 bool isDereferenceablePointer(const Value *V, const DataLayout &DL, 38 bool isDereferenceableAndAlignedPointer(const Value *V, unsigned Align, 44 /// from this value cannot trap. 52 bool isSafeToLoadUnconditionally(Value *V, unsigned Align, 61 /// \brief Scan backwards to see if we have the value of the given load 82 /// the value. FIXME: This is basically useless. 83 /// \param [out] IsLoadCSE Whether the returned value is a load from the same 84 /// location in memory, as opposed to the value operand of a store. 86 /// \returns The found value, or nullptr if no value is found [all...] |
LoopUnrollAnalyzer.h | 44 Value *Base = nullptr; 50 DenseMap<Value *, Constant *> &SimplifiedValues, 66 DenseMap<Value *, SimplifiedAddress> SimplifiedAddresses; 72 /// \brief A Value->Constant map for keeping values that we managed to 80 DenseMap<Value *, Constant *> &SimplifiedValues;
|
/external/llvm/include/llvm/IR/ |
User.h | 10 // This class defines the interface that one who uses a Value must implement. 11 // Each instance of the Value class keeps track of what User's have handles 24 #include "llvm/IR/Value.h" 39 class User : public Value { 71 : Value(ty, vty) { 134 Value *getOperand(unsigned i) const { 138 void setOperand(unsigned i, Value *Val) { 140 assert((!isa<Constant>((const Value*)this) || 141 isa<GlobalValue>((const Value*)this)) && 210 std::random_access_iterator_tag, Value *, [all...] |
/external/llvm/include/llvm/MC/MCParser/ |
MCAsmParserUtils.h | 22 /// Parse a value expression and return whether it can be assigned to a symbol 25 /// On success, returns false and sets the Symbol and Value output parameters. 28 const MCExpr *&Value);
|
/external/llvm/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 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 inline uint32_t Lo_32(uint64_t Value) { 254 return static_cast<uint32_t>(Value); 315 /// Gets the maximum value for a N-bit unsigned integer [all...] |
/external/llvm/lib/CodeGen/ |
SafeStackLayout.h | 34 const Value *Handle; 40 DenseMap<const Value *, unsigned> ObjectOffsets; 46 /// Add an object to the stack frame. Value pointer is opaque and used as a 48 void addObject(const Value *V, unsigned Size, unsigned Alignment, 55 unsigned getObjectOffset(const Value *V) { return ObjectOffsets[V]; }
|
/external/llvm/lib/MC/MCDisassembler/ |
MCDisassembler.cpp | 19 bool MCDisassembler::tryAddingSymbolicOperand(MCInst &Inst, int64_t Value, 25 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address, 30 void MCDisassembler::tryAddingPcLoadReferenceComment(int64_t Value, 34 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/ |
ClassType.java | 99 * Assigns a value to a static field. 113 * @param value the value to be assigned. 119 * @throws InvalidTypeException if the value's type does not match 123 void setValue(Field field, Value value) 212 * @param arguments the list of {@link Value} arguments bound to the 216 * @return a {@link Value} mirror of the invoked method's return value. 240 Value invokeMethod(ThreadReference thread, Method method [all...] |
PrimitiveValue.java | 29 * The value assigned to a field or variable of primitive type in a 39 public interface PrimitiveValue extends Value { 42 * Converts this value to a BooleanValue and returns the result 45 * @return <code>true</code> if this value is non-zero (or 51 * Converts this value to a ByteValue and returns the result 52 * as a byte. The value will be narrowed as 56 * @return the value, converted to byte 61 * Converts this value to a CharValue and returns the result 62 * as a char. The value will be narrowed or widened as 67 * @return the value, converted to cha [all...] |
/external/oj-libjdwp/src/share/classes/com/sun/jdi/event/ |
MethodExitEvent.java | 56 * Returns the value that the method will return. 63 * @return a {@link Value} which mirrors the value to be returned. 73 public Value returnValue();
|
WatchpointEvent.java | 63 * Current value of the field. 67 Value valueCurrent();
|
/external/pdfium/core/fxcrt/css/ |
cfx_csscolorvalue.h | 17 FX_ARGB Value() const { return value_; }
|