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

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
bytesused.cpp 31 Pathname: ./audio/gsm-amr/c/src/BytesUsed.c
75 This function creates a table called BytesUsed that holds the value that
155 const short BytesUsed[16] =
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
bytesused.h 31 Pathname: .audio/gsm-amr/c/include/BytesUsed.h
44 This file declares a table BytesUsed.
79 extern const short BytesUsed[];
  /external/clang/lib/Lex/
ScratchBuffer.cpp 25 // Set BytesUsed so that the first call to getToken will require an alloc.
26 BytesUsed = ScratchBufSize;
35 if (BytesUsed+Len+2 > ScratchBufSize)
40 CurBuffer[BytesUsed++] = '\n';
43 DestPtr = CurBuffer+BytesUsed;
46 memcpy(CurBuffer+BytesUsed, Buf, Len);
49 BytesUsed += Len+1;
54 CurBuffer[BytesUsed-1] = '\0';
56 return BufferStartLoc.getLocWithOffset(BytesUsed-Len-1);
71 BytesUsed = 1
    [all...]
  /external/clang/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /external/llvm/lib/Support/
raw_ostream.cpp 350 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
353 if (BytesUsed <= BufferBytesLeft) {
354 OutBufCur += BytesUsed;
360 NextBufferSize = BytesUsed;
372 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
374 // If BytesUsed fit into the vector, we win.
375 if (BytesUsed <= NextBufferSize)
376 return write(V.data(), BytesUsed);
379 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
380 NextBufferSize = BytesUsed;
    [all...]

Completed in 137 milliseconds