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 | 73 const int ic = getopt(argc, argv, "acdefghil:o:"); in dexdumpDriver() local 74 if (ic < 0) { in dexdumpDriver() 77 switch (ic) { in dexdumpDriver()
|
/art/runtime/ |
D | utf.cc | 51 int ic = *utf8; in CountModifiedUtf8Chars() local 53 if (LIKELY((ic & 0x80) == 0)) { in CountModifiedUtf8Chars() 59 if ((ic & 0x20) == 0) { in CountModifiedUtf8Chars() 64 if ((ic & 0x10) == 0) { in CountModifiedUtf8Chars()
|
D | utf_test.cc | 203 int ic; in CountModifiedUtf8Chars_reference() local 204 while ((ic = *utf8++) != '\0') { in CountModifiedUtf8Chars_reference() 206 if ((ic & 0x80) == 0) { in CountModifiedUtf8Chars_reference() 212 if ((ic & 0x20) == 0) { in CountModifiedUtf8Chars_reference() 217 if ((ic & 0x10) == 0) { in CountModifiedUtf8Chars_reference()
|
/art/dexlayout/ |
D | dexlayout_main.cc | 80 const int ic = getopt(argc, argv, "abcdefghil:mo:p:stvw:"); in DexlayoutDriver() local 81 if (ic < 0) { in DexlayoutDriver() 84 switch (ic) { in DexlayoutDriver()
|
/art/dexlist/ |
D | dexlist.cc | 225 const int ic = getopt(argc, argv, "o:m:"); in dexlistDriver() local 226 if (ic < 0) { in dexlistDriver() 229 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_->GetArena()) InductionInfo(ic, op, a, b, f, type); in CreateInduction()
|
/art/runtime/jit/ |
D | jit_code_cache.h | 178 void CopyInlineCacheInto(const InlineCache& ic, Handle<mirror::ObjectArray<mirror::Class>> array)
|
D | jit_code_cache.cc | 512 void JitCodeCache::CopyInlineCacheInto(const InlineCache& ic, in CopyInlineCacheInto() argument 520 mirror::Class* object = ic.classes_[in_cache].Read(); in CopyInlineCacheInto()
|