HomeSort by relevance Sort by last modified time
    Searched defs:align (Results 76 - 100 of 586) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
BindingsHelper.java 76 * Align |size| on {@link BindingsHelper#ALIGNMENT}.
78 public static int align(int size) { method in class:BindingsHelper
83 * Align |size| on {@link BindingsHelper#ALIGNMENT}.
85 public static long align(long size) { method in class:BindingsHelper
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_util.h 124 align(unsigned x, unsigned m) function
  /external/mesa3d/src/mesa/main/
texcompress_cpal.c 174 GLint saved_align, align; local
190 align = saved_align;
204 if (w * info->size % align) {
206 align = 1;
227 if (saved_align != align)
  /external/skia/src/pathops/
SkPathOpsConic.h 62 void align(int endIndex, SkDPoint* dstPt) const { function in struct:SkDConic
63 fPts.align(endIndex, dstPt);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
OutputBuffer.h 35 // align - Emit padding into the file until the current output position is
37 void align(unsigned Boundary) { function in class:llvm::OutputBuffer
39 "Must align to 2^k boundary");
  /external/syslinux/gpxe/src/arch/i386/interface/pcbios/
memtop_umalloc.c 140 size_t align; local
167 align = ( user_to_phys ( new, 0 ) & ( EM_ALIGN - 1 ) );
168 new_size += align;
169 new = userptr_add ( new, -align );
  /external/syslinux/gpxe/src/util/
iccfix.c 45 unsigned long align = shdr->sh_addralign; local
49 ( align >= ICC_ALIGN_HACK_FACTOR ) ) {
50 new_align = ( align / ICC_ALIGN_HACK_FACTOR );
53 name, align, new_align );
  /external/valgrind/VEX/priv/
main_util.h 127 struct align { struct
146 vassert(offsetof(struct align,x) <= REQ_ALIGN);
154 SizeT ALIGN;
155 ALIGN = offsetof(struct align,x) - 1;
156 nbytes = (nbytes + ALIGN) & ~ALIGN;
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 74 target->setAlign(pInputSection.align());
112 pInputSection.setAlign(pair.second->getSection()->align());
134 AlignFragment* align = NULL; local
135 if (pFrom.getSection().align() > 1) {
136 // if the align constraint is larger than 1, append an alignment
137 unsigned int alignment = pFrom.getSection().align();
138 align = new AlignFragment(/*alignment*/alignment,
142 align->setOffset(offset);
143 align->setParent(&pTo);
144 pTo.getFragmentList().push_back(align);
187 AlignFragment* align = NULL; local
    [all...]
  /frameworks/rs/
rsStream.h 87 void align(uint32_t bytes) { function in class:android::renderscript::OStream
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
utils.c 17 uint32_t align=0; local
27 while(align > 0){
  /hardware/qcom/display/msm8996/libgralloc1/
gr_ion_alloc.h 51 unsigned int align = 1; member in struct:gralloc1::AllocData
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_buffer_allocator.cpp 70 data.align = SECURE_ALIGN;
72 data.align = UINT32(getpagesize());
90 buffer_size = ROUND_UP(buffer_size, data.align) * buffer_config.buffer_count;
154 uint32_t align = UINT32(getpagesize()); local
167 align = SECURE_ALIGN;
184 buffer_size = ROUND_UP(buffer_size, align) * buffer_config.buffer_count;
  /hardware/qcom/display/msm8998/libgralloc1/
gr_ion_alloc.h 51 unsigned int align = 1; member in struct:gralloc1::AllocData
  /hardware/qcom/display/msm8998/sdm/libs/hwc/
hwc_buffer_allocator.cpp 70 data.align = SZ_2M;
74 data.align = SECURE_ALIGN;
76 data.align = UINT32(getpagesize());
94 buffer_size = ROUND_UP(buffer_size, data.align) * buffer_config.buffer_count;
163 uint32_t align = UINT32(getpagesize()); local
176 align = SZ_2M;
180 align = SECURE_ALIGN;
197 buffer_size = ROUND_UP(buffer_size, align) * buffer_config.buffer_count;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
memory.cpp 205 align(size_t alignment, size_t size, void*& ptr, size_t& space) function
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
memory.cpp 210 align(size_t alignment, size_t size, void*& ptr, size_t& space) function
  /system/core/libcutils/tests/
MemsetTest.cpp 126 void RunMemsetTests(test_e test_type, uint32_t value, int align[][2], size_t num_aligns) {
147 buf.get()+FENCEPOST_LENGTH, align[i][0], align[i][1]));
159 << "Failed size " << len << " align " << align[i][0] << " " << align[i][1] << "\n"; local
  /toolchain/binutils/binutils-2.25/bfd/
vms.h 88 unsigned short int align; member in struct:vms_rec_wr
  /toolchain/binutils/binutils-2.25/include/vms/
egps.h 35 unsigned char align; member in struct:vms_egps
esgps.h 35 unsigned char align; member in struct:vms_esgps
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Section.java 148 align(out);
261 * @param out {@code non-null;} the output to align
263 protected final void align(AnnotatedOutput out) { method in class:Section
  /dalvik/dx/src/com/android/dx/dex/file/
Section.java 147 align(out);
260 * @param out {@code non-null;} the output to align
262 protected final void align(AnnotatedOutput out) { method in class:Section
  /development/ndk/platforms/android-21/include/linux/
ion.h 47 size_t align; member in struct:ion_allocation_data
  /external/ImageMagick/coders/
pango.c 135 align;
309 switch (draw_info->align)
311 case CenterAlign: align=PANGO_ALIGN_CENTER; break;
312 case RightAlign: align=PANGO_ALIGN_RIGHT; break;
313 case LeftAlign: align=PANGO_ALIGN_LEFT; break;
318 align=PANGO_ALIGN_CENTER;
321 align=PANGO_ALIGN_LEFT;
325 if ((align != PANGO_ALIGN_CENTER) &&
327 align=(PangoAlignment) (PANGO_ALIGN_LEFT+PANGO_ALIGN_RIGHT-align);
133 align; local
    [all...]

Completed in 892 milliseconds

1 2 34 5 6 7 8 91011>>