Home
last modified time | relevance | path

Searched refs:b (Results 351 – 375 of 485) sorted by relevance

1...<<11121314151617181920

/art/runtime/gc/collector/
Dimmune_spaces_test.cc175 FakeSpace b(a.Limit(), a.Limit() + 813 * KB); in TEST_F() local
179 spaces.AddSpace(&b); in TEST_F()
182 EXPECT_TRUE(spaces.ContainsSpace(&b)); in TEST_F()
184 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit()); in TEST_F()
/art/compiler/debug/
Delf_debug_writer.cc77 [](const MethodDebugInfo* a, const MethodDebugInfo* b) { in WriteDebugInfo() argument
78 return a->code_address < b->code_address; in WriteDebugInfo()
84 [](ElfCompilationUnit& a, ElfCompilationUnit& b) { in WriteDebugInfo() argument
88 return a.methods.front() < b.methods.front(); in WriteDebugInfo()
/art/test/004-JniTest/
Djni_test.cc33 static jint Java_Main_intFastNativeMethod(JNIEnv*, jclass, jint a, jint b, jint c);
34 static jint Java_Main_intCriticalNativeMethod(jint a, jint b, jint c);
494 jboolean b = env_->GetBooleanField(o, f); in GetBooleanField() local
499 return b; in GetBooleanField()
778 static jint Java_Main_intFastNativeMethod(JNIEnv*, jclass, jint a, jint b, jint c) { in Java_Main_intFastNativeMethod() argument
779 return a + b + c; in Java_Main_intFastNativeMethod()
784 static jint Java_Main_intCriticalNativeMethod(jint a, jint b, jint c) { in Java_Main_intCriticalNativeMethod() argument
786 return a + b + c; in Java_Main_intCriticalNativeMethod()
/art/libnativebridge/
Dlibnativebridge.map.txt17 # TODO(b/122710865): Most of these uses come from libnativeloader, which should be bundled
/art/test/165-lock-owner-proxy/src/
DMain.java105 byte b[] = new byte[i * 100 + 10]; in run()
/art/tools/build/
Dvar_list36 # b/62653020
/art/libartbase/base/unix_file/
Dfd_file_test.cc234 auto reset_compare = [&](art::ScratchFile& a, art::ScratchFile& b) { in TEST_F() argument
236 b.GetFile()->ResetOffset(); in TEST_F()
237 return a.GetFile()->Compare(b.GetFile()); in TEST_F()
/art/runtime/gc/space/
Dlarge_object_space.cc352 const AllocationInfo* b) const { in operator ()()
353 if (a->GetPrevFree() < b->GetPrevFree()) return true; in operator ()()
354 if (a->GetPrevFree() > b->GetPrevFree()) return false; in operator ()()
355 if (a->AlignSize() < b->AlignSize()) return true; in operator ()()
356 if (a->AlignSize() > b->AlignSize()) return false; in operator ()()
357 return reinterpret_cast<uintptr_t>(a) < reinterpret_cast<uintptr_t>(b); in operator ()()
Dmemory_tool_malloc_space-inl.h256 std::sort(ptrs, ptrs + num_ptrs, [](mirror::Object* a, mirror::Object* b) in FreeList()
258 return a->IsClass() < b->IsClass(); in FreeList()
/art/compiler/driver/
Dcompiler_options_map-inl.h108 inline void AddCompilerOptionsArgumentParserOptions(Builder& b) { in AddCompilerOptionsArgumentParserOptions() argument
109 b. in AddCompilerOptionsArgumentParserOptions()
/art/test/674-hiddenapi/
Dinfo.txt11 (b) Parent is appended to boot class path, child is loaded with PathClassLoader.
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S658 b .Lretry_unlock @ retry
1505 b .Limt_table_iterate
1555 b .Limt_table_iterate
1998 b .Lstring_indexof_compressed_loop
2044 b art_d2l
2051 b art_f2l
2276 b art_quick_read_barrier_mark_introspection // Should be 2 bytes, encoding T2.
2351 b .Lmark_introspection_return\label_suffix
2392 b .Lmark_introspection_runtime_call
2502 b .Lmark_introspection_return_switch
[all …]
/art/compiler/utils/
Dswap_space.h64 bool operator()(const SpaceChunk& a, const SpaceChunk& b) const { in operator()
65 return reinterpret_cast<uintptr_t>(a.ptr) < reinterpret_cast<uintptr_t>(b.ptr); in operator()
/art/runtime/native/
Dlibcore_util_CharsetUtils.cc58 bool append(jbyte b) { in append() argument
62 mRawArray[mOffset++] = b; in append()
/art/test/989-method-trace-throw/src/art/
DTest989.java394 } catch (ErrorB b) { in tryCatchExit()
395 System.out.println("ERROR: Caught " + b); in tryCatchExit()
396 b.printStackTrace(); in tryCatchExit()
/art/compiler/optimizing/
Dreference_type_propagation.cc781 const ReferenceTypeInfo& b, in MergeTypes() argument
783 if (!b.IsValid()) { in MergeTypes()
787 return b; in MergeTypes()
790 bool is_exact = a.IsExact() && b.IsExact(); in MergeTypes()
793 ReferenceTypeInfo::TypeHandle b_type_handle = b.GetTypeHandle(); in MergeTypes()
797 if (a.GetTypeHandle().Get() == b.GetTypeHandle().Get()) { in MergeTypes()
799 } else if (a.IsSupertypeOf(b)) { in MergeTypes()
802 } else if (b.IsSupertypeOf(a)) { in MergeTypes()
Dloop_optimization.h101 ArrayReference(HInstruction* b, HInstruction* o, DataType::Type t, bool l, bool c = false)
102 : base(b), offset(o), type(t), lhs(l), is_string_char_at(c) { } in base()
Dinstruction_simplifier.cc877 static bool AreLowerPrecisionArgs(DataType::Type to_type, HInstruction* a, HInstruction* b) { in AreLowerPrecisionArgs() argument
881 if (b->IsTypeConversion() && b->GetType() == to_type) { in AreLowerPrecisionArgs()
882 b = b->InputAt(0); in AreLowerPrecisionArgs()
885 DataType::Type type2 = b->GetType(); in AreLowerPrecisionArgs()
898 HInstruction* b, in AllowInMinMax() argument
901 if (IsInt64AndGet(b, /*out*/ &value) && in AllowInMinMax()
957 HInstruction* b = condition->InputAt(1); in VisitSelect() local
968 HInstruction* new_a = AllowInMinMax(cmp, a, b, true_value); in VisitSelect()
974 ((a == true_value && b == false_value) || in VisitSelect()
975 (b == true_value && a == false_value))) { in VisitSelect()
[all …]
/art/test/527-checker-array-access-split/src/
DMain.java618 public final static int checkObjectArrayGet(int index, Integer[] a, Integer[] b) { in checkObjectArrayGet() argument
/art/test/536-checker-intrinsic-optimization/src/
DMain.java338 public static boolean $inline$callStringEquals(String a, String b) { in $inline$callStringEquals() argument
339 return a.equals(b); in $inline$callStringEquals()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DValue.java269 ByteValue(byte b) { in ByteValue() argument
270 mByte = b; in ByteValue()
/art/runtime/arch/x86_64/
Dasm_support_x86_64.S124 MACRO3(CFI_EXPRESSION_BREG, n, b, offset)
126 CFI_EXPRESSION_BREG_1(\n, \b, \offset)
128 CFI_EXPRESSION_BREG_2(\n, \b, \offset)
/art/test/980-redefine-object/
Dinfo.txt17 class itself, and (b) it adds an
/art/test/031-class-attributes/jasmin/
DClassAttrs$1.j32 ; does not. See http://b/62290080
/art/test/098-ddmc/
Dexpected.txt8 Confirm when we overflow, we don't roll over to zero. b/17392248

1...<<11121314151617181920