HomeSort by relevance Sort by last modified time
    Searched defs:F1 (Results 76 - 100 of 158) sorted by null

1 2 34 5 6 7

  /external/skia/samplecode/
SampleBitmapRect.cpp 250 static SkView* F1() { return new BitmapRectView2; }
252 static SkViewRegister gR1(F1);
  /external/skqp/samplecode/
SampleBitmapRect.cpp 250 static SkView* F1() { return new BitmapRectView2; }
252 static SkViewRegister gR1(F1);
  /external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 92 Function *F1 = buildFunction(M);
95 void *F1_addr = EE->getPointerToFunction(F1);
97 EE->getPointerToFunction(F1); // Should do nothing.
98 EE->freeMachineCodeForFunction(F1);
105 EXPECT_EQ(F1, Listener.EmittedEvents[0].F);
124 F1->eraseFromParent();
133 Function *F1 = buildFunction(M);
138 void *F1_addr = EE->getPointerToFunction(F1);
144 EE->freeMachineCodeForFunction(F1);
158 EXPECT_EQ(F1, Listener1.EmittedEvents[0].F)
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/Support/
Casting.cpp 86 foo &F1 = cast<foo>(B1);
87 EXPECT_NE(&F1, null_foo);
116 const foo *F1 = dyn_cast<foo>(B2);
117 EXPECT_NE(F1, null_foo);
129 const foo *F1 = dyn_cast_or_null<foo>(B2);
130 EXPECT_NE(F1, null_foo);
  /external/wpa_supplicant_8/src/crypto/
md4-internal.c 181 /* The three core functions - F1 is optimized somewhat */
183 /* #define F1(x, y, z) (x & y | ~x & z) */
184 #define F1(x, y, z) (z ^ (x & (y ^ z)))
219 MD4STEP(F1, a, b, c, d, in[ 0], 3);
220 MD4STEP(F1, d, a, b, c, in[ 1], 7);
221 MD4STEP(F1, c, d, a, b, in[ 2], 11);
222 MD4STEP(F1, b, c, d, a, in[ 3], 19);
223 MD4STEP(F1, a, b, c, d, in[ 4], 3);
224 MD4STEP(F1, d, a, b, c, in[ 5], 7);
225 MD4STEP(F1, c, d, a, b, in[ 6], 11)
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
b.go 57 func F1() notExported {}
  /prebuilts/go/darwin-x86/test/import2.dir/
import2.go 40 var F1 func() func() int
  /prebuilts/go/linux-x86/src/go/doc/testdata/
b.go 57 func F1() notExported {}
  /prebuilts/go/linux-x86/test/import2.dir/
import2.go 40 var F1 func() func() int
  /external/clang/test/Layout/
ms-x86-basic-layout.cpp 545 struct F1 : B, A4 {
547 F1() : a(0xf00000f1) {}
548 virtual void g() {printf("F1");}
552 // CHECK-NEXT: 0 | struct F1
553 // CHECK-NEXT: 0 | (F1 vftable pointer)
571 // CHECK-X64-NEXT: 0 | struct F1
572 // CHECK-X64-NEXT: 0 | (F1 vftable pointer)
864 sizeof(F1)+
  /external/llvm/unittests/Support/
Casting.cpp 111 foo &F1 = cast<foo>(B1);
112 EXPECT_NE(&F1, null_foo);
142 const foo *F1 = dyn_cast<foo>(B2);
143 EXPECT_NE(F1, null_foo);
156 const foo *F1 = dyn_cast_or_null<foo>(B2);
157 EXPECT_NE(F1, null_foo);
  /external/python/cpython3/Modules/
sha1module.c 106 #define F1(x,y,z) (x ^ y ^ z)
134 #define FF_1(a,b,c,d,e,i) e = (ROLc(a, 5) + F1(b,c,d) + e + W[i] + 0x6ed9eba1UL); b = ROLc(b, 30);
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/testdata/
exports.go 82 func F1() {}
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/testdata/
exports.go 82 func F1() {}
  /toolchain/binutils/binutils-2.27/libiberty/
sha1.c 277 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) )
328 R( a, b, c, d, e, F1, K1, x[ 0] );
329 R( e, a, b, c, d, F1, K1, x[ 1] );
330 R( d, e, a, b, c, F1, K1, x[ 2] );
331 R( c, d, e, a, b, F1, K1, x[ 3] );
332 R( b, c, d, e, a, F1, K1, x[ 4] );
333 R( a, b, c, d, e, F1, K1, x[ 5] );
334 R( e, a, b, c, d, F1, K1, x[ 6] );
335 R( d, e, a, b, c, F1, K1, x[ 7] );
336 R( c, d, e, a, b, F1, K1, x[ 8] )
    [all...]
  /external/clang/test/Sema/
warn-duplicate-enum.c 36 F1,
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 158 Function *F1 = Function::Create(FT1, Function::ExternalLinkage);
159 BasicBlock *BB = BasicBlock::Create(context, "", F1);
167 Argument *A = &*F1->arg_begin();
174 CloneFunctionInto(F2, F1, VMap, false, Returns);
177 delete F1;
185 Function *F1 = Function::Create(FT1, Function::ExternalLinkage);
186 F1->setCallingConv(CallingConv::Cold);
187 BasicBlock *BB = BasicBlock::Create(context, "", F1);
195 VMap[&*F1->arg_begin()] = &*F2->arg_begin();
197 CloneFunctionInto(F2, F1, VMap, false, Returns)
    [all...]
  /external/skia/src/core/
SkDistanceFieldGen.cpp 198 static void F1(DFData* curr, int width) {
376 F1(currData, dataWidth);
  /external/skqp/src/core/
SkDistanceFieldGen.cpp 198 static void F1(DFData* curr, int width) {
376 F1(currData, dataWidth);
  /external/webp/src/dsp/
rescaler_sse2.c 158 const __m128i F1 = _mm_shuffle_epi32(E1, 1 | (3 << 2));
160 const __m128i G = _mm_unpacklo_epi32(F1, F2);
  /prebuilts/go/darwin-x86/test/
assign1.go 29 F1 func() int
66 f1 F1
97 pf1 *F1
127 f0 = f1
129 f = f1 // ERROR "cannot use"
130 f1 = f0
131 f1 = f // ERROR "cannot use"
240 f0 = func() int(f1)
242 f = F(f1)
65 f1 F1 var
    [all...]
  /prebuilts/go/linux-x86/test/
assign1.go 29 F1 func() int
66 f1 F1
97 pf1 *F1
127 f0 = f1
129 f = f1 // ERROR "cannot use"
130 f1 = f0
131 f1 = f // ERROR "cannot use"
240 f0 = func() int(f1)
242 f = F(f1)
65 f1 F1 var
    [all...]
  /art/runtime/arch/mips/
registers_mips.h 73 F1 = 1,
  /art/runtime/arch/mips64/
registers_mips64.h 74 F1 = 1,
  /device/google/cuttlefish_common/host/frontend/vnc_server/
keysyms.h 29 Right = 0xff53, Down = 0xff54, F1 = 0xffbe, F2 = 0xffbf,

Completed in 2684 milliseconds

1 2 34 5 6 7