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

1 2 3

  /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/llvm/unittests/Transforms/IPO/
WholeProgramDevirt.cpp 20 VT1.Before.BytesUsed = {1 << 0};
21 VT1.After.BytesUsed = {1 << 1};
25 VT2.Before.BytesUsed = {1 << 1};
26 VT2.After.BytesUsed = {1 << 0};
56 VT1.After.BytesUsed = {0xff, 0, 0, 0, 0xff};
57 VT2.After.BytesUsed = {0xff, 1, 0, 0, 0};
88 EXPECT_EQ(std::vector<uint8_t>{1}, VT1.Before.BytesUsed);
90 EXPECT_EQ(std::vector<uint8_t>{1}, VT2.Before.BytesUsed);
98 EXPECT_EQ(std::vector<uint8_t>{0x81}, VT1.Before.BytesUsed);
100 EXPECT_EQ(std::vector<uint8_t>{0x81}, VT2.Before.BytesUsed);
    [all...]
  /external/clang/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Lex/
ScratchBuffer.h 29 unsigned BytesUsed;
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 349 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
352 if (BytesUsed <= BufferBytesLeft) {
353 OutBufCur += BytesUsed;
359 NextBufferSize = BytesUsed;
371 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
373 // If BytesUsed fit into the vector, we win.
374 if (BytesUsed <= NextBufferSize)
375 return write(V.data(), BytesUsed);
378 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
379 NextBufferSize = BytesUsed;
    [all...]
  /external/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
40 std::vector<uint8_t> BytesUsed;
45 BytesUsed.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CodeViewRecordIO.h 154 uint32_t BytesUsed = CurrentOffset - BeginOffset;
155 if (BytesUsed >= *MaxLength)
157 return *MaxLength - BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
40 std::vector<uint8_t> BytesUsed;
45 BytesUsed.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
CodeViewRecordIO.h 155 uint32_t BytesUsed = CurrentOffset - BeginOffset;
156 if (BytesUsed >= *MaxLength)
158 return *MaxLength - BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
40 std::vector<uint8_t> BytesUsed;
45 BytesUsed.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
CodeViewRecordIO.h 155 uint32_t BytesUsed = CurrentOffset - BeginOffset;
156 if (BytesUsed >= *MaxLength)
158 return *MaxLength - BytesUsed;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
40 std::vector<uint8_t> BytesUsed;
45 BytesUsed.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);

Completed in 1052 milliseconds

1 2 3