HomeSort by relevance Sort by last modified time
    Searched defs:F0 (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/mksh/src/
emacsfn.h 26 #define F0(cname,sname,flags) XFUNC_##cname = 0,
31 #ifndef F0
32 #define F0 FN
35 F0(abort, "abort", 0)
110 #undef F0
var_spec.h 26 #define F0(name) V_##name = 0,
28 #define F0(name) /* nothing */
32 #ifndef F0
33 #define F0 FN
36 /* NOTE: F0 are skipped for the ITEMS array, only FN generate names */
39 F0(NONE)
77 #undef F0
exprtok.h 28 #define F0(name, len, prec, enum) enum = 0,
44 #ifndef F0
45 #define F0 FN
115 #undef F0
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
issue13742.go 12 // Both F0 and G0 should appear as functions.
13 func F0(Node) {}
d2.go 44 // F0 should be first.
45 func F0() {}
  /prebuilts/go/linux-x86/src/go/doc/testdata/
issue13742.go 12 // Both F0 and G0 should appear as functions.
13 func F0(Node) {}
d2.go 44 // F0 should be first.
45 func F0() {}
  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-direct-large.cc 25 #define F0(Q, x) Q(x)
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(Q, x##8) F0(Q, x##9
    [all...]
  /libcore/ojluni/src/main/java/java/security/spec/
RSAKeyGenParameterSpec.java 48 * The public-exponent value F0 = 3.
50 public static final BigInteger F0 = BigInteger.valueOf(3);
  /external/llvm/unittests/ADT/
BitmaskEnumTest.cpp 17 F0 = 0,
83 EXPECT_EQ(15, ~F0);
87 F0 = 0,
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) };
104 Flags f = F0 | F1;
118 F0 = 0,
130 foo::bar::FlagsInNamespace f = ~foo::bar::F0 & (foo::bar::F1 | foo::bar::F2);
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 95 struct F0 {
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/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 11 friend struct F0;
12 friend void f0(int);
13 struct F0 member_func();
15 struct F0 { };
16 F0 f0() { return S0().member_func(); } function in namespace:N
18 N::F0 f0_var = N::f0();
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 43 static int F0(struct Quad Q, int i) { /* Pass Q by value */
  /external/skia/samplecode/
SampleBitmapRect.cpp 249 static SkView* F0() { return new BitmapRectView; }
251 static SkViewRegister gR0(F0);
  /external/skqp/samplecode/
SampleBitmapRect.cpp 249 static SkView* F0() { return new BitmapRectView; }
251 static SkViewRegister gR0(F0);
  /external/clang/test/Layout/
ms-x86-basic-layout.cpp 492 struct F0 : A4, B {
494 F0() : a(0xf00000f0) {}
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/python/cpython3/Modules/
sha1module.c 105 #define F0(x,y,z) (z ^ (x & (y ^ z)))
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);
  /art/runtime/arch/mips/
registers_mips.h 72 F0 = 0,
  /art/runtime/arch/mips64/
registers_mips64.h 73 F0 = 0,
  /external/pdfium/core/fdrm/crypto/
fx_crypt_sha.cpp 70 #define F0(x, y, z) ((x & y) | (z & (x | y)))
76 temp2 = S2(a) + F0(a, b, c); \
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 81 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
86 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 435 typedef void (*F0)();
445 (F0(f))();
  /external/webp/src/dsp/
lossless_enc_sse2.c 114 const __m128i F0 = _mm_srli_epi32(C0, 16); // 0 0 | x db
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'
162 const __m128i I = _mm_packs_epi32(F0, F1);
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Guid/
PlatformInfo.h 331 F0 = 0,
382 GPIO_FUNC_NUM func; // Function Number (F0~F7)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 302 APFloat &F0 = getFpVal();
305 F0.multiply(createAPFloatFromInt(Semantic, That.IntVal),
308 F0.multiply(That.getFpVal(), APFloat::rmNearestTiesToEven);
    [all...]

Completed in 818 milliseconds

1 2 3