HomeSort by: relevance | last modified time | path
    Searched refs:BytesUsed (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/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)
48 CurBuffer[BytesUsed++] = '\n';
51 DestPtr = CurBuffer+BytesUsed;
54 memcpy(CurBuffer+BytesUsed, Buf, Len);
57 BytesUsed += Len+1;
62 CurBuffer[BytesUsed-1] = '\0';
64 return BufferStartLoc.getLocWithOffset(BytesUsed-Len-1);
82 BytesUsed = 0
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
ScratchBuffer.h 28 unsigned BytesUsed;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeViewRecordIO.h 253 uint32_t BytesUsed = CurrentOffset - BeginOffset;
254 if (BytesUsed >= *MaxLength)
256 return *MaxLength - BytesUsed;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 42 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 std::vector<uint8_t> BytesUsed;
48 BytesUsed.resize(Pos + Size);
50 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 315 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
318 if (BytesUsed <= BufferBytesLeft) {
319 OutBufCur += BytesUsed;
325 NextBufferSize = BytesUsed;
337 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
339 // If BytesUsed fit into the vector, we win.
340 if (BytesUsed <= NextBufferSize)
341 return write(V.data(), BytesUsed);
344 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
345 NextBufferSize = BytesUsed;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 207 // used region (see AccumBitVector::BytesUsed in
228 ArrayRef<uint8_t> VTUsed = IsAfter ? Target.TM->Bits->After.BytesUsed
229 : Target.TM->Bits->Before.BytesUsed;

Completed in 38 milliseconds