HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 1 - 25 of 580) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
arm-asm.c 4 int Val;
5 asm volatile ("lw (r1), %0[val]": "=&b"(Val)); // expected-error {{invalid output constraint '=&b' in asm}}
  /external/lzma/CPP/Common/
MyTypes.h 12 bool Val;
15 CBoolPair(): Val(false), Def(false) {}
19 Val = false;
25 Val = true;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tgmath.h 75 # define __TGMATH_UNARY_REAL_ONLY(Val, Fct) \
76 (__extension__ ((sizeof (Val) == sizeof (double) \
77 || __builtin_classify_type (Val) != 8) \
78 ? (__tgmath_real_type (Val)) Fct (Val) \
79 : (sizeof (Val) == sizeof (float)) \
80 ? (__tgmath_real_type (Val)) Fct##f (Val) \
81 : (__tgmath_real_type (Val)) __tgml(Fct) (Val)))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 75 # define __TGMATH_UNARY_REAL_ONLY(Val, Fct) \
76 (__extension__ ((sizeof (Val) == sizeof (double) \
77 || __builtin_classify_type (Val) != 8) \
78 ? (__tgmath_real_type (Val)) Fct (Val) \
79 : (sizeof (Val) == sizeof (float)) \
80 ? (__tgmath_real_type (Val)) Fct##f (Val) \
81 : (__tgmath_real_type (Val)) __tgml(Fct) (Val)))
    [all...]
  /external/v8/test/cctest/compiler/
test-run-jsbranches.cc 14 T.CheckCall(T.Val(23), T.true_value(), T.undefined());
15 T.CheckCall(T.Val(42), T.false_value(), T.undefined());
16 T.CheckCall(T.Val(42), T.undefined(), T.undefined());
17 T.CheckCall(T.Val(42), T.Val(0.0), T.undefined());
18 T.CheckCall(T.Val(23), T.Val(999), T.undefined());
19 T.CheckCall(T.Val(23), T.Val("x"), T.undefined());
31 T.CheckCall(T.Val(999), T.Val(777), T.Val(999))
    [all...]
test-run-jsops.cc 17 T.CheckCall(T.Val("AB"), T.Val("A"), T.Val("B"));
18 T.CheckCall(T.Val("A11"), T.Val("A"), T.Val(11));
19 T.CheckCall(T.Val("12B"), T.Val(12), T.Val("B"));
20 T.CheckCall(T.Val("38"), T.Val("3"), T.Val("8"))
    [all...]
test-run-intrinsics.cc 18 T.CheckCall(T.Val(129), T.NewObject("({d:123})"), T.NewObject("f"));
19 T.CheckCall(T.Val("6x"), T.NewObject("({d:'x'})"), T.NewObject("f"));
26 T.CheckCall(T.Val("Function"), T.NewObject("(function() {})"));
27 T.CheckCall(T.Val("Array"), T.NewObject("([1])"));
28 T.CheckCall(T.Val("Object"), T.NewObject("({})"));
29 T.CheckCall(T.Val("RegExp"), T.NewObject("(/x/)"));
32 T.CheckCall(T.null(), T.Val("x"));
33 T.CheckCall(T.null(), T.Val(1));
47 T.CheckFalse(T.Val("x"));
48 T.CheckFalse(T.Val(1))
    [all...]
test-run-inlining.cc 69 T.CheckCall(T.Val(1), T.Val(1), T.Val(2));
83 T.CheckCall(T.Val(1), T.Val(1), T.Val(2));
97 T.CheckCall(T.Val(1), T.Val(1), T.Val(2));
111 T.CheckCall(T.Val(13), T.Val(1), T.Val(2))
    [all...]
test-run-jscalls.cc 15 T.CheckCall(T.Val(3), foo, T.Val(3));
16 T.CheckCall(T.Val(3.1), foo, T.Val(3.1));
18 T.CheckCall(T.Val("Abba"), foo, T.Val("Abba"));
26 T.CheckCall(T.Val(3), U.function, T.Val(3));
27 T.CheckCall(T.Val(3.1), U.function, T.Val(3.1))
    [all...]
test-run-jsobjects.cc 15 T.Call(T.Val(19), T.Val(23), T.Val(42), T.Val(65)).ToHandle(&arguments);
28 T.Call(T.Val(19), T.Val(23), T.Val(42), T.Val(65)).ToHandle(&arguments);
41 T.Call(T.Val(19), T.Val(23), T.Val(42), T.Val(65)).ToHandle(&arguments)
    [all...]
test-run-variables.cc 50 T.CheckCall(r, T.Val(123), T.Val("result"));
52 T.CheckThrows(T.Val(123), T.Val("result"));
58 T.CheckCall(r, T.Val(0.0), T.Val("result"));
60 T.CheckThrows(T.Val(0.0), T.Val("result"));
  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 33 PtrUnion Val;
