HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 76 - 100 of 1516) sorted by null

1 2 34 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
EfiUiLib.h 32 IN UINT64 Val
42 Val - value to convert, minimum is 100000 i.e., 0.1 MHz.
53 IN UINT64 Val
63 Val - value to convert in bytes
207 OUT UINT64 *Val,
220 Val - pointer to the variable to store the value to
223 first character that was not part of the returned Val.
  /external/clang/include/clang/Rewrite/Core/
TokenRewriter.h 59 token_iterator AddTokenBefore(token_iterator I, const char *Val);
60 token_iterator AddTokenAfter(token_iterator I, const char *Val) {
62 return AddTokenBefore(++I, Val);
  /external/llvm/lib/Target/SystemZ/
SystemZ.h 144 // Return true if Val fits an LLILL operand.
145 static inline bool isImmLL(uint64_t Val) {
146 return (Val & ~0x000000000000ffffULL) == 0;
149 // Return true if Val fits an LLILH operand.
150 static inline bool isImmLH(uint64_t Val) {
151 return (Val & ~0x00000000ffff0000ULL) == 0;
154 // Return true if Val fits an LLIHL operand.
155 static inline bool isImmHL(uint64_t Val) {
156 return (Val & ~0x00000ffff00000000ULL) == 0;
159 // Return true if Val fits an LLIHH operand
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInst.h 73 void setImm(int64_t Val) {
75 ImmVal = Val;
83 void setFPImm(double Val) {
85 FPImmVal = Val;
92 void setExpr(const MCExpr *Val) {
94 ExprVal = Val;
103 static MCOperand CreateImm(int64_t Val) {
106 Op.ImmVal = Val;
109 static MCOperand CreateFPImm(double Val) {
112 Op.FPImmVal = Val;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZ.h 160 // Return true if Val fits an LLILL operand.
161 static inline bool isImmLL(uint64_t Val) {
162 return (Val & ~0x000000000000ffffULL) == 0;
165 // Return true if Val fits an LLILH operand.
166 static inline bool isImmLH(uint64_t Val) {
167 return (Val & ~0x00000000ffff0000ULL) == 0;
170 // Return true if Val fits an LLIHL operand.
171 static inline bool isImmHL(uint64_t Val) {
172 return (Val & ~0x00000ffff00000000ULL) == 0;
175 // Return true if Val fits an LLIHH operand
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Drivers/StyxRngDxe/
StyxRngDxe.c 132 UINT32 Val;
151 Val = MmioRead32 (mCcpRngOutputReg);
152 } while (!Val && Retries-- > 0);
154 if (!Val) {
159 *RNGValue++ = (UINT8)Val;
160 Val >>= 8;
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 77 template<typename T, T v> struct Val { static constexpr T value = v; };
78 static_assert(Val<bool, E1>::value == 1, ""); // ok
79 static_assert(Val<bool, '\0'>::value == 0, ""); // ok
80 static_assert(Val<bool, U'\1'>::value == 1, ""); // ok
81 static_assert(Val<bool, E5>::value == 1, ""); // expected-error {{5, which cannot be narrowed to type 'bool'}}
100 int n = Val<bool, &S::operator int>::value; // expected-error-re {{conversion from 'int (S::*)(){{( __attribute__\(\(thiscall\)\))?}} const' to 'bool' is not allowed in a converted constant expression}}
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Use.cpp 23 Value *V1(Val);
24 Value *V2(RHS.Val);
32 Val = V2;
35 Val = 0;
39 RHS.Val = V1;
42 RHS.Val = 0;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiUiLib/
EfiUiLib.c 28 OUT UINT64 *Val,
41 Val - pointer to the variable to store the value to
44 first character that was not part of the returned Val.
74 *Val = TempVal;
96 IN UINT64 Val
107 Val - value to convert, minimum is 100000 i.e., 0.1 MHz.
122 while (Val >= 10000) {
123 Val = DivU64x32 (Val, 10, NULL);
130 if (Val >= 1000) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ConstraintManager.h 31 Optional<bool> Val;
35 ConditionTruthVal(bool constraint) : Val(constraint) {}
42 return Val.hasValue() && Val.getValue();
47 return Val.hasValue() && !Val.getValue();
52 return Val.hasValue();
58 return !Val.hasValue();
  /external/llvm/include/llvm/IR/
Comdat.h 41 void setSelectionKind(SelectionKind Val) { SK = Val; }
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/
IRBindings.h 37 LLVMMetadataRef LLVMConstantAsMetadata(LLVMValueRef Val);
44 LLVMMetadataRef Val);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Comdat.h 46 void setSelectionKind(SelectionKind Val) { SK = Val; }
  /external/syzkaller/sys/netbsd/
init.go 28 c.Args[3].(*prog.ConstArg).Val |= arch.MAP_FIXED
34 if code.Val%128 == 67 || code.Val%128 == 68 {
35 code.Val = 1
  /external/llvm/include/llvm/Support/
MathExtras.h 46 static std::size_t count(T Val, ZeroBehavior) {
47 if (!Val)
49 if (Val & 0x1)
57 if ((Val & Mask) == 0) {
58 Val >>= Shift;
70 static std::size_t count(T Val, ZeroBehavior ZB) {
71 if (ZB != ZB_Undefined && Val == 0)
75 return __builtin_ctz(Val);
78 _BitScanForward(&Index, Val);
86 static std::size_t count(T Val, ZeroBehavior ZB)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
MathExtras.h 55 static std::size_t count(T Val, ZeroBehavior) {
56 if (!Val)
58 if (Val & 0x1)
66 if ((Val & Mask) == 0) {
67 Val >>= Shift;
79 static std::size_t count(T Val, ZeroBehavior ZB) {
80 if (ZB != ZB_Undefined && Val == 0)
84 return __builtin_ctz(Val);
87 _BitScanForward(&Index, Val);
95 static std::size_t count(T Val, ZeroBehavior ZB)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MathExtras.h 46 static std::size_t count(T Val, ZeroBehavior) {
47 if (!Val)
49 if (Val & 0x1)
57 if ((Val & Mask) == 0) {
58 Val >>= Shift;
70 static std::size_t count(T Val, ZeroBehavior ZB) {
71 if (ZB != ZB_Undefined && Val == 0)
75 return __builtin_ctz(Val);
78 _BitScanForward(&Index, Val);
86 static std::size_t count(T Val, ZeroBehavior ZB)
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/Pp2Dxe/
Mvpp2Lib.c 335 IN INT32 Val
338 Pe->Sram.Byte[MVPP2_BIT_TO_BYTE(BitNum)] |= (Val << (BitNum % 8));
347 IN INT32 Val
350 Pe->Sram.Byte[MVPP2_BIT_TO_BYTE(BitNum)] &= ~(Val << (BitNum % 8));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LazyValueInfo.cpp 73 /// Val: This stores the current lattice value along with the Constant* for
76 Constant *Val;
80 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
108 return Val;
113 return Val;
142 Val = V;
160 Val = V;
192 Val = RHS.Val;
199 if (Val == RHS.Val
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Module.cpp 271 uint64_t Val = Behavior->getLimitedValue();
272 if (Val >= ModFlagBehaviorFirstVal && Val <= ModFlagBehaviorLastVal) {
273 MFB = static_cast<ModFlagBehavior>(Val);
294 Metadata *Val = Flag->getOperand(2);
295 Flags.push_back(ModuleFlagEntry(MFB, Key, Val));
307 return MFE.Val;
330 Metadata *Val) {
334 MDString::get(Context, Key), Val};
338 Constant *Val) {
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineOperand.h 150 } Val;
313 void setIsUse(bool Val = true) {
315 assert((Val || !isDebug()) && "Marking a debug operation as def");
316 IsDef = !Val;
319 void setIsDef(bool Val = true) {
321 assert((!Val || !isDebug()) && "Marking a debug operation as def");
322 IsDef = Val;
325 void setImplicit(bool Val = true) {
327 IsImp = Val;
330 void setIsKill(bool Val = true)
    [all...]
  /external/syzkaller/prog/
size.go 56 a.Val = target.generateSize(InnerArg(buf), typ)
61 a.Val = parentsMap[arg].Size()
63 a.Val = a.Val * 8 / typ.BitSize
76 a.Val = parent.Size()
78 a.Val = a.Val * 8 / typ.BitSize
143 arg.Val = r.rand64()
148 if arg.Val != 0 && r.bin() {
149 arg.Val = r.randRangeInt(0, arg.Val-1
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 178 } Val;
366 void setIsUse(bool Val = true) { setIsDef(!Val); }
368 void setIsDef(bool Val = true);
370 void setImplicit(bool Val = true) {
372 IsImp = Val;
375 void setIsKill(bool Val = true) {
377 assert((!Val || !isDebug()) && "Marking a debug operation as kill");
378 IsKill = Val;
381 void setIsDead(bool Val = true)
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Include/Chipset/
ArmCortexA5x.h 35 IN UINT64 Val
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 66 clang::ParsedSourceLocation &Val);
72 clang::ParsedSourceLocation &Val) {
75 Val = ParsedSourceLocation::FromString(ArgValue);
76 if (Val.FileName.empty()) {

Completed in 2632 milliseconds

1 2 34 5 6 7 8 91011>>