Searched refs:byteCount (Results 1 - 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java281 int byteCount;
283 byteCount = 1;
285 byteCount = 2;
287 byteCount = 3;
289 byteCount = 4;
291 int argAndType = ((byteCount - 1) << 5) | type;
294 for (int i = 0; i < byteCount; i++) {
H A DDexMerger.java1019 typeList += contents.typeLists.byteCount;
1020 stringData += contents.stringDatas.byteCount;
1021 annotationsDirectory += contents.annotationsDirectories.byteCount;
1022 annotationsSet += contents.annotationSets.byteCount;
1023 annotationsSetRefList += contents.annotationSetRefLists.byteCount;
1026 code += contents.codes.byteCount;
1027 classData += contents.classDatas.byteCount;
1028 encodedArray += contents.encodedArrays.byteCount;
1029 annotation += contents.annotations.byteCount;
1030 debugInfo += contents.debugInfos.byteCount;
[all...]
/dalvik/dx/src/com/android/dx/io/
H A DEncodedValueReader.java137 private int readIndex(ByteInput in, int byteCount) { argument
140 for (int i = 0; i < byteCount; i++) {
H A DDexIndexPrinter.java41 + " byteCount=" + Integer.toHexString(section.byteCount));
/dalvik/vm/
H A DMisc.cpp612 void *dvmAllocRegion(size_t byteCount, int prot, const char *name) { argument
616 byteCount = ALIGN_UP_TO_PAGE_SIZE(byteCount);
617 fd = ashmem_create_region(name, byteCount);
621 base = mmap(NULL, byteCount, prot, MAP_PRIVATE, fd, 0);
H A DCheckJni.cpp1697 int byteCount = strObj->length() * 2; local
1698 result = (const jchar*) GuardedCopy::create(result, byteCount, false);
1940 int byteCount = strObj->length() * 2; local
1941 result = (const jchar*) GuardedCopy::create(result, byteCount, false);
/dalvik/dx/src/com/android/dx/dex/
H A DTableOfContents.java154 section.byteCount = end - section.off;
217 public int byteCount = 0; field in class:TableOfContents.Section

Completed in 7076 milliseconds