Home | History | Annotate | Download | only in system

Lines Matching defs:bytes

33         // Dalvik has 32bit pointers, the array header is 16bytes plus 4bytes for dlmalloc,
34 // allocations are 8byte aligned so having 4bytes of array data avoids padding.
39 int bytes = 20 + (2 * minLength);
40 int alignedUpBytes = (bytes + 7) & -8;
48 int bytes = 20 + minLength;
49 int alignedUpBytes = (bytes + 7) & -8;
54 int bytes = 20 + minLength;
55 int alignedUpBytes = (bytes + 7) & -8;
60 int bytes = 20 + (2 * minLength);
61 int alignedUpBytes = (bytes + 7) & -8;