Searched defs:entries (Results 1 - 10 of 10) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DStdConstantPool.java29 /** {@code non-null;} array of entries */
30 private final Constant[] entries; field in class:StdConstantPool
47 entries = new Constant[size];
52 return entries.length;
58 return entries[n];
77 Constant result = entries[n];
107 if (n == (entries.length - 1)) {
111 entries[n + 1] = null;
114 if ((cst != null) && (entries[n] == null)) {
119 Constant prev = entries[
[all...]
/dalvik/dx/src/com/android/dx/rop/cst/
H A DStdConstantPool.java29 /** {@code non-null;} array of entries */
30 private final Constant[] entries; field in class:StdConstantPool
47 entries = new Constant[size];
52 return entries.length;
58 return entries[n];
77 Constant result = entries[n];
107 if (n == (entries.length - 1)) {
111 entries[n + 1] = null;
114 if ((cst != null) && (entries[n] == null)) {
119 Constant prev = entries[
[all...]
/dalvik/vm/
H A DAtomicCache.h45 * struct and "entries" separately, avoiding an indirection. (We already
49 AtomicCacheEntry* entries; /* array of entries */ member in struct:AtomicCache
50 int numEntries; /* #of entries, must be power of 2 */
52 void* entryAlloc; /* memory allocated for entries */
63 * Do a cache lookup. We need to be able to read and write entries
103 pEntry = (_cache)->entries + hash; \
/dalvik/vm/compiler/codegen/x86/
H A DNcgHelper.cpp29 s4 dvmNcgHandlePackedSwitch(const s4* entries, s4 firstKey, u2 size, s4 testVal) argument
42 s4FromSwitchData(&entries[testVal - firstKey]));
43 return s4FromSwitchData(&entries[testVal - firstKey]);
47 s4 dvmJitHandlePackedSwitch(const s4* entries, s4 firstKey, u2 size, s4 testVal) argument
57 s4FromSwitchData(&entries[testVal - firstKey]));
58 return 2*s4FromSwitchData(&entries[testVal - firstKey]); //convert from u2 to byte
70 const s4* entries = keys + size; local
76 testVal, i, s4FromSwitchData(&entries[i]));
77 return s4FromSwitchData(&entries[i]);
89 const s4* entries local
[all...]
H A DLowerJump.cpp104 It takes argument checkDup, if checkDup is true, an entry is created in globalShortMap, entries in globalShortWorklist are checked, if there exists a match, the immediate in the jump instruction is updated and the entry is removed from globalShortWorklist;
819 //update entries
845 //update entries
1126 s4* entries = NULL; local
1139 s4* entries = (s4*) switchData; local
1140 assert(((u4)entries & 0x3) == 0);
1149 /* "entries" is constant for JIT
1151 move_imm_to_mem(OpndSize_32, (int)entries, 0, PhysicalReg_ESP, true);
1183 s4* entries = NULL; local
1197 s4* entries local
[all...]
/dalvik/vm/interp/
H A DInterp.cpp408 * Sometimes the debugger likes to add two entries for one breakpoint.
409 * We add two entries here, so that we get the right behavior when it's
414 * to be the only one adding entries, and the lock ensures that nobody
1004 const s4* entries; local
1009 * ushort size number of entries in the table
1033 /* The entries are guaranteed to be aligned on a 32-bit boundary;
1036 entries = (const s4*) switchData;
1037 assert(((u4)entries & 0x3) == 0);
1042 s4FromSwitchData(&entries[testVal - firstKey]));
1043 return s4FromSwitchData(&entries[testVa
1057 const s4* entries; local
[all...]
/dalvik/libdex/
H A DDexFile.h26 * obviating the need to copy code and constant pool entries into newly
256 u4 size; /* #of entries in list */
257 DexMapItem list[1]; /* entries */
326 u4 size; /* #of entries in list */
327 DexTypeItem list[1]; /* entries */
335 * debugging. An offset of zero indicates that there are no entries.
425 u4 entries[1]; /* offset to DexAnnotationItem */ member in struct:DexAnnotationSetItem
943 return pAnnoSet->entries[idx];
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp2796 const int *entries; local
2806 * ushort size number of entries in the table
2819 /* The entries are guaranteed to be aligned on a 32-bit boundary;
2822 entries = (const int*) &switchData[4];
2823 assert(((u4)entries & 0x3) == 0);
2833 caseDPCOffset = entries[index];
2848 const int *entries; local
2855 * ushort size number of entries in the table; > 0
2871 /* The entries are guaranteed to be aligned on a 32-bit boundary;
2874 entries
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DCodegenDriver.cpp2869 const int *entries; local
2877 * ushort size number of entries in the table
2890 /* The entries are guaranteed to be aligned on a 32-bit boundary;
2893 entries = (const int*) &switchData[4];
2894 assert(((u4)entries & 0x3) == 0);
2905 caseDPCOffset = entries[index];
2907 caseDPCOffset = (unsigned int)entries[index] >> 16 | entries[index] << 16;
2922 const int *entries; local
2929 * ushort size number of entries i
[all...]
/dalvik/dx/etc/
H A Djasmin.jar ... java.lang.Object { java.util.Vector entries public void " href="/4.2_r1/s?defs= ...

Completed in 387 milliseconds