HomeSort by relevance Sort by last modified time
    Searched defs:Align (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/clang/include/clang/Frontend/
LayoutOverrideSource.h 31 uint64_t Align;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
AlignFeatures.cpp 33 Align::Align()
43 Align::~Align()
50 char* Align::getRegProfileString()
55 int Align::initialize(int width, int height, bool _quarter_res, float _thresh_still)
98 int Align::addFrameRGB(ImageType imageRGB)
104 int Align::addFrame(ImageType imageGray_)
193 int Align::getLastTRS(double trs[3][3])
AlignFeatures.h 18 // Align.h
32 class Align {
57 Align();
58 ~Align();
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
AlignFeatures.cpp 33 Align::Align()
43 Align::~Align()
50 char* Align::getRegProfileString()
55 int Align::initialize(int width, int height, bool _quarter_res, float _thresh_still)
98 int Align::addFrameRGB(ImageType imageRGB)
104 int Align::addFrame(ImageType imageGray_)
193 int Align::getLastTRS(double trs[3][3])
AlignFeatures.h 18 // Align.h
32 class Align {
57 Align();
58 ~Align();
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 41 /// alignAddress - helper function to align an address with given alignment
45 /// @param pAlignConstraint - the alignment used to align the given address
53 uint64_t Align(uint64_t pAddress);
56 inline uint64_t Align<32>(uint64_t pAddress)
62 inline uint64_t Align<64>(uint64_t pAddress)
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 46 unsigned Align = ArgFlags.getByValAlign();
50 if (MinAlign > (int)Align)
51 Align = MinAlign;
52 if (MF.getFrameInfo()->getMaxAlignment() < Align)
53 MF.getFrameInfo()->setMaxAlignment(Align);
55 unsigned Offset = AllocateStack(Size, Align);
CodePlacementOpt.cpp 63 bool AlignLoop(MachineFunction &MF, MachineLoop *L, unsigned Align);
372 /// AlignLoops - Align loop headers to target preferred alignments.
379 unsigned Align = TLI->getPrefLoopAlignment();
380 if (!Align)
387 Changed |= AlignLoop(MF, *I, Align);
392 /// AlignLoop - Align loop headers to target preferred alignments.
395 unsigned Align) {
400 Changed |= AlignLoop(MF, *I, Align);
402 L->getTopBlock()->setAlignment(Align);
LocalStackSlotAllocation.cpp 122 unsigned Align = MFI->getObjectAlignment(FrameIdx);
126 MaxAlign = std::max(MaxAlign, Align);
129 Offset = (Offset + Align - 1) / Align * Align;
StackSlotColoring.cpp 246 unsigned Align = OrigAlignments[FI];
247 if (!Share || Align > MFI->getObjectAlignment(Color))
248 MFI->setObjectAlignment(Color, Align);
TargetLoweringObjectFileImpl.cpp 248 unsigned Align =
260 std::string Name = SizeSpec + utostr(Align);
  /external/llvm/lib/Target/Hexagon/
HexagonCallingConvLower.cpp 45 unsigned Align = ArgFlags.getByValAlign();
49 if (MinAlign > (int)Align)
50 Align = MinAlign;
51 unsigned Offset = AllocateStack(Size, Align);
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 102 unsigned Align = TFI->getStackAlignment();
103 Amount = (Amount+Align-1)/Align*Align;
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 158 int Align = Action->getValueAsInt("Align");
167 if (Align)
168 O << Align;
197 int Align = Action->getValueAsInt("Align");
200 << Size << ", " << Align << ", ArgFlags);\n";
  /external/llvm/lib/Target/CellSPU/
SPUFrameLowering.cpp 66 unsigned Align = std::max(TargetAlign, MFI->getMaxAlignment());
67 assert(isPowerOf2_32(Align) && "Alignment is not power of 2");
68 unsigned AlignMask = Align - 1;
  /external/llvm/lib/Target/ARM/
Thumb1RegisterInfo.cpp 323 unsigned Align = TFI->getStackAlignment();
324 Amount = (Amount+Align-1)/Align*Align;
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 175 unsigned Align = MFI.getObjectAlignment(FI);
178 MFI.getObjectSize(FI), Align);
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 121 unsigned Align = (unsigned)TD->getPreferredTypeAlignmentShift(C->getType());
153 EmitAlignment(Align > 2 ? Align : 2, GV);
XCoreRegisterInfo.cpp 115 unsigned Align = TFI->getStackAlignment();
116 Amount = (Amount+Align-1)/Align*Align;
  /external/skia/include/views/
SkStackViewLayout.h 48 enum Align {
56 Align getAlign() const { return (Align)fAlign; }
57 void setAlign(Align);
  /external/clang/include/clang/AST/
Attr.h 245 unsigned Align = 0;
248 Align = std::max(Align, i->getAlignment(Ctx));
249 return Align;
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapFont.java 48 * @see BitmapText#setAlignment(com.jme3.font.BitmapFont.Align)
50 public enum Align {
53 * Align text on the left of the text block
58 * Align text in the center of the text block
63 * Align text on the right of the text block
75 * Align text on the top of the text block
80 * Align text in the center of the text block
85 * Align text at the bottom of the text block
  /external/llvm/include/llvm/
Attributes.h 121 // 0 means unaligned different from align 1
185 // Default alignment, allow the target to define how to align it.
196 Attributes Align = A & Attribute::Alignment;
197 if (!Align)
200 return 1U << ((Align.Raw() >> 16) - 1);
206 // Default alignment, allow the target to define how to align it.
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 84 unsigned Align =
99 MF->getFrameInfo()->CreateStackObject(TySize, Align, false,
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 52 unsigned Align; // CP alignment.
56 ES(0), JT(-1), Align(0) {
78 errs() << " Align" << Align << '\n';
83 errs() << " JT" << JT << " Align" << Align << '\n';
153 AM.Align = CP->getAlignment();
271 AM.Align, AM.Disp, 0/*AM.SymbolFlags*/);

Completed in 610 milliseconds

1 2 3 4