Searched defs:F0 (Results 1 - 25 of 26) sorted by relevance

12

/external/mksh/src/
H A Demacsfn.h26 #define F0(cname,sname,flags) XFUNC_##cname = 0, macro
31 #ifndef F0
32 #define F0 FN macro
35 F0(abort, "abort", 0)
110 #undef F0 macro
H A Dvar_spec.h26 #define F0(name) V_##name = 0, macro
28 #define F0(name) /* nothing */ macro
32 #ifndef F0
33 #define F0 FN macro
36 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
39 F0(NONE)
77 #undef F0 macro
H A Dexprtok.h28 #define F0(name, len, prec, enum) enum = 0, macro
44 #ifndef F0
45 #define F0 FN macro
115 #undef F0 macro
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dcoverage-direct-large.cc25 #define F0(Q, x) Q(x) macro
27 F0(Q, x##0) F0(Q, x##1) F0(Q, x##2) F0(Q, x##3) F0(Q, x##4) F0(Q, x##5) \
28 F0(Q, x##6) F0(Q, x##7) F0(
[all...]
/external/llvm/unittests/ADT/
H A DBitmaskEnumTest.cpp17 F0 = 0, enumerator in enum:__anon14915::Flags
83 EXPECT_EQ(15, ~F0);
87 F0 = 0, member in class:__anon14915::FlagsClass
95 FlagsClass f = (FlagsClass::F1 & ~FlagsClass::F0) | FlagsClass::F2;
101 enum Flags { F0 = 0, F1 = 1, F2 = 2, F3 = 4, LLVM_MARK_AS_BITMASK_ENUM(F3) }; enumerator in enum:__anon14915::Container::Flags
104 Flags f = F0 | F1;
118 F0 = 0, enumerator in enum:foo::bar::__anon14916::FlagsInNamespace
130 foo::bar::FlagsInNamespace f = ~foo::bar::F0 & (foo::bar::F1 | foo::bar::F2);
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
H A Dp3.cpp11 friend struct F0;
13 struct F0 member_func();
15 struct F0 { }; struct in namespace:N
16 F0 f0() { return S0().member_func(); }
18 N::F0 f0_var = N::f0();
/external/clang/test/SemaCXX/
H A Drval-references-examples.cpp95 struct F0 { struct in namespace:perfect_forwarding
101 f(static_cast<Args&&>(args)...); // expected-error{{no matching function for call to object of type 'perfect_forwarding::F0'}}
107 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(),
109 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(), // expected-note{{in instantiation of function template specialization 'perfect_forwarding::forward<perfect_forwarding::F0, perfect_forwarding::A &, const perfect_forwarding::A &, perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A>' requested here}}
/external/clang/test/Layout/
H A Dms-x86-basic-layout.cpp492 struct F0 : A4, B { struct in inherits:A4,B
494 F0() : a(0xf00000f0) {} function in struct:F0
495 virtual void g() {printf("F0");}
503 // CHECK-NEXT: 0 | struct F0
504 // CHECK-NEXT: 0 | (F0 vftable pointer)
526 // CHECK-X64-NEXT: 0 | struct F0
527 // CHECK-X64-NEXT: 0 | (F0 vftable pointer)
863 sizeof(F0)+
/external/skia/samplecode/
H A DSampleBitmapRect.cpp249 static SkView* F0() { return new BitmapRectView; } function
251 static SkViewRegister gR0(F0);
/external/skqp/samplecode/
H A DSampleBitmapRect.cpp249 static SkView* F0() { return new BitmapRectView; } function
251 static SkViewRegister gR0(F0);
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c43 static int F0(struct Quad Q, int i) { /* Pass Q by value */ function
/external/python/cpython3/Modules/
H A Dsha1module.c105 #define F0(x,y,z) (z ^ (x & (y ^ z))) macro
133 #define FF_0(a,b,c,d,e,i) e = (ROLc(a, 5) + F0(b,c,d) + e + W[i] + 0x5a827999UL); b = ROLc(b, 30);
/external/opencv/cvaux/src/
H A Dcvmorphcontours.cpp69 CvPoint2D32f* F0,
100 CvPoint2D32f* F0,
119 if( (F0->x==0) && (F0->y==0) )
139 d_angle = d_angle - acos( (F0->x*K->x + F0->y*K->y)/sqrt( (F0->x*F0->x + F0->y*F0
99 _cvBendingWork( CvPoint2D32f* B0, CvPoint2D32f* F0, CvPoint2D32f* B1, CvPoint2D32f* F1 ) argument
[all...]
/external/pdfium/core/fdrm/crypto/
H A Dfx_crypt_sha.cpp70 #define F0(x, y, z) ((x & y) | (z & (x | y))) macro
76 temp2 = S2(a) + F0(a, b, c); \
/external/valgrind/drd/tests/
H A Dtsan_thread_wrappers_pthread.h435 typedef void (*F0)(); typedef in struct:Closure
445 (F0(f))();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp302 APFloat &F0 = getFpVal(); local
305 F0.multiply(createAPFloatFromInt(Semantic, That.IntVal),
308 F0.multiply(That.getFpVal(), APFloat::rmNearestTiesToEven);
/external/llvm/unittests/IR/
H A DMetadataTest.cpp349 auto *F0 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F0", &M); local
351 auto *BB0 = BasicBlock::Create(Context, "entry", F0);
377 auto *F0 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F0", &M); local
379 auto *BB0 = BasicBlock::Create(Context, "entry", F0);
/external/opencv/cv/src/
H A Dcvfundam.cpp797 CvMat U, F0, TF; local
870 F0 = cvMat( 3, 3, CV_64F, v + 9*8 ); // take the last column of v as a solution of Af = 0
872 // make F0 singular (of rank 2) by decomposing it with SVD,
876 W = U = V = TF = F0;
882 cvSVD( &F0, &W, &U, &V, CV_SVD_MODIFY_A + CV_SVD_U_T + CV_SVD_V_T );
885 // F0 <- U*diag([W(1), W(2), 0])*V'
887 cvGEMM( &TF, &V, 1., 0, 0., &F0, 0/*CV_GEMM_B_T*/ );
895 T0 = T1 = F0;
899 // F0 <- T1'*F0*T
[all...]
/external/webp/src/dsp/
H A Dlossless_enc_sse2.c114 const __m128i F0 = _mm_srli_epi32(C0, 16); // 0 0 | x db local
116 const __m128i G0 = _mm_sub_epi8(E0, F0); // 0 0 | x b'
160 const __m128i F0 = _mm_and_si128(E0, mask); // 0 0 | 0 r' local
162 const __m128i I = _mm_packs_epi32(F0, F1);
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 547 milliseconds

12