Lines Matching defs:size

20  * space choices are weighted heavily toward small size.
476 * encoded_array format, which is a size followed by a stream
485 u4 size, count;
487 size = readUleb128(&ptr);
488 LOGVV("--- annotation array, size is %u at %p", size, ptr);
490 size, ALLOC_DEFAULT);
492 ALOGE("annotation element array alloc failed (%d)", size);
497 for (count = 0; count < size; count++) {
746 u4 typeIdx, size, count;
750 size = readUleb128(&ptr);
752 LOGVV("----- processEnc ptr=%p type=%d size=%d", ptr, typeIdx, size);
765 ALOGV("----- processEnc ptr=%p [0x%06x] typeIdx=%d size=%d class=%s",
767 typeIdx, size, annoClass->descriptor);
776 if (size > 0) {
779 size, ALLOC_DEFAULT);
782 size);
788 * "ptr" points to a byte stream with "size" occurrences of
791 for (count = 0; count < size; count++) {
844 for (i = count = 0; i < (int) pAnnoSet->size; i++) {
861 for (i = 0; i < (int) pAnnoSet->size; i++) {
899 for (i = 0; i < (int) pAnnoSet->size; i++) {
984 u4 size = readUleb128(&ptr);
985 while (size--) {
1021 u4 size;
1025 size = readUleb128(&ptr);
1028 * "ptr" points to a byte stream with "size" occurrences of
1031 while (size--) {
1077 for (i = 0; i < (int) pAnnoSet->size; i++) {
1104 u4 typeIdx, size;
1107 size = readUleb128(&ptr);
1108 //printf("##### searching ptr=%p type=%u size=%u\n", ptr, typeIdx, size);
1110 while (size--) {
2089 emptySet.size = 0;
2196 u4 size;
2198 size = dexGetParameterAnnotationSetRefSize(pDexFile, pItem);
2200 annoArrayArray = processAnnotationSetRefList(clazz, pAnnoSetList, size);
2227 iterator->size = readUleb128(&iterator->cursor);
2228 iterator->elementsLeft = iterator->size;
2264 iterator->size - iterator->elementsLeft,