Searched defs:F1 (Results 51 - 75 of 79) sorted by relevance

1234

/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c36 F1, enumerator in enum:F
/external/llvm/unittests/Support/
H A DPath.cpp288 fs::UniqueID F1, F2; local
289 ASSERT_NO_ERROR(fs::getUniqueID(Twine(TempPath), F1));
291 ASSERT_EQ(F1, F2);
301 ASSERT_NE(D, F1);
311 ASSERT_EQ(D2, F1);
318 ASSERT_NO_ERROR(fs::getUniqueID(Dir1.c_str(), F1));
320 ASSERT_EQ(F1, F2);
326 ASSERT_NE(F1, F2);
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp160 Function *F1 = Function::Create(FT1, Function::ExternalLinkage); local
161 BasicBlock *BB = BasicBlock::Create(context, "", F1);
169 Argument *A = F1->arg_begin();
176 CloneFunctionInto(F2, F1, VMap, false, Returns);
179 delete F1;
187 Function *F1 = Function::Create(FT1, Function::ExternalLinkage); local
188 F1->setCallingConv(CallingConv::Cold);
189 BasicBlock *BB = BasicBlock::Create(context, "", F1);
197 VMap[F1->arg_begin()] = F2->arg_begin();
199 CloneFunctionInto(F2, F1, VMa
[all...]
/external/skia/samplecode/
H A DSampleRotateCircles.cpp357 static SkView* F1() { return new TestCirclesView; } function
358 static SkViewRegister gR1(F1);
/external/skia/src/core/
H A DSkDistanceFieldGen.cpp196 static void F1(DFData* curr, int width) { function
374 F1(currData, dataWidth);
/external/ceres-solver/internal/ceres/
H A Dsystem_test.cc220 new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), NULL, &x_[0], &x_[1]);
237 class F1 { class in class:ceres::internal::PowellsFunction
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-arm.cc41 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); typedef
103 F1 f = FUNCTION_CAST<F1>(code->entry());
148 F1 f = FUNCTION_CAST<F1>(code->entry());
380 F1 f = FUNCTION_CAST<F1>(code->entry());
414 F1 f = FUNCTION_CAST<F1>(code->entry());
488 F1
[all...]
H A Dtest-assembler-mips.cc42 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); typedef
102 F1 f = FUNCTION_CAST<F1>(code->entry());
H A Dtest-assembler-mips64.cc42 typedef Object* (*F1)(int x, int p1, int p2, int p3, int p4); typedef
103 F1 f = FUNCTION_CAST<F1>(code->entry());
/external/clang/test/FixIt/
H A Dfixit.cpp140 class F1 { class
149 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
154 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A Dmain.cpp31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
32 first_cool(I1,F1,C1),
34 floating((F1 + F2)/2) {}
/external/openfst/src/include/fst/
H A Dlookahead-filter.h126 typedef typename M1::FST F1; typedef in class:fst::LookAheadSelector
141 const F1 &GetFst() const { return *fst_; }
146 const F1 *fst_;
/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt_sha.cpp225 #define F1(x,y,z) (z ^ (x & (y ^ z))) macro
233 temp1 = h + S3(e) + F1(e,f,g) + K + x; \
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp639 Foo1<1> F1; local
641 F2 = F1;
642 F1 = F2;
689 Foo2<1> F1; local
691 F2 = F1;
692 F1 = F2;
738 Foo3<1> F1; local
740 F2 = F1;
741 F1 = F2;
/external/clang/test/SemaCXX/
H A Doverload-call.cpp586 typedef void F1(int); typedef in struct:__anon19356
588 operator F1*(); // expected-note{{conversion candidate}}
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp441 const Function *F1 = getParent(O1); local
444 return !F1 || !F2 || F1 == F2;
/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp1246 static bool attributeMatches(Function *F1, Function *F2, argument
1248 return F1->hasFnAttribute(Attr) == F2->hasFnAttribute(Attr);
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp130 FunctionComparator(const DataLayout *DL, const Function *F1, argument
132 : FnL(F1), FnR(F2), DL(DL) {}
1022 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
1144 Function *F1 = cast<Function>(*I); local
1146 int Res1 = FunctionComparator(DL, F1, F2).compare();
1147 int Res2 = FunctionComparator(DL, F2, F1).compare();
1149 // If F1 <= F2, then F2 >= F1, otherwise report failure.
1153 F1->dump();
1168 int Res3 = FunctionComparator(DL, F1, F
[all...]
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp243 Function *F1 = makeReturnGlobal("F1", G, M); local
248 reinterpret_cast<void(*)()>((intptr_t)JIT->getPointerToFunction(F1));
250 // Since F1 was codegen'd, a pointer to G should be available.
255 // F1() should increment G.
269 // Deallocate F1.
270 JIT->freeMachineCodeForFunction(F1);
/external/valgrind/main/drd/tests/
H A Dtsan_thread_wrappers_pthread.h436 typedef void (*F1)(void *arg1); typedef in struct:Closure
447 (F1(f))(param1);
H A Dtsan_unittest.cpp5051 void F1() { function in namespace:test105
5065 F1();
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest3.c134 /* The four core functions - F1 is optimized somewhat */
136 /* #define F1(x, y, z) (x & y | ~x & z) */
137 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
138 #define F2(x, y, z) F1(z, x, y)
159 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
160 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
161 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
162 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
163 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
164 MD5STEP(F1,
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp401 InductionMap::iterator F1 = IndMap.find(CmpReg1); local
402 if (F1 != IndMapEnd)
403 F = F1;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtclsqlite.c3115 /* The four core functions - F1 is optimized somewhat */
3117 /* #define F1(x, y, z) (x & y | ~x & z) */
3118 #define F1(x, y, z) (z ^ (x & (y ^ z))) macro
3119 #define F2(x, y, z) F1(z, x, y)
3140 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
3141 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
3142 MD5STEP(F1, c, d, a, b, in[ 2]+0x242070db, 17);
3143 MD5STEP(F1, b, c, d, a, in[ 3]+0xc1bdceee, 22);
3144 MD5STEP(F1, a, b, c, d, in[ 4]+0xf57c0faf, 7);
3145 MD5STEP(F1,
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dixjuser.h182 hz349 = 0x7b37, /* .23 F1 */
272 F1 = hz349, enumerator in enum:__anon23123

Completed in 2498 milliseconds

1234