HomeSort by: relevance | last modified time | path
    Searched defs:Fill (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TableGenBackend.cpp 22 static void printLine(raw_ostream &OS, const Twine &Prefix, char Fill,
30 OS << Fill;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormatCommon.h 23 char Fill;
26 char Fill = ' ')
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {}
52 fill(S, PadAmount);
56 fill(S, X);
58 fill(S, PadAmount - X);
62 fill(S, PadAmount);
69 void fill(llvm::raw_ostream &S, uint32_t Count) { function in struct:llvm::FmtAlign
71 S << Fill;
    [all...]
FormatAdapters.h 30 char Fill;
33 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill)
35 Fill(Fill) {}
39 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
87 char Fill = ' ') {
88 return detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, Fill);
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MachOEmitter.cpp 206 void Fill(raw_ostream &OS, size_t Size, uint32_t Data) {
257 // Fill remaining bytes with 0. This will only get hit in partially
280 // Zero Fill any data between the end of the last thing we wrote and the
312 // Fill section data with 0xDEADBEEF.
313 Fill(OS, Sec.size, 0xDEADBEEFu);
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 119 UINT8 Fill[3]; /* Prevent warning on some compilers */
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h 205 Fill = SpecialChunksStart,
276 // Fill is a block of data which is placed outside of sections. It is
279 struct Fill : Chunk {
283 Fill() : Chunk(ChunkKind::Fill, /*Implicit=*/false) {}
285 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Fill; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 243 // Extract the length and alignment and fill if they are constant.
269 // Extract the fill value and store.
270 uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
271 StoreInst *S = Builder.CreateStore(ConstantInt::get(ITy, Fill), Dest,

Completed in 29 milliseconds