HomeSort by relevance Sort by last modified time
    Searched defs:BytesUsed (Results 1 - 3 of 3) 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] =
  /external/clang/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /external/llvm/lib/Support/
raw_ostream.cpp 357 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
360 if (BytesUsed <= BufferBytesLeft) {
361 OutBufCur += BytesUsed;
367 NextBufferSize = BytesUsed;
379 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
381 // If BytesUsed fit into the vector, we win.
382 if (BytesUsed <= NextBufferSize)
383 return write(V.data(), BytesUsed);
386 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
387 NextBufferSize = BytesUsed;
    [all...]

Completed in 103 milliseconds