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

1 2 3 4 5 6 78 91011>>

  /device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
ScanMem32Wrapper.c 28 Scans a target buffer for a 32-bit value, and returns a pointer to the matching 32-bit value
32 address to the highest address for a 32-bit value that matches Value. If a match is found,
43 @param Value The value to search for in the target buffer.
53 IN UINT32 Value
61 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
63 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
65 return (VOID*)InternalMemScanMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
ScanMem64Wrapper.c 29 Scans a target buffer for a 64-bit value, and returns a pointer to the matching 64-bit value
33 address to the highest address for a 64-bit value that matches Value. If a match is found,
44 @param Value The value to search for in the target buffer.
54 IN UINT64 Value
62 ASSERT (((UINTN)Buffer & (sizeof (Value) - 1)) == 0);
64 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66 return (VOID*)InternalMemScanMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem16Wrapper.c 28 Fills a target buffer with a 16-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 16-bit value specified by
31 Value, and returns Buffer. Value is repeated every 16-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT16 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem32Wrapper.c 28 Fills a target buffer with a 32-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 32-bit value specified by
31 Value, and returns Buffer. Value is repeated every 32-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT32 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem32 (Buffer, Length / sizeof (Value), Value);
    [all...]
SetMem64Wrapper.c 28 Fills a target buffer with a 64-bit value, and returns the target buffer.
30 This function fills Length bytes of Buffer with the 64-bit value specified by
31 Value, and returns Buffer. Value is repeated every 64-bits in for Length
41 @param Value The value with which to fill Length bytes of Buffer.
51 IN UINT64 Value
60 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
61 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
63 return InternalMemSetMem64 (Buffer, Length / sizeof (Value), Value);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
ExistsFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.exists(), value);
NotFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(!value.asBoolean(), value);
NumericFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
24 * #X (numeric). Forces a value to a number.
28 public Value execute(Value... args) {
29 Value value = args[0]; local
30 return literalConstant(value.asNumber(), value);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
LengthFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
29 * @param args A single string value
30 * @return Length as number value
32 public Value execute(Value... args) {
33 Value value = args[0]; local
34 return literalConstant(value.asString().length(), value);
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceELFStreamer.h 33 virtual void write8(uint8_t Value) = 0;
43 void writeLE16(uint16_t Value) {
44 write8(uint8_t(Value));
45 write8(uint8_t(Value >> 8));
48 void writeLE32(uint32_t Value) {
49 writeLE16(uint16_t(Value));
50 writeLE16(uint16_t(Value >> 16));
53 void writeLE64(uint64_t Value) {
54 writeLE32(uint32_t(Value));
55 writeLE32(uint32_t(Value >> 32))
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/X64/
GccInline.c 23 Value and returns the incremented value. The increment operation must be
24 performed using MP safe mechanisms. The state of the return value is not
27 @param Value A pointer to the 32-bit value to increment.
29 @return The incremented value.
35 IN volatile UINT32 *Value
45 "=m" (*Value) // %1
46 : "m" (*Value) // %2
59 Value and returns the decremented value. The decrement operation must be
    [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/llvm/include/llvm/ADT/
Sequence.h 32 ValueT Value;
41 : Value(std::move(Arg.Value)) {}
44 value_sequence_iterator(U &&Value) : Value(std::forward<U>(Value)) {}
47 Value += N;
51 Value -= N;
56 return Value - RHS.Value;
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
call_stack.hpp 26 template <typename Key, typename Value = unsigned char>
30 // Context class automatically pushes the key/value pair on to the stack.
38 next_(call_stack<Key, Value>::top_)
41 call_stack<Key, Value>::top_ = this;
44 // Push the key/value pair on to the stack.
45 context(Key* k, Value& v)
48 next_(call_stack<Key, Value>::top_)
50 call_stack<Key, Value>::top_ = this;
53 // Pop the key/value pair from the stack.
56 call_stack<Key, Value>::top_ = next_
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Statistic.h 38 volatile llvm::sys::cas_flag Value;
41 llvm::sys::cas_flag getValue() const { return Value; }
48 Value = 0; Initialized = 0;
51 // Allow use of this class as the value itself.
52 operator unsigned() const { return Value; }
54 Value = Val;
60 // atomic operation to update the value safely in the presence of
61 // concurrent accesses, but not to read the return value, so the
62 // return value is not thread safe.
63 sys::AtomicIncrement(&Value);
    [all...]
StringSwitch.h 26 /// literals. The template type parameter \p T is the type of the value that
55 StringSwitch& Case(const char (&S)[N], const T& Value) {
58 Result = &Value;
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
68 Result = &Value;
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) {
78 Result = &Value;
86 const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
Sequence.h 36 ValueT Value;
45 : Value(std::move(Arg.Value)) {}
48 value_sequence_iterator(U &&Value) : Value(std::forward<U>(Value)) {}
51 Value += N;
55 Value -= N;
60 return Value - RHS.Value;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseIoLibIntrinsic/
IoLibMsc.c 64 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
72 @return The value read.
81 UINT8 Value;
84 Value = (UINT8)_inp ((UINT16)Port);
86 return Value;
92 Writes the 8-bit I/O port specified by Port with the value specified by Value
93 and returns Value. This function must guarantee that all I/O read and write
99 @param Value The value to write to the I/O port.
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/misc/
DoubleKeyMap.java 5 /** Sometimes we need to map a key to a value but key is two pieces of data.
9 public class DoubleKeyMap<Key1, Key2, Value> {
10 Map<Key1, Map<Key2, Value>> data = new LinkedHashMap<Key1, Map<Key2, Value>>();
12 public Value put(Key1 k1, Key2 k2, Value v) {
13 Map<Key2, Value> data2 = data.get(k1);
14 Value prev = null;
16 data2 = new LinkedHashMap<Key2, Value>();
26 public Value get(Key1 k1, Key2 k2)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.h 20 #include "llvm/IR/Value.h"
38 bool isTexture(const llvm::Value &);
39 bool isSurface(const llvm::Value &);
40 bool isSampler(const llvm::Value &);
41 bool isImage(const llvm::Value &);
42 bool isImageReadOnly(const llvm::Value &);
43 bool isImageWriteOnly(const llvm::Value &);
44 bool isImageReadWrite(const llvm::Value &);
45 bool isManaged(const llvm::Value &);
47 std::string getTextureName(const llvm::Value &)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ValueTracking.h 43 class Value;
53 void computeKnownBits(const Value *V, KnownBits &Known,
61 KnownBits computeKnownBits(const Value *V, const DataLayout &DL,
74 bool haveNoCommonBitsSet(const Value *LHS, const Value *RHS,
80 /// Return true if the given value is known to have exactly one bit set when
84 /// value is either a power of two or zero.
85 bool isKnownToBeAPowerOfTwo(const Value *V, const DataLayout &DL,
93 /// Return true if the given value is known to be non-zero when defined. For
99 bool isKnownNonZero(const Value *V, const DataLayout &DL, unsigned Depth = 0
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGluePostCodeLib.h 37 Sends an 32-bit value to a POST card.
39 Sends the 32-bit value specified by Value to a POST card, and returns Value.
41 directly to a POST card device. Other implementations may send Value to
43 display the 32-bit value on the status reporting device.
47 PostCode() must return Value immediately.
49 @param Value The 32-bit value to write to the POST card.
51 @return Value
    [all...]
  /external/libchrome/mojo/public/cpp/base/
values_mojom_traits.h 20 struct MapTraits<base::Value> {
22 using Value = base::Value;
23 using Iterator = base::Value::const_dict_iterator_proxy::const_iterator;
25 static size_t GetSize(const base::Value& input) {
30 static Iterator GetBegin(const base::Value& input) {
39 static const Value& GetValue(const Iterator& iterator) {
46 StructTraits<mojo_base::mojom::DictionaryValueDataView, base::Value> {
47 static const base::Value& storage(const base::Value& value)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysis.h 32 class Value;
53 typedef std::pair<const Value *, const Value *> ValuePairTy;
57 bool relatedCheck(const Value *A, const Value *B, const DataLayout &DL);
58 bool relatedSelect(const SelectInst *A, const Value *B);
59 bool relatedPHI(const PHINode *A, const Value *B);
71 bool related(const Value *A, const Value *B, const DataLayout &DL);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
IntrinsicInst.cpp 34 static Value *CastOperand(Value *C) {
41 Value *DbgInfoIntrinsic::StripCast(Value *C) {
42 if (Value *CO = CastOperand(C)) {
46 if (Value *CO = CastOperand(GV->getInitializer()))
56 Value *DbgDeclareInst::getAddress() const {
64 /// DbgValueInst - This represents the llvm.dbg.value instruction.
67 const Value *DbgValueInst::getValue() const {
71 Value *DbgValueInst::getValue()
    [all...]

Completed in 486 milliseconds

1 2 3 4 5 6 78 91011>>