38 if (VecTy *V = Val.template dyn_cast<VecTy*>())
42 TinyPtrVector(const TinyPtrVector &RHS) : Val(RHS.Val) {
43 if (VecTy *V = Val.template dyn_cast<VecTy*>())
44 Val = new VecTy(*V);
56 if (Val.template is<EltTy>()) {
58 Val = RHS.front();
60 Val = new VecTy(*RHS.Val.template get<VecTy*>())
    [all...]
  /external/llvm/include/llvm/Support/
EndianStream.h 29 template <typename value_type> void write(value_type Val) {
30 Val = byte_swap<value_type, endian>(Val);
31 OS.write((const char *)&Val, sizeof(value_type));
37 inline void Writer<little>::write<float>(float Val) {
38 write(FloatToBits(Val));
43 inline void Writer<little>::write<double>(double Val) {
44 write(DoubleToBits(Val));
49 inline void Writer<big>::write<float>(float Val) {
50 write(FloatToBits(Val));
    [all...]
Casting.h 36 static SimpleType &getSimplifiedValue(From &Val) { return Val; }
45 static RetType getSimplifiedValue(const From& Val) {
46 return simplify_type<From>::getSimplifiedValue(const_cast<From&>(Val));
55 static inline bool doit(const From &Val) {
56 return To::classof(&Val);
68 static inline bool doit(const From &Val) {
69 return isa_impl<To, From>::doit(Val);
74 static inline bool doit(const From &Val) {
75 return isa_impl<To, From>::doit(Val);
    [all...]
  /external/clang/test/CodeGen/
2002-03-14-BrokenPHINode.c 11 double Val;
17 return asa+(int)Val;
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 26 // Val was zero-extended to ValueHandle. Sign-extend from original width
30 return SIntMax(Val) << ExtraBits >> ExtraBits;
33 return *reinterpret_cast<s64*>(Val);
36 return *reinterpret_cast<s128*>(Val);
47 return Val;
49 return *reinterpret_cast<u64*>(Val);
52 return *reinterpret_cast<u128*>(Val);
63 SIntMax Val = getSIntValue();
64 CHECK(Val >= 0);
65 return Val;
    [all...]
  /external/clang/test/CodeGenCXX/
2010-03-09-AnonAggregate.cpp 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents;
  /external/llvm/include/llvm/MC/
MCInstBuilder.h 38 MCInstBuilder &addImm(int64_t Val) {
39 Inst.addOperand(MCOperand::createImm(Val));
44 MCInstBuilder &addFPImm(double Val) {
45 Inst.addOperand(MCOperand::createFPImm(Val));
50 MCInstBuilder &addExpr(const MCExpr *Val) {
51 Inst.addOperand(MCOperand::createExpr(Val));
56 MCInstBuilder &addInst(const MCInst *Val) {
57 Inst.addOperand(MCOperand::createInst(Val));
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 56 /// Returns true iff Val consists of one contiguous run of 1s with any number of
60 static inline bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
61 if (!Val)
64 if (isShiftedMask_32(Val)) {
66 MB = countLeadingZeros(Val);
68 ME = countLeadingZeros((Val - 1) ^ Val);
71 Val = ~Val; // invert mask
72 if (isShiftedMask_32(Val)) {
    [all...]
  /external/curl/include/curl/
curlrules.h 208 # define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \
210 # define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \
214 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix
216 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix
218 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix
    [all...]
  /external/google-breakpad/src/third_party/curl/
curlrules.h 221 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val ## Suffix
223 # define __CURL_OFF_T_C_HELPER2(Val,Suffix) Val/**/Suffix
225 #define __CURL_OFF_T_C_HELPER1(Val,Suffix) __CURL_OFF_T_C_HELPER2(Val,Suffix)
226 #define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HELPER1(Val,CURL_SUFFIX_CURL_OFF_T)
227 #define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HELPER1(Val,CURL_SUFFIX_CURL_OFF_TU
    [all...]
  /external/llvm/include/llvm/IR/
Use.h 83 if (Val)
90 Use(PrevPtrTag tag) : Val(nullptr) { Prev.setInt(tag); }
93 operator Value *() const { return Val; }
94 Value *get() const { return Val; }
102 inline void set(Value *Val);
109 set(RHS.Val);
113 Value *operator->() { return Val; }
114 const Value *operator->() const { return Val; }
134 Value *Val;
160 static SimpleType getSimplifiedValue(Use &Val) { return Val.get();
    [all...]
  /external/llvm/lib/IR/
Use.cpp 18 if (Val == RHS.Val)
21 if (Val)
24 Value *OldVal = Val;
25 if (RHS.Val) {
27 Val = RHS.Val;
28 Val->addUse(*this);
30 Val = nullptr;
34 RHS.Val = OldVal
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZ.h 104 // Return true if Val fits an LLILL operand.
105 static inline bool isImmLL(uint64_t Val) {
106 return (Val & ~0x000000000000ffffULL) == 0;
109 // Return true if Val fits an LLILH operand.
110 static inline bool isImmLH(uint64_t Val) {
111 return (Val & ~0x00000000ffff0000ULL) == 0;
114 // Return true if Val fits an LLIHL operand.
115 static inline bool isImmHL(uint64_t Val) {
116 return (Val & ~0x00000ffff00000000ULL) == 0;
119 // Return true if Val fits an LLIHH operand
    [all...]
  /external/llvm/lib/MC/
MCSymbolELF.cpp 45 unsigned Val;
50 Val = 0;
53 Val = 1;
56 Val = 2;
59 Val = 3;
63 setFlags(OtherFlags | (Val << ELF_STB_Shift));
68 uint32_t Val = (getFlags() & (0x3 << ELF_STB_Shift)) >> ELF_STB_Shift;
69 switch (Val) {
95 unsigned Val;
100 Val = 0
    [all...]

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011>>