/external/compiler-rt/lib/ |
adddf3.c | 88 const unsigned int align = aExponent - bExponent; local 89 if (align) { 90 if (align < typeWidth) { 91 const bool sticky = bSignificand << (typeWidth - align); 92 bSignificand = bSignificand >> align | sticky;
|
addsf3.c | 87 const unsigned int align = aExponent - bExponent; local 88 if (align) { 89 if (align < typeWidth) { 90 const bool sticky = bSignificand << (typeWidth - align); 91 bSignificand = bSignificand >> align | sticky;
|
/external/libvpx/libvpx/vpx/src/ |
vpx_codec.c | 142 unsigned int align = mmap->align ? mmap->align - 1 : 0; local 145 mmap->priv = calloc(1, mmap->sz + align); 147 mmap->priv = malloc(mmap->sz + align); 150 mmap->base = (void *)((((uintptr_t)mmap->priv) + align) & ~(uintptr_t)align);
|
vpx_image.c | 17 /*returns an addr aligned to the byte boundary specified by align*/ 18 #define align_addr(addr,align) (void*)(((size_t)(addr) + ((align) - 1)) & (size_t)-(align)) 21 static void *img_buf_memalign(size_t align, size_t size) { 25 addr = malloc(size + align - 1 + ADDRESS_STORAGE_SIZE); 28 x = align_addr((unsigned char *)addr + ADDRESS_STORAGE_SIZE, (int)align); 52 int align; local 54 /* Treat align==0 like align==1 * [all...] |
/frameworks/compile/mclinker/lib/Object/ |
ObjectBuilder.cpp | 64 target->setAlign(pInputSection.align()); 108 AlignFragment* align = NULL; local 109 if (pFrom.getSection().align() > 1) { 110 // if the align constraint is larger than 1, append an alignment 111 align = new AlignFragment(pFrom.getSection().align(), // alignment 114 pFrom.getSection().align() - 1 // max bytes to emit 116 align->setOffset(offset); 117 align->setParent(&pTo); 118 pTo.getFragmentList().push_back(align); 156 AlignFragment* align = NULL; local [all...] |
/hardware/qcom/display/msm8960/libgralloc/ |
memalloc.h | 48 size_t align; member in struct:gralloc::alloc_data
|
/hardware/qcom/display/msm8974/libgralloc/ |
memalloc.h | 48 size_t align; member in struct:gralloc::alloc_data
|
/hardware/qcom/display/msm8x26/libgralloc/ |
memalloc.h | 48 size_t align; member in struct:gralloc::alloc_data
|
/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
TextureUtils.cpp | 62 const int32_t align = ctx->getUnpackAlignment()-1; local 63 const int32_t bpr = ((width * 3) + align) & ~align;
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPreserveAspectRatio.h | 57 void setAlign(unsigned short align, ExceptionState&); 58 unsigned short align() const { return m_align; } function in class:WebCore::SVGPreserveAspectRatio
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nouveau_util.h | 124 align(unsigned x, unsigned m) function
|
/external/chromium_org/third_party/mesa/src/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/elfutils/libdwfl/ |
dwfl_report_elf.c | 96 const GElf_Xword align = shdr->sh_addralign ?: 1; local 97 const GElf_Addr next = (end + align - 1) & -align; 109 else if (unlikely (base & (align - 1))) 117 start = end = base = (base + align - 1) & -align; 159 if ((shdr->sh_addr - bias + base) & (align - 1)) 162 the lowest section address in the file modulo ALIGN. */ 163 base = (((base + align - 1) & -align) [all...] |
/external/elfutils/libelf/ |
elf_getdata.c | 137 const size_t align = __libelf_type_align (eclass, type); local 141 if (((((size_t) (char *) scn->rawdata_base)) & (align - 1)) == 0) 196 size_t align; local 212 align = shdr->sh_addralign; 226 align = shdr->sh_addralign; 323 scn->rawdata.d.d_align = align;
|
/external/libffi/src/sh64/ |
ffi.c | 83 int align; local 86 align = (*p_arg)->alignment; 116 else if (z == sizeof (UINT32) && align == sizeof (UINT32)) 139 && align == sizeof (UINT64)
|
/external/libvpx/libvpx/ |
example_xma.c | 156 unsigned int align; local 159 align = mmap.align ? mmap.align - 1 : 0; 163 printf("Allocating segment %u, size %lu, align %u %s\n", 164 mmap.id, mmap.sz, mmap.align, 168 mmap.priv = calloc(1, mmap.sz + align); 170 mmap.priv = malloc(mmap.sz + align); 172 mmap.base = (void *)((((uintptr_t)mmap.priv) + align) & ~(uintptr_t)align); [all...] |
/external/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/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/tcpdump/ |
print-sctp.c | 140 u_int16_t align; local 152 align=chunkLength % 4; 153 if (align != 0) 154 align = 4 - align; 156 nextChunk = (const void *) (chunkEnd + align);
|
/frameworks/rs/cpu_ref/linkloader/utils/ |
serialize.h | 137 size_t align = TypeTraits<T>::align; local 138 size_t delta = static_cast<size_t>(cursor - buf_begin) % align; 141 seek(align - delta);
|
/frameworks/rs/ |
rsStream.h | 87 void align(uint32_t bytes) { function in class:android::renderscript::OStream
|
/hardware/libhardware/modules/gralloc/ |
gralloc.cpp | 208 int align = 4; local 226 size_t bpr = (w*bpp + (align-1)) & ~(align-1);
|
/hardware/ti/omap4xxx/ion/ |
linux_ion.h | 39 size_t align; member in struct:ion_allocation_data
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
memory.cpp | 205 align(size_t alignment, size_t size, void*& ptr, size_t& space) function
|