Searched defs:Alignment (Results 1 - 9 of 9) sorted by relevance

/frameworks/compile/libbcc/lib/CodeGen/
H A DCodeMemoryManager.cpp69 unsigned Alignment) {
76 if (Alignment == 0)
77 Alignment = 1;
80 result = (uint8_t*) (((intptr_t) result) & ~(intptr_t) (Alignment - 1));
175 uint8_t *CodeMemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) { argument
181 if (Alignment == 0)
182 Alignment = 1;
185 result = (uint8_t*) (((intptr_t) result + Alignment - 1) &
186 ~(intptr_t) (Alignment - 1));
194 uint8_t *CodeMemoryManager::allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
68 allocateSGMemory(uintptr_t Size, unsigned Alignment) argument
[all...]
H A DCodeMemoryManager.h171 unsigned Alignment) {
172 return allocateSGMemory(StubSize, Alignment);
187 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment);
190 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment);
232 unsigned Alignment = 1 /* no alignment */);
169 allocateStub(const llvm::GlobalValue *F, unsigned StubSize, unsigned Alignment) argument
H A DCodeEmitter.cpp949 startGVStub(F, SL.Size, SL.Alignment);
1120 startGVStub(0, SL.Size, SL.Alignment);
1315 unsigned Alignment) {
1321 Alignment);
1354 unsigned Alignment) {
1355 uint8_t *IndGV = mpMemMgr->allocateStub(GV, Size, Alignment);
1364 void *CodeEmitter::allocateGlobal(uintptr_t Size, unsigned Alignment) { argument
1366 return mpMemMgr->allocateGlobal(Size, Alignment);
1314 startGVStub(const llvm::GlobalValue *GV, unsigned StubSize, unsigned Alignment) argument
1352 allocIndirectGV(const llvm::GlobalValue *GV, const uint8_t *Buffer, size_t Size, unsigned Alignment) argument
/frameworks/base/media/libeffects/lvm/lib/Bass/lib/
H A DLVDBE.h227 LVM_UINT16 Alignment; /* Region alignment in bytes */ member in struct:__anon358
/frameworks/base/media/libeffects/lvm/lib/Eq/lib/
H A DLVEQNB.h229 LVM_UINT16 Alignment; /* Region alignment in bytes */ member in struct:__anon432
/frameworks/base/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Private.h127 LVM_UINT16 Alignment; /* Byte alignment */ member in struct:__anon385
/frameworks/base/core/java/android/text/
H A DLayout.java114 int width, Alignment align,
136 int width, Alignment align, TextDirectionHeuristic textDir,
166 int width, Alignment align,
293 Alignment paraAlign = mAlignment;
388 Alignment align = paraAlign;
389 if (align == Alignment.ALIGN_LEFT) {
391 Alignment.ALIGN_NORMAL : Alignment.ALIGN_OPPOSITE;
392 } else if (align == Alignment.ALIGN_RIGHT) {
394 Alignment
1844 public enum Alignment { enum in class:Layout
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp447 unsigned Alignment = (Record[i+1] & (0xffffull << 16)) >> 16; local
448 if (Alignment && !isPowerOf2_32(Alignment))
449 return Error("Alignment is not a power of two.");
452 if (Alignment)
453 ReconstitutedAttr |= Attribute::constructAlignmentFromInt(Alignment);
1702 unsigned Alignment = (1 << Record[4]) >> 1; local
1723 NewGV->setAlignment(Alignment);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java553 static Alignment getAlignment(int gravity, boolean horizontal) {
941 final Alignment getAlignment(Alignment alignment, boolean horizontal) {
998 Alignment hAlign = getAlignment(columnSpec.alignment, true);
999 Alignment vAlign = getAlignment(rowSpec.alignment, false);
1021 // Alignment offsets: the location of the view relative to its alignment group.
2072 protected int getOffset(View c, Alignment alignment, int size) {
2079 Alignment alignment = gridLayout.getAlignment(spec.alignment, axis.horizontal);
2201 * <li>{@link #spec(int, Alignment)}</li>
2202 * <li>{@link #spec(int, int, Alignment)}</l
2350 public static abstract class Alignment { class in class:GridLayout
2351 Alignment() { method in class:GridLayout.Alignment
[all...]

Completed in 149 milliseconds