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.cpp858 size_t numBytes; member in struct:SweepContext
869 ctx->numBytes += dvmHeapSourceFreeList(numPtrs, ptrs);
914 size_t *numObjects, size_t *numBytes)
930 ctx.numObjects = ctx.numBytes = 0;
939 *numBytes = ctx.numBytes;
942 gDvm.allocProf.freeSize += ctx.numBytes;
913 dvmHeapSweepUnmarkedObjects(bool isPartial, bool isConcurrent, size_t *numObjects, size_t *numBytes) argument
H A DHeapSource.cpp281 static void countFree(Heap *heap, const void *ptr, size_t *numBytes) argument
295 *numBytes += delta;
991 size_t numBytes = 0; local
1003 countFree(heap, ptrs[i], &numBytes);
1012 countFree(heap, ptrs[i], &numBytes);
1016 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 192 milliseconds