/dalvik/vm/mterp/c/ |
OP_CONST_WIDE.c | 6 tmp = FETCH(1); 7 tmp |= (u8)FETCH(2) << 16; 8 tmp |= (u8)FETCH(3) << 32; 9 tmp |= (u8)FETCH(4) << 48;
|
OP_CONST.c | 6 tmp = FETCH(1); 7 tmp |= (u4)FETCH(2) << 16;
|
OP_THROW_VERIFICATION_ERROR.c | 4 ref = FETCH(1); /* class/field/method ref */
|
OP_CONST_WIDE_32.c | 6 tmp = FETCH(1); 7 tmp |= (u4)FETCH(2) << 16;
|
OP_MOVE_16.c | 2 vdst = FETCH(1); 3 vsrc1 = FETCH(2);
|
OP_MOVE_WIDE_16.c | 2 vdst = FETCH(1); 3 vsrc1 = FETCH(2);
|
OP_CONST_16.c | 3 vsrc1 = FETCH(1);
|
OP_CONST_HIGH16.c | 3 vsrc1 = FETCH(1);
|
OP_CONST_WIDE_16.c | 3 vsrc1 = FETCH(1);
|
OP_CONST_WIDE_HIGH16.c | 3 vsrc1 = FETCH(1);
|
OP_CONST_STRING_JUMBO.c | 7 tmp = FETCH(1); 8 tmp |= (u4)FETCH(2) << 16;
|
OP_GOTO_32.c | 3 s4 offset = FETCH(1); /* low-order 16 bits */ 4 offset |= ((s4) FETCH(2)) << 16; /* high-order 16 bits */
|
OP_FILL_ARRAY_DATA.c | 9 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
|
OP_PACKED_SWITCH.c | 8 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
|
OP_SPARSE_SWITCH.c | 8 offset = FETCH(1) | (((s4) FETCH(2)) << 16);
|
OP_CONST_CLASS.c | 6 ref = FETCH(1);
|
OP_CONST_STRING.c | 6 ref = FETCH(1);
|
OP_GOTO_16.c | 3 s4 offset = (s2) FETCH(1); /* sign-extend next code unit */
|
/external/e2fsprogs/tests/progs/test_data/ |
test.icount | 12 fetch 0 16 fetch 20001 21 # OK, now let's test fetch and store. We also test the boundary cases 24 fetch 1 26 fetch 1 28 fetch 1 30 fetch 1 32 fetch 1 34 fetch 1 35 fetch 2000 [all...] |
expect.icount | 5 test_icount: fetch 0 6 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch 13 test_icount: fetch 20001 14 fetch: Invalid argument passed to ext2 library while calling ext2fs_icount_fetch 21 test_icount: fetch 1 24 test_icount: fetch 1 27 test_icount: fetch 1 30 test_icount: fetch 1 33 test_icount: fetch 1 36 test_icount: fetch [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_CONST_WIDE.S | 3 FETCH(r0, 1) @ r0<- bbbb (low) 4 FETCH(r1, 2) @ r1<- BBBB (low middle) 5 FETCH(r2, 3) @ r2<- hhhh (high middle) 7 FETCH(r3, 4) @ r3<- HHHH (high)
|
OP_CONST.S | 4 FETCH(r0, 1) @ r0<- bbbb (low) 5 FETCH(r1, 2) @ r1<- BBBB (high)
|
OP_MOVE_16.S | 4 FETCH(r1, 2) @ r1<- BBBB 5 FETCH(r0, 1) @ r0<- AAAA
|
OP_MOVE_WIDE_16.S | 4 FETCH(r3, 2) @ r3<- BBBB 5 FETCH(r2, 1) @ r2<- AAAA
|
/external/e2fsprogs/tests/progs/ |
test_icount_cmds.ct | 16 request do_fetch, "Fetch an icount entry", 17 fetch;
|