Lines Matching refs:size

45                      k3, k3s, k3e, flags, name, fmt, size) \
47 {k3, k3s, k3e}}, opcode, flags, name, fmt, size}
552 assert(encoder->size == 2);
570 /* Reserved for the size field of class pointer pool */
607 * | # Class pointer pool size | -> 4 bytes
609 * | Class pointer pool | -> 4-byte aligned, variable size
614 * | Literal pool | -> 4-byte aligned, variable size
663 /* 4 is the size of the profile count */
669 /* Get the size of all chaining cells */
695 /* Get the size of a trace description */
711 unsigned int size)
716 for (i = 0; i < size - gDvmJit.signatureBreakpointSize + 1; i++) {
761 mipsLIR->flags.size = EncodingMap[mipsLIR->opcode].size * 2;
762 offset += mipsLIR->flags.size;
922 /* transfer the size of the profiling code */
1757 * Load the specified size of data from the specified address, checking
1761 static int selfVerificationLoad(int addr, int size)
1780 switch (size) {
1797 ALOGE("*** ERROR: BAD SIZE IN selfVerificationLoad: %d", size);
1802 //ALOGD("*** HEAP LOAD: Addr: %#x Data: %#x Size: %d", addr, data, size);
1833 * Handles a store of a specified size of data to a specified address.
1838 static void selfVerificationStore(int addr, int data, int size)
1848 //ALOGD("*** HEAP STORE: Addr: %#x Data: %#x Size: %d", addr, data, size);
1862 switch (size) {
1879 ALOGE("*** ERROR: BAD SIZE IN selfVerificationSave: %d", size);
2001 int size = kSVWord;
2043 // Determine the size of the mem access
2049 size = kSVByte;
2053 size = kSVSignedByte;
2059 size = kSVHalfword;
2063 size = kSVSignedHalfword;
2069 if (opcode4 == kMemOp2Double) size = kSVDoubleword;
2075 size = kSVVariable;
2136 if (size == kSVVariable) {
2149 } else if (size == kSVDoubleword) {
2154 selfVerificationStore(addr+offset, data, size);
2157 if (size == kSVVariable) {
2170 } else if (size == kSVDoubleword) {
2174 data = selfVerificationLoad(addr+offset, size);
2209 // Determine the size of the mem access
2216 size = kSVByte;
2219 size = kSVSignedByte;
2223 size = kSVHalfword;
2226 size = kSVSignedHalfword;
2232 size = kSVByte;
2236 size = kSVHalfword;
2240 size = kSVVariable;
2286 if (size == kSVVariable) {
2300 selfVerificationStore(addr+offset, data, size);
2303 if (size == kSVVariable) {
2318 data = selfVerificationLoad(addr+offset, size);