Searched defs:byteCount (Results 1 - 4 of 4) sorted by relevance

/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
/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++) {
/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);
627 munmap(base, byteCount);
H A DCheckJni.cpp1708 int byteCount = strObj->length() * 2; local
1709 result = (const jchar*) GuardedCopy::create(result, byteCount, false);
1951 int byteCount = strObj->length() * 2; local
1952 result = (const jchar*) GuardedCopy::create(result, byteCount, false);

Completed in 176 milliseconds