HomeSort by relevance Sort by last modified time
    Searched defs:alignment (Results 126 - 150 of 267) sorted by null

1 2 3 4 56 7 8 91011

  /external/deqp/modules/glshared/
glsTextureBufferCase.cpp 1015 deInt32 alignment = 0; local
    [all...]
  /external/kernel-headers/original/uapi/linux/
som.h 147 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /external/lldb/source/Plugins/SymbolFile/DWARF/
SymbolFileDWARF.h 157 uint64_t &alignment,
165 uint64_t &alignment,
174 alignment(0),
181 uint64_t alignment; member in struct:SymbolFileDWARF::LayoutInfo
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.c 124 unsigned alignment, nblocksx, nblocksy, block_size; local
130 alignment = 1;
132 alignment = TILE_SIZE;
135 align(width, alignment));
137 align(height, alignment));
974 uint alignment = MAX2(16, util_cpu_caps.cacheline); local
982 lpr->tiled[level].data = align_malloc(buffer_size, alignment);
1003 lpr->linear[level].data = align_malloc(buffer_size, alignment);
    [all...]
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 255 long alignment = position - position % Libcore.os.sysconf(_SC_PAGE_SIZE); local
256 int offset = (int) (position - alignment);
257 MemoryBlock block = MemoryBlock.mmap(fd, alignment, size + offset, mapMode);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
som.h 147 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
som.h 147 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
som.h 164 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
som.h 164 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
som.h 164 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
som.h 164 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
som.h 164 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
som.h 164 unsigned int alignment :27; member in struct:subspace_dictionary_record
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /frameworks/base/media/java/android/media/
MediaCodecInfo.java 797 * Returns the alignment requirement for video width (in pixels).
807 * Returns the alignment requirement for video height (in pixels).
1092 Size alignment = new Size(mWidthAlignment, mHeightAlignment); local
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 50 * Alignment constraint that can be used during search of free registers.
52 private enum Alignment {
82 * specified starting index and that respect {@link Alignment}.
86 * @return the index of the next clear bit respecting alignment.
413 * Return the register alignment constraint to have 64-bits registers that will be align on even
418 * @return the register alignment constraint.
420 private Alignment getAlignment(int regCategory) {
421 Alignment alignment = Alignment.UNSPECIFIED local
481 Alignment alignment = getAlignment(category); local
964 Alignment alignment = Alignment.UNSPECIFIED; local
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.cc 72 void SetBackgroundBounds(const gfx::Rect bounds, DockedAlignment alignment) {
75 alignment_ = alignment;
474 // If there are no other docked windows clear alignment when a docked window
529 // If this is the first window that got docked by a move update alignment.
580 // If such exists the current alignment is returned - even if some of the
623 const DockedAlignment alignment = CalculateAlignment(); local
625 alignment != DOCKED_ALIGNMENT_NONE &&
626 alignment != desired_alignment) {
632 shelf_alignment = shelf_->alignment();
652 // When screen resizes update the insets even when dock width or alignment
1189 DockedAlignment alignment = alignment_; local
    [all...]
  /external/chromium_org/chrome/renderer/searchbox/
searchbox_extension.cc 863 std::string alignment = kCSSBackgroundPositionCenter; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 103 // If the alignment is set incorrectly, it can produce really inefficient
947 unsigned alignment; local
950 alignment = linst->getAlignment();
953 alignment = sinst->getAlignment();
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
glxclient.h 178 GLuint alignment; member in struct:__GLXpixelStoreModeRec
  /external/chromium_org/third_party/tcmalloc/chromium/src/
debugallocation.cc 286 // This, combined with BASE_MALLOC's alignment guarantees,
683 // just going to error-exit below anyway. Union is for alignment.
684 union { void* alignment; char buf[sizeof(SymbolTable)]; } tablebuf; member in union:MallocBlock::__anon20175
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 168 static const int FLAGS_lg_max_memalign = 18; // lg of max alignment for memalign
172 static const double FLAGS_memalign_max_alignment_ratio = 6; // alignment/size
305 // Try a few times to find a reasonable alignment, or fall back on malloc.
307 size_t alignment = 1 << Uniform(FLAGS_lg_max_memalign); local
308 if (alignment >= sizeof(intptr_t) &&
310 alignment < FLAGS_memalign_max_alignment_ratio * size)) {
312 int err = PosixMemalign(&result, alignment, size);
753 fprintf(LOGSTREAM, "Testing alignment of malloc(%d)\n", size);
762 // Must have 16-byte alignment for large enough objects
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
debugallocation.cc 288 // This, combined with BASE_MALLOC's alignment guarantees,
687 // just going to error-exit below anyway. Union is for alignment.
688 union { void* alignment; char buf[sizeof(SymbolTable)]; } tablebuf; member in union:MallocBlock::__anon20219
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 168 static const int FLAGS_lg_max_memalign = 18; // lg of max alignment for memalign
172 static const double FLAGS_memalign_max_alignment_ratio = 6; // alignment/size
305 // Try a few times to find a reasonable alignment, or fall back on malloc.
307 size_t alignment = 1 << Uniform(FLAGS_lg_max_memalign); local
308 if (alignment >= sizeof(intptr_t) &&
310 alignment < FLAGS_memalign_max_alignment_ratio * size)) {
312 int err = PosixMemalign(&result, alignment, size);
753 fprintf(LOGSTREAM, "Testing alignment of malloc(%d)\n", size);
762 // Must have 16-byte alignment for large enough objects
    [all...]

Completed in 1498 milliseconds

1 2 3 4 56 7 8 91011