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

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
reloc.s 10 # Pad out to a good alignment
katmai.s 162 # Pad out to good alignment
  /external/autotest/client/cros/camera/
camera_utils.py 10 def Pad(x):
  /external/libchrome/base/
sha1_portable.cc 51 void Pad();
117 Pad();
134 void SecureHashAlgorithm::Pad() {
138 // pad out to next block
  /external/libchrome/base/strings/
safe_sprintf.cc 174 // to be emitted. The |pad| character is typically either a ' ' space
178 inline bool Pad(char pad, size_t padding, size_t len) {
179 DEBUG_CHECK(pad);
182 if (!Out(pad)) {
218 // the left of |padding|, if |pad| is '0'; and to the right of |padding|
219 // if |pad| is ' '.
223 char pad, size_t padding, const char* prefix);
279 char pad, size_t padding, const char* prefix) {
285 DEBUG_CHECK(pad == '0' || pad == ' ')
446 char pad; local
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 291 char Pad = ' ', Byte = ' ';
297 Pad = '~';
300 char Buffer[] = { Pad, Pad, P == Loc ? '^' : Byte, Byte, 0 };
  /external/llvm/lib/Option/
OptTable.cpp 354 int Pad = OptionFieldWidth - int(Option.size());
358 if (Pad < 0) {
360 Pad = OptionFieldWidth + InitialPad;
362 OS.indent(Pad + 1) << OptionHelp[i].second << '\n';
  /external/v8/src/snapshot/
partial-serializer.cc 40 Pad();
startup-serializer.cc 92 Pad();
serializer.h 201 void Pad();
code-serializer.cc 34 cs.Pad();
  /art/compiler/debug/dwarf/
headers.h 74 writer.Pad(is64bit ? 8 : 4);
121 writer.Pad(is64bit ? 8 : 4);
writer.h 158 void Pad(int alignment) {
  /external/llvm/lib/Object/
ArchiveWriter.cpp 126 // Pad so that even 64 bit object files are aligned.
127 unsigned Pad = OffsetToAlignment(PosAfterHeader, 8);
128 unsigned NameWithPadding = Name.size() + Pad;
134 while (Pad--)
281 unsigned Pad = OffsetToAlignment(Out.tell(), 4);
282 while (Pad--)
  /external/llvm/lib/Support/
raw_ostream.cpp 446 int Pad = FN.Width - Len;
448 --Pad;
449 if (Pad > 0)
450 this->indent(Pad);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windns.h 401 WORD Pad;
407 WORD Pad;
444 WORD Pad;
457 WORD Pad;
495 WORD Pad;
503 WORD Pad;
usbuser.h 124 UCHAR Pad[3];
ntsecapi.h 553 ULONG Pad;
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 335 // If we have no storage type just pad to the appropriate size and return.
621 Pad = Padding.begin(), PadEnd = Padding.end();
622 Pad != PadEnd; ++Pad)
623 Members.push_back(StorageInfo(Pad->first, getByteArrayType(Pad->second)));
    [all...]
  /external/llvm/lib/CodeGen/
WinEHPrepare.cpp 183 llvm_unreachable("unexpected funclet pad!");
197 assert(FuncInfo.EHPadStateMap.count(PadInst) && "EH Pad has no state!");
448 // Each pad needs to be able to refer to its parent, so scan the function
463 const Instruction *Pad;
465 std::tie(Pad, ParentState) = Worklist.pop_back_val();
469 if (const CleanupPadInst *Cleanup = dyn_cast<CleanupPadInst>(Pad)) {
484 } else if (const auto *CatchSwitch = dyn_cast<CatchSwitchInst>(Pad)) {
512 llvm_unreachable("Unexpected EH pad");
516 for (const BasicBlock *Pred : predecessors(Pad->getParent())) {
    [all...]
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSApplication.java 139 if (UIDevice.currentDevice().userInterfaceIdiom() == UIUserInterfaceIdiom.Pad) {
148 if (UIDevice.currentDevice().userInterfaceIdiom() == UIUserInterfaceIdiom.Pad) {
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSApplication.java 132 if (UIDevice.getCurrentDevice().getUserInterfaceIdiom() == UIUserInterfaceIdiom.Pad) {
141 if (UIDevice.getCurrentDevice().getUserInterfaceIdiom() == UIUserInterfaceIdiom.Pad) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xcms.h 156 * PAD
179 XcmsPad Pad;
197 char pad[3]; member in struct:_XcmsPerScrnInfo
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xcms.h 154 * PAD
177 XcmsPad Pad;
195 char pad[3]; member in struct:_XcmsPerScrnInfo
  /external/llvm/lib/MC/
MCDwarf.cpp 576 int Pad = 2 * AddrSize - (Length & (2 * AddrSize - 1));
577 if (Pad == 2 * AddrSize)
578 Pad = 0;
579 Length += Pad;
605 for(int i = 0; i < Pad; i++)
    [all...]

Completed in 771 milliseconds

1 2