/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/ |
LongJump.c | 29 If Value is 0, then ASSERT().
32 @param Value The value to return when the SetJump() context is
40 IN UINTN Value
44 ASSERT (Value != 0);
46 InternalLongJump (JumpBuffer, Value);
|
/external/capstone/ |
MathExtras.h | 38 /// Hi_32 - This function returns the high 32 bits of a 64 bit value. 39 static inline uint32_t Hi_32(uint64_t Value) { 40 return (uint32_t)(Value >> 32); 43 /// Lo_32 - This function returns the low 32 bits of a 64 bit value. 44 static inline uint32_t Lo_32(uint64_t Value) { 45 return (uint32_t)(Value); 63 static inline bool isMask_32(uint32_t Value) { 64 return Value && ((Value + 1) & Value) == 0 [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
Function.java | 19 import com.google.clearsilver.jsilver.values.Value; 29 Value execute(Value... args);
|
/external/perf_data_converter/src/quipper/ |
perf_option_parser.cc | 16 Boolean, // has no value 17 Value, // Uses another argument. 22 {"-e", OptionType::Value}, 23 {"--event", OptionType::Value}, 24 {"--filter", OptionType::Value}, 25 {"-p", OptionType::Value}, 26 {"--pid", OptionType::Value}, 27 {"-t", OptionType::Value}, 28 {"--tid", OptionType::Value}, 29 {"-r", OptionType::Value}, [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
SimplifyLibCalls.h | 24 class Value; 49 /// optimal value to replace the instruction with or 0 if a more 52 Value *optimizeCall(CallInst *CI); 55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B); 56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B); 57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B); 60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func); 61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func); 79 function_ref<void(Instruction *, Value *)> Replacer; 85 static void replaceAllUsesWithDefault(Instruction *I, Value *With) [all...] |
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/ |
p2-0x.cpp | 4 struct Value { 5 constexpr Value(int n) : n(n) {} 16 void test(Value v) { 20 case Value(2): 27 case Value(2): 36 case Value(2):
|
/external/llvm/include/llvm/Support/ |
LEB128.h | 22 /// Utility function to encode a SLEB128 value to an output stream. 23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { 26 uint8_t Byte = Value & 0x7f; 28 Value >>= 7; 29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) || 30 ((Value == -1) && ((Byte & 0x40) != 0)))); 37 /// Utility function to encode a ULEB128 value to an output stream. 38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS, 41 uint8_t Byte = Value & 0x7f; 42 Value >>= 7 [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
ScopedPrinter.h | 34 T Value; 35 EnumEntry(StringRef N, StringRef A, T V) : Name(N), AltName(A), Value(V) {} 36 EnumEntry(StringRef N, T V) : Name(N), AltName(N), Value(V) {} 44 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) {} 45 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) {} 46 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) { [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/ |
WriteCr0.c | 20 UINTN Value
24 mov eax, Value
|
WriteCr2.c | 20 UINTN Value
24 mov eax, Value
|
WriteCr3.c | 20 UINTN Value
24 mov eax, Value
|
WriteDr0.c | 20 IN UINTN Value
24 mov eax, Value
|
WriteDr1.c | 20 IN UINTN Value
24 mov eax, Value
|
WriteDr2.c | 20 IN UINTN Value
24 mov eax, Value
|
WriteDr3.c | 20 IN UINTN Value
24 mov eax, Value
|
WriteDr6.c | 20 IN UINTN Value
24 mov eax, Value
|
WriteDr7.c | 20 IN UINTN Value
24 mov eax, Value
|
WriteMm0.c | 20 IN UINT64 Value
24 movq mm0, qword ptr [Value]
|
WriteMm1.c | 20 IN UINT64 Value
24 movq mm1, qword ptr [Value]
|
WriteMm2.c | 20 IN UINT64 Value
24 movq mm2, qword ptr [Value]
|
WriteMm3.c | 20 IN UINT64 Value
24 movq mm3, qword ptr [Value]
|
WriteMm4.c | 20 IN UINT64 Value
24 movq mm4, qword ptr [Value]
|
WriteMm5.c | 20 IN UINT64 Value
24 movq mm5, qword ptr [Value]
|
WriteMm6.c | 20 IN UINT64 Value
24 movq mm6, qword ptr [Value]
|
WriteMm7.c | 27 IN UINT64 Value
31 movq mm7, qword ptr [Value]
|