Searched defs:c2 (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/hprof/
H A DHprofClass.cpp58 const ClassObject *c2 = (const ClassObject *)v2; local
61 diff = (uintptr_t)c1->classLoader - (uintptr_t)c2->classLoader;
63 return strcmp(c1->descriptor, c2->descriptor);
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java513 * @param c2 code unit to write
516 short c2) {
519 out.writeShort(c2);
528 * @param c2 code unit to write
532 short c2, short c3) {
535 out.writeShort(c2);
545 * @param c2 code unit to write
550 short c2, short c3, short c4) {
553 out.writeShort(c2);
564 * @param c2 cod
515 write(AnnotatedOutput out, short c0, short c1, short c2) argument
531 write(AnnotatedOutput out, short c0, short c1, short c2, short c3) argument
549 write(AnnotatedOutput out, short c0, short c1, short c2, short c3, short c4) argument
569 write(AnnotatedOutput out, short c0, short c1, short c2, short c3, short c4, short c5) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java611 * @param c2 code unit to write
614 short c2) {
617 out.writeShort(c2);
626 * @param c2 code unit to write
630 short c2, short c3) {
633 out.writeShort(c2);
643 * @param c2 code unit to write
648 short c2, short c3, short c4) {
651 out.writeShort(c2);
613 write(AnnotatedOutput out, short c0, short c1, short c2) argument
629 write(AnnotatedOutput out, short c0, short c1, short c2, short c3) argument
647 write(AnnotatedOutput out, short c0, short c1, short c2, short c3, short c4) argument
/dalvik/libdex/
H A DDexProto.cpp421 char c2 = (descriptor < nextDesc) ? *(descriptor++) : '\0'; local
423 if (c1 < c2) {
426 } else if (c1 > c2) {
430 // The two types are equal in length. (c2 necessarily == '\0'.)
/dalvik/vm/analysis/
H A DCodeVerify.cpp119 static ClassObject* findCommonSuperclass(ClassObject* c1, ClassObject* c2);
2310 static ClassObject* digForSuperclass(ClassObject* c1, ClassObject* c2) argument
2315 depth2 = getClassDepth(c2);
2319 c1->descriptor, depth1, c2->descriptor, depth2);
2330 c2 = c2->super;
2336 while (c1 != c2) {
2338 c2 = c2->super;
2340 assert(c1 != NULL && c2 !
2372 findCommonArraySuperclass(ClassObject* c1, ClassObject* c2) argument
2462 findCommonSuperclass(ClassObject* c1, ClassObject* c2) argument
[all...]

Completed in 21 milliseconds