HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 176 - 200 of 709) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/tests/device/test-stlport_static-exception/jni/
ice990323-2.cpp 16 void f2() function
50 f2();
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 22 float f2 = 0.0f; local
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 24 int (...f2)(int); // expected-error{{only function and template parameters can be parameter packs}}
  /external/clang/test/CodeGen/
builtins-nvptx.c 150 void nvvm_math(float f1, float f2, double d1, double d2) {
152 float t1 = __nvvm_fmax_f(f1, f2);
154 float t2 = __nvvm_fmin_f(f1, f2);
158 float t4 = __nvvm_rcp_rn_f(f2);
bitfield-2.c 210 _Bool f2 : 1; member in struct:s5
219 return (a0->f0 = 0xF) ^ (a0->f1 = 0xF) ^ (a0->f2 = 0xF);
222 return (a0->f0 += 0xF) ^ (a0->f1 += 0xF) ^ (a0->f2 += 0xF);
231 res ^= g5.f0 ^ g5.f1 ^ g5.f2;
233 res ^= g5.f0 ^ g5.f1 ^ g5.f2;
297 int f2 : 4; member in struct:s8
304 return a0->f0 ^ a0 ->f2 ^ a0->f3;
307 return (a0->f0 = 0xFD) ^ (a0->f2 = 0xFD) ^ (a0->f3 = 0xFD);
310 return (a0->f0 += 0xFD) ^ (a0->f2 += 0xFD) ^ (a0->f3 += 0xFD);
319 res ^= g8.f0 ^ g8.f2 ^ g8.f3
334 unsigned f2 : 7; member in struct:s9
    [all...]
  /external/clang/test/CodeGenCXX/
incomplete-types.cpp 28 A *f2() { function in namespace:incomplete_type_refs
mangle-extern-local.cpp 21 int f2() { function in namespace:N
  /external/clang/test/FixIt/
dereference-addressof.c 12 void f2(int *aPtr, int a, float *bPtr, char c) { function
  /external/clang/test/Index/
complete-exprs.c 11 void f2() { f1(17); } function
65 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f2}{LeftParen (}{RightParen )} (50)
  /external/clang/test/Parser/
cxx-stmt.cpp 13 void f2() function
attributes.c 18 int f2(y, __attribute__(()) x); // expected-error {{expected identifier}}
32 void g2(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}}
38 void (*h2)(int (*f2)(y, __attribute__(()) x)); // expected-error {{expected identifier}}
  /external/clang/test/Sema/
sentinel-attribute.c 5 void f2(int a, ...) __attribute__ ((sentinel(1)));
ext_vector_casts.c 49 void inc(float2 f2) {
50 f2++; // expected-error{{cannot increment value of type 'float2'}}
51 __real f2; // expected-error{{invalid type 'float2' to __real operator}} local
offsetof.c 20 x = __builtin_offsetof(struct external_sun3_core, X[42].f2); // expected-error {{no member named 'f2'}}
21 x = __builtin_offsetof(int, X[42].f2); // expected-error {{offsetof requires struct}}
25 int c[__builtin_offsetof(struct external_sun3_core, X[42].f2) == 344 ? 1 : -1]; // expected-error {{no member named 'f2'}}
  /external/clang/test/SemaCXX/
qualified-id-lookup.cpp 58 struct f2 { struct in namespace:N
61 void f2();
66 int i2 = N::f2::member;
67 typedef struct N::f2 type2;
type-dependent-exprs.cpp 32 int f2() { function
trailing-return-0x.cpp 82 auto f2(T t) -> decltype(f2(&t)) {} // expected-note{{candidate template ignored}}
85 f2(0); // expected-error{{no matching function for call to 'f2'}}
using-directive.cpp 116 namespace N { void f2(int); }
120 void f3() { f2(1); }
123 void f4() { f2(1); }
warn-func-as-bool.cpp 6 static void f2();
25 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
27 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
warn-unused-parameters.cpp 6 T f2(T);
14 template<typename T> T X<T>::f2(T x) { return T(); } // expected-warning{{unused parameter 'x'}} function in class:X
22 x.f2(i);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 56 int &f2(T1, T2, Rest...);
58 float &f2(...);
61 int &ir1 = f2(1, 2.0, 'a');
  /external/clang/test/SemaTemplate/
injected-class-name.cpp 33 void f2(const X0&); // expected-note{{here}}
34 void f2(X0&);
35 void f2(const ::X0<type, U_type2>&); // expected-error{{redecl}}
  /external/libffi/testsuite/libffi.call/
many.c 13 float f2,
28 (double) f1, (double) f2, (double) f3, (double) f4, (double) f5,
33 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
  /external/oprofile/libutil++/tests/
string_filter_tests.cpp 32 string_filter f2("ok", "");
33 check(f2, "ok", true);
34 check(f2, "no", false);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_rfunction.pass.cpp 72 std::function<int(int)> f2(std::allocator_arg, test_allocator<A>(), std::move(f));
75 assert(f2.target<A>());
76 assert(f2.target<int(*)(int)>() == 0);

Completed in 2069 milliseconds

1 2 3 4 5 6 78 91011>>