Searched refs:numBytes (Results 1 - 6 of 6) sorted by relevance

/dalvik/vm/alloc/
H A DMarkSweep.h61 size_t *numObjects, size_t *numBytes);
H A DMarkSweep.cpp859 size_t numBytes; member in struct:SweepContext
870 ctx->numBytes += dvmHeapSourceFreeList(numPtrs, ptrs);
915 size_t *numObjects, size_t *numBytes)
931 ctx.numObjects = ctx.numBytes = 0;
940 *numBytes = ctx.numBytes;
943 gDvm.allocProf.freeSize += ctx.numBytes;
914 dvmHeapSweepUnmarkedObjects(bool isPartial, bool isConcurrent, size_t *numObjects, size_t *numBytes) argument
H A DHeapSource.cpp291 static void countFree(Heap *heap, const void *ptr, size_t *numBytes) argument
305 *numBytes += delta;
1081 size_t numBytes = 0; local
1093 countFree(heap, ptrs[i], &numBytes);
1102 countFree(heap, ptrs[i], &numBytes);
1106 return numBytes;
/dalvik/hit/src/com/android/hit/
H A DClassInstance.java33 public final void loadFieldData(DataInputStream in, int numBytes) argument
35 mFieldValues = new byte[numBytes];
H A DHprofParser.java604 private void skipFully(long numBytes) throws IOException { argument
605 while (numBytes > 0) {
606 long skipped = mInput.skip(numBytes);
608 numBytes -= skipped;
/dalvik/vm/compiler/codegen/x86/libenc/
H A Denc_wrapper.cpp154 unsigned numBytes = DecoderBase::decode(stream_start, &decInst); local
156 return numBytes;
173 unsigned numBytes = DecoderBase::decode(stream, &decInst); local
174 return numBytes;
184 unsigned numBytes = DecoderBase::decode(stream, &decInst); local
364 unsigned numBytes = DecoderBase::decode(stream, &decInst); local
555 unsigned numBytes = DecoderBase::decode(stream, &decInst); local
557 return (stream + numBytes);

Completed in 92 milliseconds