HomeSort by relevance Sort by last modified time
    Searched refs:Val1 (Results 1 - 20 of 20) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \
85 (__extension__ ((sizeof (Val1) == sizeof (double) \
86 || __builtin_classify_type (Val1) != 8) \
87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \
88 : (sizeof (Val1) == sizeof (float)) \
89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \
90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 93 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \
94 (__extension__ ((sizeof (Val1) == sizeof (double) \
95 || __builtin_classify_type (Val1) != 8) \
96 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \
97 : (sizeof (Val1) == sizeof (float)) \
98 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \
99 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \
85 (__extension__ ((sizeof (Val1) == sizeof (double) \
86 || __builtin_classify_type (Val1) != 8) \
87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \
88 : (sizeof (Val1) == sizeof (float)) \
89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \
90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 93 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \
94 (__extension__ ((sizeof (Val1) == sizeof (double) \
95 || __builtin_classify_type (Val1) != 8) \
96 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \
97 : (sizeof (Val1) == sizeof (float)) \
98 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \
99 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \
85 (__extension__ ((sizeof (Val1) == sizeof (double) \
86 || __builtin_classify_type (Val1) != 8) \
87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \
88 : (sizeof (Val1) == sizeof (float)) \
89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \
90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2))
    [all...]
  /external/clang/test/SemaTemplate/
enum-argument.cpp 17 Val1 = get_size<T>::value,
19 SumOfValues = Val1 + Val2
instantiate-c99.cpp 43 typename Val1, typename Val2>
45 void f(Val1 val1, Val2 val2) {
47 [Subscript1] = val1,
59 typename Val1>
61 void f(Val1 val1) {
63 [Subscript1...Subscript2] = val1 // expected-error{{exceeds}}
instantiate-expr-4.cpp 212 template<typename T, typename Val1>
214 void f(Val1 val1) {
215 T x = { val1 };
227 template<typename T, typename Val1, typename Val2>
229 void f(Val1 val1, Val2 val2) {
230 T x = { val1, val2 }; // expected-error{{cannot initialize}}
  /external/llvm/include/llvm/Support/
Format.h 98 T1 Val1;
101 format_object2(const char *fmt, const T1 &val1, const T2 &val2)
102 : format_object_base(fmt), Val1(val1), Val2(val2) {
106 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2);
116 T1 Val1;
120 format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3)
121 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) {
125 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3)
    [all...]
  /external/clang/test/SemaCXX/
enum-scoped.cpp 4 Val1 = 1L
8 Val1 = '\0'
11 E1 v1 = Val1; // expected-error{{undeclared identifier}}
12 E1 v2 = E1::Val1;
15 static_assert(sizeof(E1::Val1) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
20 int x1 = E1::Val1; // expected-error{{cannot initialize a variable}}
34 int a2[E1::Val1]; // expected-error{{size of array has non-integer type}}
37 int* p2 = new int[E1::Val1]; // expected-error{{array size expression must have integral or unscoped enumeration type, not 'E (…)
    [all...]
enum.cpp 3 Val1,
13 E e = Val1;
  /external/clang/test/Index/
code-completion.cpp 6 enum E { Val1 };
48 // CHECK-MEMBER: EnumConstantDecl:{ResultType X::E}{Informative E::}{TypedText Val1}
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 49 static bool isEqual(const DivOpInfo &Val1, const DivOpInfo &Val2) {
50 return Val1.SignedOp == Val2.SignedOp &&
51 Val1.Dividend == Val2.Dividend &&
52 Val1.Divisor == Val2.Divisor;
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 317 Value *Val1 = getRandomValue(Val0->getType());
321 Val1->getType()->isPointerTy())
351 PT->push_back(BinaryOperator::Create(Op, Val0, Val1, "B", Term));
432 Value *Val1 = getRandomValue(Val0->getType());
448 Value *V = new ShuffleVectorInst(Val0, Val1, Mask, "Shuff",
460 Value *Val1 = getRandomValue(Val0->getType()->getScalarType());
462 Value *V = InsertElementInst::Create(Val0, Val1,
563 Value *Val1 = getRandomValue(Val0->getType());
575 Value *V = SelectInst::Create(Cond, Val0, Val1, "Sl", BB->getTerminator());
586 Value *Val1 = getRandomValue(Val0->getType())
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]

Completed in 463 milliseconds