Searched refs:ic (Results 1 – 10 of 10) sorted by relevance
/art/test/536-checker-needs-access-check/src/ |
D | Main.java | 50 return ic instanceof InaccessibleClass; in testInstanceOf() 78 return ic instanceof InaccessibleClass; in testDontGvnLoadClassWithAccessChecks() 81 public static InaccessibleClass ic; field in Main
|
/art/test/ti-agent/ |
D | ti_utf.h | 33 int ic = *utf8; in CountModifiedUtf8Chars() local 35 if (LIKELY((ic & 0x80) == 0)) { in CountModifiedUtf8Chars() 41 if ((ic & 0x20) == 0) { in CountModifiedUtf8Chars() 46 if ((ic & 0x10) == 0) { in CountModifiedUtf8Chars()
|
/art/dexdump/ |
D | dexdump_main.cc | 68 const int ic = getopt(argc, argv, "acdefghijl:o:"); in dexdumpDriver() local 69 if (ic < 0) { in dexdumpDriver() 72 switch (ic) { in dexdumpDriver()
|
/art/dexlayout/ |
D | dexlayout_main.cc | 89 const int ic = getopt(argc, argv, "abcdefghil:o:p:stuvw:x:"); in DexlayoutDriver() local 90 if (ic < 0) { in DexlayoutDriver() 93 switch (ic) { in DexlayoutDriver()
|
/art/libdexfile/dex/ |
D | utf.cc | 55 int ic = *utf8; in CountModifiedUtf8Chars() local 57 if (LIKELY((ic & 0x80) == 0)) { in CountModifiedUtf8Chars() 63 if ((ic & 0x20) == 0) { in CountModifiedUtf8Chars() 68 if ((ic & 0x10) == 0) { in CountModifiedUtf8Chars()
|
D | utf_test.cc | 205 int ic; in CountModifiedUtf8Chars_reference() local 206 while ((ic = *utf8++) != '\0') { in CountModifiedUtf8Chars_reference() 208 if ((ic & 0x80) == 0) { in CountModifiedUtf8Chars_reference() 214 if ((ic & 0x20) == 0) { in CountModifiedUtf8Chars_reference() 219 if ((ic & 0x10) == 0) { in CountModifiedUtf8Chars_reference()
|
/art/dexlist/ |
D | dexlist.cc | 216 const int ic = getopt(argc, argv, "o:m:"); in dexlistDriver() local 217 if (ic < 0) { in dexlistDriver() 220 switch (ic) { in dexlistDriver()
|
/art/compiler/optimizing/ |
D | induction_var_analysis.h | 101 InductionInfo(InductionClass ic, in InductionInfo() 107 : induction_class(ic), in InductionInfo() 144 InductionInfo* CreateInduction(InductionClass ic, in CreateInduction() argument 151 return new (graph_->GetAllocator()) InductionInfo(ic, op, a, b, f, type); in CreateInduction()
|
/art/runtime/jit/ |
D | jit_code_cache.h | 205 void CopyInlineCacheInto(const InlineCache& ic, Handle<mirror::ObjectArray<mirror::Class>> array)
|
D | jit_code_cache.cc | 924 void JitCodeCache::CopyInlineCacheInto(const InlineCache& ic, in CopyInlineCacheInto() argument 932 mirror::Class* object = ic.classes_[in_cache].Read(); in CopyInlineCacheInto()
|