/external/llvm/unittests/ExecutionEngine/JIT/ |
JITEventListenerTest.cpp | 93 Function *F1 = buildFunction(M); 96 void *F1_addr = EE->getPointerToFunction(F1); 98 EE->getPointerToFunction(F1); // Should do nothing. 99 EE->freeMachineCodeForFunction(F1); 106 EXPECT_EQ(F1, Listener.EmittedEvents[0].F); 125 F1->eraseFromParent(); 134 Function *F1 = buildFunction(M); 139 void *F1_addr = EE->getPointerToFunction(F1); 145 EE->freeMachineCodeForFunction(F1); 159 EXPECT_EQ(F1, Listener1.EmittedEvents[0].F) [all...] |
/external/llvm/unittests/Transforms/Utils/ |
Cloning.cpp | 153 Function *F1 = Function::Create(FT1, Function::ExternalLinkage); 154 BasicBlock *BB = BasicBlock::Create(context, "", F1); 162 Argument *A = F1->arg_begin(); 169 CloneFunctionInto(F2, F1, VMap, false, Returns); 172 delete F1;
|
/external/skia/gm/ |
pathfill.cpp | 221 static skiagm::GM* F1(void*) { return new PathInverseFillGM; } 222 static skiagm::GMRegistry gR1(F1);
|
dashing.cpp | 305 static skiagm::GM* F1(void*) { return new Dashing2GM; } 309 static skiagm::GMRegistry gR1(F1);
|
strokes.cpp | 245 static skiagm::GM* F1(void*) { return new Strokes2GM; } 249 static skiagm::GMRegistry R1(F1);
|
/external/v8/test/cctest/ |
test-assembler-ia32.cc | 43 typedef int (*F1)(int x); 118 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 160 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
|
test-assembler-x64.cc | 77 typedef int (*F1)(int64_t x);
|
test-assembler-arm.cc | 40 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); 114 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 160 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 383 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 418 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 494 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()) [all...] |
/external/wpa_supplicant_8/src/crypto/ |
md4-internal.c | 178 /* The three core functions - F1 is optimized somewhat */ 180 /* #define F1(x, y, z) (x & y | ~x & z) */ 181 #define F1(x, y, z) (z ^ (x & (y ^ z))) 216 MD4STEP(F1, a, b, c, d, in[ 0], 3); 217 MD4STEP(F1, d, a, b, c, in[ 1], 7); 218 MD4STEP(F1, c, d, a, b, in[ 2], 11); 219 MD4STEP(F1, b, c, d, a, in[ 3], 19); 220 MD4STEP(F1, a, b, c, d, in[ 4], 3); 221 MD4STEP(F1, d, a, b, c, in[ 5], 7); 222 MD4STEP(F1, c, d, a, b, in[ 6], 11) [all...] |
/dalvik/tests/091-deep-interface-hierarchy/src/ |
Main.java | 52 interface F1 extends E1, E2, E3, E4, E5 {} 58 interface G1 extends F1, F2, F3, F4, F5 {} 59 interface G2 extends F1, F2, F3, F4, F5 {} 60 interface G3 extends F1, F2, F3, F4, F5 {} 61 interface G4 extends F1, F2, F3, F4, F5 {} 62 interface G5 extends F1, F2, F3, F4, F5 {}
|
/external/chromium_org/v8/test/cctest/ |
test-assembler-ia32.cc | 43 typedef int (*F1)(int x); 110 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 153 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry());
|
test-assembler-x64.cc | 51 typedef int (*F1)(int64_t x);
|
test-assembler-arm.cc | 40 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); 106 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 153 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 391 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 427 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()); 503 F1 f = FUNCTION_CAST<F1>(Code::cast(code)->entry()) [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
inline-arguments.js | 61 function F1() { } 62 function F2() { F1.apply(this, arguments); } 70 return F1.apply(this, arguments);
|
/external/llvm/unittests/Support/ |
Casting.cpp | 107 foo &F1 = cast<foo>(B1); 108 EXPECT_NE(&F1, null_foo); 138 const foo *F1 = dyn_cast<foo>(B2); 139 EXPECT_NE(F1, null_foo); 152 const foo *F1 = dyn_cast_or_null<foo>(B2); 153 EXPECT_NE(F1, null_foo);
|
Path.cpp | 172 fs::UniqueID F1, F2; 173 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F1)); 175 ASSERT_EQ(F1, F2); 185 ASSERT_NE(D, F1); 195 ASSERT_EQ(D2, F1); 202 ASSERT_NO_ERROR(fs::getUniqueID(Dir1.c_str(), F1)); 204 ASSERT_EQ(F1, F2); 210 ASSERT_NE(F1, F2);
|
/external/valgrind/unittest/ |
thread_wrappers.h | 165 typedef void (*F1)(void *arg1); 176 (F1(f))(param1);
|
/art/runtime/arch/mips/ |
registers_mips.h | 70 F1 = 1,
|
/bionic/libc/arch-mips/include/machine/ |
regnum.h | 82 #define F1 (FPBASE+1)
|
/development/ndk/platforms/android-9/arch-mips/include/machine/ |
regnum.h | 82 #define F1 (FPBASE+1)
|
/external/ceres-solver/internal/ceres/ |
system_test.cc | 194 // F = 1/2 (f1^2 + f2^2 + f3^2 + f4^2) 196 // f1 = x1 + 10*x2; 216 new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), NULL, &x_[0], &x_[1]); 233 class F1 { 238 // f1 = x1 + 10 * x2;
|
/external/clang/test/Sema/ |
warn-duplicate-enum.c | 36 F1,
|
/external/openfst/src/include/fst/ |
lookahead-filter.h | 126 typedef typename M1::FST F1; 141 const F1 &GetFst() const { return *fst_; } 146 const F1 *fst_; 366 const FilterState1 &f1 = filter_.FilterArc(arc1, arc2); local 367 if (f1 == FilterState1::NoState()) 371 return FilterState(f1, FilterState2(Weight::One())); 379 return FilterState(f1, FilterState2(lweight)); 505 const FilterState1 &f1 = filter_.FilterArc(arc1, arc2); local 506 if (f1 == FilterState1::NoState()) 510 return FilterState(f1, FilterState2(kNoLabel)) [all...] |
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/machine/ |
regnum.h | 82 #define F1 (FPBASE+1)
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/ |
regnum.h | 82 #define F1 (FPBASE+1)
|