Home
last modified time | relevance | path

Searched refs:base2 (Results 1 – 25 of 32) sorted by relevance

12

/external/skia/bench/
DHairlinePathBench.cpp99 int base2 = 2 * rand.nextULessThan(hSize); in makePath() local
103 path->lineTo(SkIntToScalar(points[base2] + xTrans), in makePath()
104 SkIntToScalar(points[base2+1] + yTrans)); in makePath()
131 int base2 = 2 * rand.nextULessThan(hSize); in makePath() local
135 path->quadTo(SkIntToScalar(points[base2] + xTrans), in makePath()
136 SkIntToScalar(points[base2+1] + yTrans), in makePath()
164 int base2 = 2 * rand.nextULessThan(hSize); in makePath() local
169 path->conicTo(SkIntToScalar(points[base2] + xTrans), in makePath()
170 SkIntToScalar(points[base2+1] + yTrans), in makePath()
199 int base2 = 2 * rand.nextULessThan(hSize); in makePath() local
[all …]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCommonSuperclassTest.java205 String base2 = "Liface/base2;"; in testGetCommonSuperclass_interfaces() local
237 superclassTest(base2, base2, sub1); in testGetCommonSuperclass_interfaces()
238 superclassTest(base2, base2, classsub1); in testGetCommonSuperclass_interfaces()
239 superclassTest(base2, base2, sub2); in testGetCommonSuperclass_interfaces()
240 superclassTest(base2, base2, classsub2); in testGetCommonSuperclass_interfaces()
241 superclassTest(base2, base2, classsub1234); in testGetCommonSuperclass_interfaces()
269 superclassTest(unknown, sub4, base2); in testGetCommonSuperclass_interfaces()
270 superclassTest(unknown, classsub4, base2); in testGetCommonSuperclass_interfaces()
/external/libcxxabi/test/
Dcatch_ptr_02.pass.cpp94 struct base2 {int x;}; argument
95 struct derived : base1, base2 {};
104 catch (base2 *p) { in test5()
121 catch (base2 *p) { in test6()
138 catch (base2 *p) { in test7()
/external/clang/test/Modules/Inputs/
Ddependency-gen-base.modulemap4 use "test-base2"
6 extern module "test-base2" "Inputs/dependency-gen-base2.modulemap"
Ddependency-gen-base2.modulemap1 module "test-base2" {
/external/valgrind/none/tests/mips64/
Dcvm_atomic_thread.c261 #define TRIOP_AND_SAA(instruction, base1, base2, n) \ argument
267 : /*in*/ "r"(base1), "r"(base2), "r"(n) \
272 #define TRIOP_AND_SAAD(instruction, base1, base2, n) \ argument
278 : /*in*/ "r"(base1), "r"(base2), "r"(n) \
283 #define BINOP_AND_SAA(instruction, base1, base2) \ argument
289 : /*in*/ "r"(base1), "r"(base2) \
294 #define BINOP_AND_SAAD(instruction, base1, base2) \ argument
300 : /*in*/ "r"(base1), "r"(base2) \
/external/clang/test/FixIt/
Dfixit-cxx11-attributes.cpp38 struct base2 {}; struct
48 …public [[d]] base2 {}; // expected-error {{an attribute list cannot appear here}} expected-warning…
/external/llvm/test/Transforms/StraightLineStrengthReduce/NVPTX/
Dreassociate-geps-and-slsr.ll50 ; PTX: add.s64 [[base2:%rd[0-9]+]], [[base1]], [[i4]];
52 ; PTX: ld.f32 {{%f[0-9]+}}, {{\[}}[[base2]]+20];
58 ; PTX: add.s64 [[base3:%rd[0-9]+]], [[base2]], [[i4]];
/external/testng/src/test/java/test/failures/
DBase1.java7 public void base2() { in base2() method in Base1
/external/libxml2/result/scripts/
Dbase21 / > ./test/scripts/base2.xml
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dshifter_operand.ll31 define i32 @test3(i32 %base, i32 %base2, i32 %offset) {
44 %tmp4 = add i32 %base2, %tmp1
/external/clang/test/Modules/
Ddependency-gen.modulemap14 use "test-base2"
22 // IMPLICIT-DAG: {{ |\.[/\\]}}Inputs{{[/\\]}}dependency-gen-base2.modulemap
/external/libxml2/
Druntest.c3067 const char *base2; in schemasTest() local
3122 base2 = baseFilename(instance); in schemasTest()
3123 len = strlen(base2); in schemasTest()
3124 if ((len > 6) && (base2[len - 6] == '_')) { in schemasTest()
3125 count = base2[len - 5]; in schemasTest()
3244 const char *base2; in rngTest() local
3287 base2 = baseFilename(instance); in rngTest()
3288 len = strlen(base2); in rngTest()
3289 if ((len > 6) && (base2[len - 6] == '_')) { in rngTest()
3290 count = base2[len - 5]; in rngTest()
[all …]
Dregressions.py36 def compFiles(res, expected, base1, base2): argument
51 j = string.find(exp[i],base2)
/external/clang/tools/c-index-test/
Dc-index-test.c36 char* base2 = (char*)strrchr(path, '\\'); in basename() local
37 if (base1 && base2) in basename()
38 return((base1 > base2) ? base1 + 1 : base2 + 1); in basename()
41 else if (base2) in basename()
42 return(base2 + 1); in basename()
49 char* base2 = (char*)strrchr(path, '\\'); in dirname() local
50 if (base1 && base2) in dirname()
51 if (base1 > base2) in dirname()
54 *base2 = 0; in dirname()
57 else if (base2) in dirname()
[all …]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
Dp5-0x.cpp34 Base&& base2 = prvalue<Base>(); in test_rvalue_refs()
/external/llvm/test/CodeGen/ARM/
Dshifter_operand.ll30 define i32 @test3(i32 %base, i32 %base2, i32 %offset) {
38 %tmp4 = add i32 %base2, %tmp1
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_build_util.cpp338 int base2 = (baseSize2[mask] >> 8) & 0xf; in mkClobber() local
350 reg->reg.data.id = base + base2; in mkClobber()
/external/python/cpython2/Lib/test/
Dtest_datetime.py2330 base2 = base.replace(tzinfo=None)
2331 self.assertIsNone(base2.tzinfo)
2332 self.assertIsNone(base2.tzname())
2335 base3 = base2.replace(tzinfo=z100)
2866 base2 = base.replace(tzinfo=None)
2867 self.assertIsNone(base2.tzinfo)
2868 self.assertIsNone(base2.tzname())
2871 base3 = base2.replace(tzinfo=z100)
/external/llvm/test/CodeGen/SystemZ/
Dframe-15.ll343 %base2 = ptrtoint float *%elem2 to i64
345 %addr2 = add i64 %base2, %index
/external/clang/test/CXX/expr/expr.const/
Dp2-0x.cpp515 …constexpr bool base2 = &e.c[1] < &e.e.f; // expected-error {{constant expression}} expected-note {… variable
/external/clang/test/CodeGenObjCXX/
Darc.mm295 class Test39 : Test39_base1, Test39_base2 { // base2 is at non-zero offset
/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp744 constexpr Base base2(76); variable
754 static_assert(derived == base2, "");
/external/google-breakpad/src/testing/test/
Dgmock-matchers_test.cc1018 Base base, base2; in TEST() local
1022 EXPECT_FALSE(m1.Matches(base2)); in TEST()
1028 EXPECT_FALSE(m1.Matches(base2)); in TEST()
/external/pcre/dist2/src/sljit/
DsljitNativeARM_32.c940 #define EMIT_DATA_TRANSFER(type, add, wb, target, base1, base2) \ argument
941 … >> 4] | ((add) << 23) | ((wb) << 21) | (reg_map[target] << 12) | (reg_map[base1] << 16) | (base2))

12