/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/ |
pb_buffer.h | 84 unsigned alignment; member in struct:pb_desc 102 unsigned alignment; member in struct:pb_buffer 248 * Utility function to check whether the provided alignment is consistent with 265 * Utility function to check whether the provided alignment is consistent with
|
/external/compiler-rt/lib/asan/tests/ |
asan_noinst_test.cc | 86 size_t alignment = 1 << (my_rand_r(&seed) % 10 + 1); local 87 char *ptr = (char*)__asan::asan_memalign(alignment, size,
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
OffsettedItem.java | 27 /** {@code > 0;} alignment requirement */ 28 private final int alignment; field in class:OffsettedItem 65 * @param alignment {@code > 0;} output alignment requirement; must be a 70 public OffsettedItem(int alignment, int writeSize) { 71 Section.validateAlignment(alignment); 77 this.alignment = alignment; 165 out.alignTo(alignment); 221 * in order to meet its alignment constrain [all...] |
Section.java | 34 /** {@code > 0;} alignment requirement for the final output; 36 private final int alignment; field in class:Section 47 * Validates an alignment. 49 * @param alignment the alignment 50 * @throws IllegalArgumentException thrown if {@code alignment} 53 public static void validateAlignment(int alignment) { 54 if ((alignment <= 0) || 55 (alignment & (alignment - 1)) != 0) [all...] |
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
pb_buffer.h | 84 unsigned alignment; member in struct:pb_desc 102 unsigned alignment; member in struct:pb_buffer 248 * Utility function to check whether the provided alignment is consistent with 265 * Utility function to check whether the provided alignment is consistent with
|
/frameworks/native/include/binder/ |
TextOutput.h | 107 inline HexDump& setAlignment(size_t alignment); 114 inline size_t alignment() const; 178 inline HexDump& HexDump::setAlignment(size_t alignment) { 179 mAlignment = alignment; return *this; 189 inline size_t HexDump::alignment() const { return mAlignment; } function in class:android::HexDump
|
/art/compiler/ |
elf_writer_mclinker.cc | 132 // MCLinker defaults MIPS section alignment to 0x10000, not 193 uint32_t alignment = kPageSize; local 200 alignment);
|
/bionic/libc/kernel/uapi/mtd/ |
ubi-user.h | 69 __s32 alignment; member in struct:ubi_mkvol_req
|
/cts/tests/tests/widget/src/android/widget/cts/ |
GridLayoutTest.java | 45 private static abstract class Alignment { 51 protected Alignment(String name, int gravity) { 57 private static final Alignment[] HORIZONTAL_ALIGNMENTS = { 58 new Alignment("LEFT", Gravity.LEFT) { 64 new Alignment("CENTER", Gravity.CENTER_HORIZONTAL) { 70 new Alignment("RIGHT", Gravity.RIGHT) { 76 new Alignment("FILL", Gravity.FILL_HORIZONTAL) { 84 private static final Alignment[] VERTICAL_ALIGNMENTS = { 85 new Alignment("TOP", Gravity.TOP) { 91 new Alignment("CENTER", Gravity.CENTER_VERTICAL) 238 Alignment alignment = HORIZONTAL_ALIGNMENTS[j]; local 249 Alignment alignment = VERTICAL_ALIGNMENTS[i]; local [all...] |
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
GLClientState.cpp | 232 int alignment = pack ? m_pixelStore.pack_alignment : m_pixelStore.unpack_alignment; local 236 width, height, format, type, pack, alignment); 239 size_t aligned_linesize = int(linesize / alignment) * alignment; 241 aligned_linesize += alignment;
|
/external/aac/libFDK/src/ |
FDK_bitbuffer.cpp | 331 INT alignment = hBitBuf->BitCnt & 0x07 ; local 333 if (alignment) 336 FDK_pushForward (hBitBuf, 8 - alignment, config) ; /* BS_READER */ 338 FDK_put (hBitBuf,0 , 8 - alignment) ; /* BS_WRITER */
|
/external/chromium_org/chrome/browser/search/ |
instant_service.cc | 343 // Set theme background image horizontal alignment. 344 int alignment = theme_service->GetDisplayProperty( local 346 if (alignment & ThemeProperties::ALIGN_LEFT) 348 else if (alignment & ThemeProperties::ALIGN_RIGHT) 353 // Set theme background image vertical alignment. 354 if (alignment & ThemeProperties::ALIGN_TOP) 356 else if (alignment & ThemeProperties::ALIGN_BOTTOM)
|
/external/chromium_org/chrome/browser/thumbnails/ |
content_analysis_unittest.cc | 677 int alignment = line % 2; local 681 alignment * body_rect.width() / 2 + margin_vertical;
|
/external/chromium_org/sandbox/win/src/ |
crosscall_params.h | 20 // alignment. Returns the increased value. 22 uint32 alignment = sizeof(int64); local 23 return ((value + alignment - 1) / alignment) * alignment;
|
/external/chromium_org/third_party/angle/src/compiler/translator/ |
PoolAlloc.h | 198 size_t alignment; // all returned allocations will be aligned at member in class:TPoolAllocator
|
StructureHLSL.cpp | 59 const int alignment = numComponents == 3 ? 4 : numComponents; local 60 const int paddingOffset = (mElementIndex % alignment); 61 const int paddingCount = (paddingOffset != 0 ? (alignment - paddingOffset) : 0);
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/ |
VertexBuffer.cpp | 177 // Alignment restrictions: In D3D, vertex data must be aligned to 180 size_t alignment = 4; local 189 alignment = std::min<size_t>(outputElementSize, 4); 194 bool isAligned = (static_cast<size_t>(ComputeVertexAttributeStride(attrib)) % alignment == 0) && 195 (static_cast<size_t>(attrib.offset) % alignment == 0);
|
/external/chromium_org/third_party/libxslt/libexslt/ |
strings.c | 404 xmlChar *str, *padding, *alignment, *ret; local 413 alignment = xmlXPathPopString(ctxt); 415 alignment = NULL; 426 xmlFree(alignment); 433 if (xmlStrEqual(alignment, (const xmlChar *) "right")) { 436 } else if (xmlStrEqual(alignment, (const xmlChar *) "center")) { 458 xmlFree(alignment);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_resource.h | 70 unsigned alignment; member in struct:r600_fmask_info 76 unsigned alignment; member in struct:r600_cmask_info
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_resource_buffer_upload.c | 52 unsigned alignment, 61 buf = sws->buffer_create(sws, alignment, usage, size); 68 buf = sws->buffer_create(sws, alignment, usage, size); 103 unsigned alignment = 16; local 107 sbuf->hwbuf = sws->buffer_create(sws, alignment, usage, size); 469 const unsigned alignment = sizeof(void *); local 491 hwbuf = sws->buffer_create(sws, alignment, usage, size); 496 hwbuf = sws->buffer_create(sws, alignment, usage, size);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/ |
glx_usefont.c | 220 GLint skiprows, skippixels, alignment; local 267 glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment); 271 except for the (non)alignment. */ 370 glPixelStorei(GL_UNPACK_ALIGNMENT, alignment);
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
link_uniforms.cpp | 336 unsigned alignment = type->std140_base_alignment(ubo_var->RowMajor); local 337 this->ubo_byte_offset = align(this->ubo_byte_offset, alignment); 496 unsigned alignment = type->std140_base_alignment(ubo_var->RowMajor); local 499 offset = align(offset, alignment); 513 * alignment required for a vec4."
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
pixel.c | 88 GLint alignment = state->storeUnpack.alignment; local 105 padding = (rowSize % alignment); 107 rowSize += alignment - padding; 161 ** ALIGNMENT = 1. 171 GLint alignment = state->storeUnpack.alignment; local 205 padding = (rowSize % alignment); 207 rowSize += alignment - padding; 267 ** Empty a bitmap in LSB_FIRST=GL_FALSE and ALIGNMENT=4 format packing i 276 GLint alignment = state->storePack.alignment; local 398 GLint alignment = state->storePack.alignment; local [all...] |
xfont.c | 226 GLint skiprows, skippixels, alignment; local 270 glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment); 274 except for the (non)alignment. */ 372 glPixelStorei(GL_UNPACK_ALIGNMENT, alignment);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
xfonts.c | 227 GLint skiprows, skippixels, alignment; local 273 glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment); 277 except for the (non)alignment. */ 376 glPixelStorei(GL_UNPACK_ALIGNMENT, alignment);
|