Searched defs:Pad (Results 1 - 7 of 7) sorted by relevance

/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp27 static std::string convertToString(double d, unsigned Prec, unsigned Pad) { argument
30 F.toString(Buffer, Prec, Pad);
/external/chromium/base/
H A Dsha1_portable.cc50 void Pad();
119 Pad();
136 void SecureHashAlgorithm::Pad() { function in class:base::SecureHashAlgorithm
/external/llvm/include/llvm/Support/
H A DOutputBuffer.h44 size_t Pad = Boundary - (Size & (Boundary - 1)); local
45 Output.resize(Size + Pad);
/external/clang/lib/Driver/
H A DOptTable.cpp274 int Pad = OptionFieldWidth - int(Option.size()); local
278 if (Pad < 0) {
280 Pad = OptionFieldWidth + InitialPad;
282 OS.indent(Pad + 1) << OptionHelp[i].second << '\n';
/external/clang/include/clang/Basic/
H A DOnDiskHashTable.h66 inline void Pad(raw_ostream& Out, unsigned A) { function in namespace:clang::io
216 Pad(out, 4);
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp773 uint64_t Pad = getPaddingSize(it, Layout); local
774 for (unsigned int i = 0; i < Pad; ++i)
H A DMCDwarf.cpp508 int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1)); local
509 if (Pad == 2 * AddrSize)
510 Pad = 0;
511 Length += Pad;
533 for(int i = 0; i < Pad; i++)

Completed in 154 milliseconds