Home
last modified time | relevance | path

Searched refs:sub (Results 1 – 25 of 79) sorted by relevance

1234

/art/test/004-JniTest/
Dexpected.txt14 RUNNING super object, sub class, super nonstatic
16 PASSED super object, sub class, super nonstatic
19 RUNNING sub object, super class, super nonstatic
21 PASSED sub object, super class, super nonstatic
24 RUNNING sub object, sub class, super nonstatic
26 PASSED sub object, sub class, super nonstatic
29 RUNNING sub object, sub class, sub nonstatic
31 PASSED sub object, sub class, sub nonstatic
/art/test/1946-list-descriptors/src-art/art/
DTest1946.java59 private static <T> void checkEq(T[] full, T[] sub, final String msg) { in checkEq() argument
61 check(full.length == sub.length, () -> "not equal length"); in checkEq()
63 () -> Arrays.toString(full) + " is not same as " + Arrays.toString(sub) + ": " + msg; in checkEq()
64 check(new HashSet<T>(Arrays.asList(full)).containsAll(Arrays.asList(sub)), msgGen); in checkEq()
67 private static <T> void checkSubset(T[] full, T[] sub, final String msg) { in checkSubset() argument
69 () -> Arrays.toString(full) + " does not contain all of " + Arrays.toString(sub) + ": " + msg; in checkSubset()
70 check(new HashSet<T>(Arrays.asList(full)).containsAll(Arrays.asList(sub)), msgGen); in checkSubset()
/art/test/093-serialization/src/
DMain.java48 Sub sub = new Sub('X'); in createStream() local
49 objStream.writeObject(sub); in createStream()
63 Sub sub; in checkStream() local
66 sub = (Sub) objStream.readObject(); in checkStream()
75 sub.check(); in checkStream()
/art/runtime/arch/x86/
Dmemcmp16_x86.S82 sub $0xffff, %edx
88 sub %edx, %esi
125 sub $0xffff, %edx
142 sub $32, %ecx
147 sub $32, %ecx
172 sub $0xffff, %edx
202 sub $0xffff, %edx
214 sub $32, %ecx
225 sub $32, %ecx
254 sub $0xffff, %edx
[all …]
/art/test/032-concrete-sub/src/
DConcreteSub.java29 ConcreteSub sub = new ConcreteSub(); in main() local
32 callBase(sub); in main()
/art/test/474-fp-sub-neg/
Dinfo.txt3 A pair (sub, neg) should not be transforemd to (sub) for
DAndroid.bp3 name: "art-run-test-474-fp-sub-neg",
/art/compiler/optimizing/
Dinduction_var_analysis_test.cc286 HInstruction* sub = InsertInstruction( in TEST_F() local
297 EXPECT_STREQ("(( - (1)) * i + (100)):Int32", GetInductionInfo(sub, 0).c_str()); in TEST_F()
319 HInstruction* sub = InsertInstruction( in TEST_F() local
321 HInstruction* store2 = InsertArrayStore(sub, 0); in TEST_F()
322 k_header->AddInput(sub); in TEST_F()
469 HInstruction* sub = InsertInstruction( in TEST_F() local
472 new (GetAllocator()) HNeg(DataType::Type::kInt32, sub), 0); in TEST_F()
488 GetInductionInfo(sub, 0).c_str()); in TEST_F()
571 HInstruction* sub = InsertInstruction( in TEST_F() local
574 new (GetAllocator()) HNeg(DataType::Type::kInt32, sub), 0); in TEST_F()
[all …]
Dinstruction_simplifier_shared.h54 inline bool IsSubRightSubLeftShl(HSub *sub) { in IsSubRightSubLeftShl() argument
55 HInstruction* right = sub->GetRight(); in IsSubRightSubLeftShl()
Dinstruction_simplifier_x86_shared.cc130 HSub* sub = to_test->AsSub(); in AreLeastSetBitInputs() local
131 HConstant* cst = sub->GetConstantRight(); in AreLeastSetBitInputs()
132 return cst != nullptr && cst->IsOne() && other == sub->GetLeastConstantLeft(); in AreLeastSetBitInputs()
/art/test/100-reflect2/src/sub/
DPPClass.java17 package sub; package
/art/test/142-classloader2/
Dinfo.txt1 Check sub-classing of PathClassLoader.
/art/test/961-default-iface-resolution-gen/util-src/
Dgenerate_java.py320 for sub in split:
321 if sub == 1:
326 ifaces.append(list(create_interface_trees_inner(sub, allow_default)))
335 for sub, cs in zip(split, itertools.count()):
336 if sub == 1:
339 ifaces.append(list(create_interface_trees_inner(sub, i == cs)))
/art/runtime/arch/arm64/
Dmemcmp16_arm64.S102 sub result, data1, data2
131 sub limit, limit, #1
139 sub result, data1, data2
/art/tools/
Danalyze-init-failures.py109 failed_clazz_norm = re.sub(r"^L", "", failed_clazz)
110 failed_clazz_norm = re.sub(r";$", "", failed_clazz_norm)
111 failed_clazz_norm = re.sub(r"/", "", failed_clazz_norm)
/art/runtime/arch/arm/
Dmemcmp16_arm.S79 sub r2, r2, #1
194 sub r2, r2, #8
222 sub r1, r1, #2
231 sub r1, r1, #2
Dquick_entrypoints_arm.S44 sub sp, #4 @ bottom word will hold Method*
99 sub sp, #8 @ 2 words of space, alignment padding and Method*
522 sub sp, sp, r10 @ Reserve space for callee stack
523 sub r10, r10, #4
649 sub r3, r2, #LOCK_WORD_THIN_LOCK_COUNT_ONE @ Decrement recursive lock count.
741 sub sp, #8 @ push padding
1138 sub r1, #1
1179 sub r12, r3, r12 // Compute the remaining buf size.
1265 sub r12, r12, r3 // Compute the remaining buf size.
1587 sub sp, sp, #5120
[all …]
/art/runtime/arch/x86_64/
Dmemcmp16_x86_64.S64 sub %rsi, %rcx
66 sub %rcx, %rdi
74 sub $64, %rdx
107 sub $32, %rdx
123 sub $128, %rdx
183 sub $32, %rdx
192 sub $256, %rdx
294 sub $32, %rdx
314 sub $64, %rdx
337 sub $64, %rdx
[all …]
/art/test/706-checker-scheduler/src/
DMain.java620 int sub = 0; in testCrossItersDependencies() local
623 sub -= sum; in testCrossItersDependencies()
626 expectEquals(sub, -4); in testCrossItersDependencies()
/art/test/640-checker-simd/src/
DSimdFloat.java50 static void sub(float x) { in sub() method in SimdFloat
144 sub(2.0f); in main()
DSimdDouble.java50 static void sub(double x) { in sub() method in SimdDouble
145 sub(2.0); in main()
DSimdChar.java49 static void sub(int x) { in sub() method in SimdChar
193 sub(2); in main()
/art/test/661-oat-writer-layout/
Dinfo.txt4 MethodHotness bitmask (and sub-sorts by class_def_idx, then method_id).
/art/test/571-irreducible-loop/smali/
DIrreducibleLoop.smali33 sub-float v2, v2, v1
37 sub-int p0, p0, v0
/art/test/964-default-iface-init-gen/util-src/
Dgenerate_java.py366 for sub in split:
367 ifaces.append(list(create_interface_trees(sub)))
385 for sub in split:
386 ifaces.append(list(create_interface_trees(sub)))

1234