/dalvik/vm/mterp/c/ |
OP_THROW_VERIFICATION_ERROR_JUMBO.cpp | 3 vsrc1 = FETCH(3); 4 ref = FETCH(1) | (u4)FETCH(2) << 16; /* class/field/method ref */
|
OP_CONST_WIDE.cpp | 6 tmp = FETCH(1); 7 tmp |= (u8)FETCH(2) << 16; 8 tmp |= (u8)FETCH(3) << 32; 9 tmp |= (u8)FETCH(4) << 48;
|
OP_CONST.cpp | 6 tmp = FETCH(1); 7 tmp |= (u4)FETCH(2) << 16;
|
OP_CONST_CLASS_JUMBO.cpp | 5 ref = FETCH(1) | (u4)FETCH(2) << 16; 6 vdst = FETCH(3);
|
OP_THROW_VERIFICATION_ERROR.cpp | 4 ref = FETCH(1); /* class/field/method ref */
|
OP_CONST_WIDE_32.cpp | 6 tmp = FETCH(1); 7 tmp |= (u4)FETCH(2) << 16;
|
OP_MOVE_16.cpp | 2 vdst = FETCH(1); 3 vsrc1 = FETCH(2);
|
OP_MOVE_WIDE_16.cpp | 2 vdst = FETCH(1); 3 vsrc1 = FETCH(2);
|
OP_CHECK_CAST_JUMBO.cpp | 8 ref = FETCH(1) | (u4)FETCH(2) << 16; /* class to check against */ 9 vsrc1 = FETCH(3);
|
OP_CONST_16.cpp | 3 vsrc1 = FETCH(1);
|
OP_CONST_HIGH16.cpp | 3 vsrc1 = FETCH(1);
|
OP_CONST_WIDE_16.cpp | 3 vsrc1 = FETCH(1);
|
OP_CONST_WIDE_HIGH16.cpp | 3 vsrc1 = FETCH(1);
|
OP_INSTANCE_OF_JUMBO.cpp | 6 ref = FETCH(1) | (u4)FETCH(2) << 16; /* class to check against */ 7 vdst = FETCH(3); 8 vsrc1 = FETCH(4); /* object to check */
|
OP_NEW_ARRAY_JUMBO.cpp | 9 ref = FETCH(1) | (u4)FETCH(2) << 16; 10 vdst = FETCH(3); 11 vsrc1 = FETCH(4); /* length reg */
|
OP_CONST_STRING_JUMBO.cpp | 7 tmp = FETCH(1); 8 tmp |= (u4)FETCH(2) << 16;
|
OP_GOTO_32.cpp | 3 s4 offset = FETCH(1); /* low-order 16 bits */ 4 offset |= ((s4) FETCH(2)) << 16; /* high-order 16 bits */
|
/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_THROW_VERIFICATION_ERROR_JUMBO.S | 8 FETCH(r1, 1) @ r1<- aaaa (lo) 9 FETCH(r2, 2) @ r2<- AAAA (hi) 13 FETCH(r1, 3) @ r1<- BBBB
|
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_INVOKE_INTERFACE_JUMBO.S | 8 FETCH(r2, 4) @ r2<- CCCC 9 FETCH(r0, 1) @ r0<- aaaa (lo) 10 FETCH(r1, 2) @ r1<- AAAA (hi)
|
/external/chromium/net/tools/fetch/ |
http_server.cc | 5 #include "net/tools/fetch/http_server.h" 6 #include "net/tools/fetch/http_listen_socket.h"
|