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

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
InterlockedCompareExchange32.c 31 IN volatile UINT32 *Value,
36 return _InterlockedCompareExchange (Value, ExchangeValue, CompareValue);
InterlockedCompareExchange64.c 31 IN volatile UINT64 *Value,
36 return _InterlockedCompareExchange64 (Value, ExchangeValue, CompareValue);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ebc/
SetMem.c 26 Set Buffer to Value for Size bytes.
30 @param Value Value of the set operation.
40 IN UINT8 Value
52 *(Pointer++) = Value;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ipf/
SetMem.c 26 Set Buffer to Value for Size bytes.
30 @param Value Value of the set operation.
40 IN UINT8 Value
52 *(Pointer++) = Value;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/
ScanMem8Wrapper.c 25 Scans a target buffer for an 8-bit value, and returns a pointer to the matching 8-bit value
29 address to the highest address for an 8-bit value that matches Value. If a match is found,
37 @param Value Value to search for in the target buffer.
47 IN UINT8 Value
56 return (VOID*)InternalMemScanMem8 (Buffer, Length, Value);
SetMemWrapper.c 25 Fills a target buffer with a byte value, and returns the target buffer.
27 This function fills Length bytes of Buffer with Value, and returns Buffer.
32 @param Value Value of the set operation.
42 IN UINT8 Value
51 return InternalMemSetMem (Buffer, Length, Value);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiSetMemRep1.c 28 IN UINT8 Value
34 UINT8 Value - Value to write
50 mov al, Value
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtPort80StatusCode/
RtPort80StatusCode.c 32 IN EFI_STATUS_CODE_VALUE Value,
58 if (CodeTypeToPostCode (CodeType, Value, &Port80Code)) {
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/Ia32/
InterlockedCompareExchange16.c 23 specified by Value. If Value is equal to CompareValue, then Value is set to
24 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
25 then Value is returned. The compare exchange operation must be performed using
28 @param Value A pointer to the 16-bit value for the compare exchange
30 @param CompareValue 16-bit value used in compare operation.
31 @param ExchangeValue 16-bit value used in exchange operation.
33 @return The original *Value before exchange.
    [all...]
InterlockedCompareExchange32.c 22 specified by Value. If Value is equal to CompareValue, then Value is set to
23 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
24 then Value is returned. The compare exchange operation must be performed using
27 @param Value A pointer to the 32-bit value for the compare exchange
29 @param CompareValue 32-bit value used in compare operation.
30 @param ExchangeValue 32-bit value used in exchange operation.
32 @return The original *Value before exchange.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/X64/
InterlockedCompareExchange16.c 32 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and
33 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.
36 @param Value A pointer to the 16-bit value for the compare exchange
38 @param CompareValue 16-bit value used in compare operation.
39 @param ExchangeValue 16-bit value used in exchange operation.
41 @return The original *Value before exchange.
    [all...]
InterlockedCompareExchange32.c 31 specified by Value. If Value is equal to CompareValue, then Value is set to
32 ExchangeValue and CompareValue is returned. If Value is not equal to CompareValue,
33 then Value is returned. The compare exchange operation must be performed using
36 @param Value A pointer to the 32-bit value for the compare exchange
38 @param CompareValue 32-bit value used in compare operation.
39 @param ExchangeValue 32-bit value used in exchange operation.
41 @return The original *Value before exchange.
    [all...]
InterlockedCompareExchange64.c 31 by Value. If Value is equal to CompareValue, then Value is set to ExchangeValue and
32 CompareValue is returned. If Value is not equal to CompareValue, then Value is returned.
35 @param Value A pointer to the 64-bit value for the compare exchange
37 @param CompareValue 64-bit value used in compare operation.
38 @param ExchangeValue 64-bit value used in exchange operation.
40 @return The original *Value before exchange.
    [all...]
  /external/adhd/ucm-config/daisy_skate/DAISY-I2S/
HiFi.conf 2 Value {
23 Value {
31 Value {
48 Value {
  /external/clang/include/clang/Basic/
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
30 void defineMacro(const Twine &Name, const Twine &Value = "1") {
31 Out << "#define " << Name << ' ' << Value << '\n';
  /external/clang/test/SemaCXX/
local-classes.cpp 36 template<int Value>
39 static int getValue() { return Value; }
  /external/google-fruit/include/fruit/impl/meta/
map.h 26 // A Map is a Set whose elements have the form Pair<Key, Value>
46 template <typename CurrentResult, typename Value>
47 struct apply<CurrentResult, Pair<TToFind, Value>> {
67 template <typename CurrentResult, typename Value>
68 struct apply<CurrentResult, Pair<TToFind, Value>> {
69 using type = Value;
88 template <typename CurrentResult, typename Value>
89 struct apply<CurrentResult, Pair<Value, TToFind>> {
90 using type = Value;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
22 import static com.google.clearsilver.jsilver.values.Value.literalValue;
37 public Value execute(Value... args) {
38 Value stringValue = args[0];
39 Value startValue = args[1];
40 Value endValue = args[2];
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 55 /// desired value. The pointer member of the MemDepResult pair holds the
71 /// load/store. The value loaded or stored is the produced value.
77 /// this case, the load is loading an undef value or a store is the
114 ValueTy Value;
115 explicit MemDepResult(ValueTy V) : Value(V) {}
118 MemDepResult() : Value() {}
142 bool isClobber() const { return Value.is<Clobber>(); }
146 bool isDef() const { return Value.is<Def>(); }
151 return Value.is<Other>() && Value.cast<Other>() == NonLocal
    [all...]
ScalarEvolutionNormalization.h 27 // "pre-incremented" value, and uses after the loop using the
28 // "post-incremented" value.
48 class Value;
71 Value *OperandValToReplace,
  /external/llvm/include/llvm/IR/
AssemblyAnnotationWriter.h 25 class Value;
56 /// right of an instruction or global value.
57 virtual void printInfoComment(const Value &, formatted_raw_ostream &) {}
  /external/proguard/src/proguard/evaluation/value/
ConvertedDoubleValue.java 21 package proguard.evaluation.value;
24 * This DoubleValue represents a double value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedDoubleValue
35 * Creates a new converted double value of the given value.
37 public ConvertedDoubleValue(Value value)
39 this.value = value
    [all...]
ConvertedFloatValue.java 21 package proguard.evaluation.value;
24 * This FloatValue represents a float value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedFloatValue
35 * Creates a new converted float value of the given value.
37 public ConvertedFloatValue(Value value)
39 this.value = value
    [all...]
ConvertedIntegerValue.java 21 package proguard.evaluation.value;
24 * This IntegerValue represents a integer value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedIntegerValue
35 * Creates a new converted integer value of the given value.
37 public ConvertedIntegerValue(Value value)
39 this.value = value
    [all...]
ConvertedLongValue.java 21 package proguard.evaluation.value;
24 * This LongValue represents a long value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedLongValue
35 * Creates a new converted long value of the given value.
37 public ConvertedLongValue(Value value)
39 this.value = value
    [all...]

Completed in 263 milliseconds

<<11121314151617181920>>