HomeSort by relevance Sort by last modified time
    Searched refs:BytesUsed (Results 1 - 11 of 11) sorted by null

  /external/clang/lib/Lex/
ScratchBuffer.cpp 26 // Set BytesUsed so that the first call to getToken will require an alloc.
27 BytesUsed = ScratchBufSize;
36 if (BytesUsed+Len+2 > ScratchBufSize)
41 CurBuffer[BytesUsed++] = '\n';
44 DestPtr = CurBuffer+BytesUsed;
47 memcpy(CurBuffer+BytesUsed, Buf, Len);
50 BytesUsed += Len+1;
55 CurBuffer[BytesUsed-1] = '\0';
57 return BufferStartLoc.getLocWithOffset(BytesUsed-Len-1);
75 BytesUsed = 0
    [all...]
  /external/clang/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /art/runtime/
linear_alloc.cc 38 return allocator_.BytesUsed();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
txfw32.h 84 PULONG BytesUsed,
ks.h     [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 365 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
368 if (BytesUsed <= BufferBytesLeft) {
369 OutBufCur += BytesUsed;
375 NextBufferSize = BytesUsed;
387 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
389 // If BytesUsed fit into the vector, we win.
390 if (BytesUsed <= NextBufferSize)
391 return write(V.data(), BytesUsed);
394 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
395 NextBufferSize = BytesUsed;
    [all...]
  /art/runtime/base/
arena_allocator.cc 291 size_t ArenaAllocator::BytesUsed() const {
arena_allocator.h 355 // The BytesUsed method sums up bytes allocated from arenas in arena_head_ and nodes.
357 size_t BytesUsed() const;
  /hardware/intel/img/psb_video/src/
pnw_hostjpeg.h 550 IMG_UINT32 BytesUsed;
  /art/compiler/optimizing/
optimizing_compiler.cc     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
video.h 1450 IN ULONG BytesUsed);
    [all...]

Completed in 398 milliseconds