HomeSort by relevance Sort by last modified time
    Searched defs:granularity (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/mesa3d/src/intel/common/
gen_urb_config.c 82 unsigned granularity[4]; local
84 granularity[i] = (entry_size[i] < 9) ? 8 : 1;
117 min_entries[i] = ALIGN(min_entries[i], granularity[i]);
187 /* Ensure that we program a multiple of the granularity. */
188 entries[i] = ROUND_DOWN_TO(entries[i], granularity[i]);
  /external/skia/src/gpu/vk/
GrVkRenderPass.h 105 const VkExtent2D& granularity() const { return fGranularity; } function in class:GrVkRenderPass
GrVkGpu.cpp 1968 const VkExtent2D& granularity = renderPass->granularity(); local
    [all...]
  /external/compiler-rt/lib/asan/
asan_poisoning.cc 338 uptr granularity = SHADOW_GRANULARITY; local
340 IsAligned(beg, granularity))) {
348 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity);
349 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity);
350 uptr d1 = RoundDownTo(old_mid, granularity);
351 // uptr d2 = RoundUpTo(old_mid, granularity);
360 if (a + granularity <= d1)
362 // if (d2 + granularity <= c && c <= end)
363 // CHECK_EQ(*(u8 *)MemToShadow(c - granularity),
366 uptr b1 = RoundDownTo(new_mid, granularity);
    [all...]
asan_report.cc 957 uptr granularity = SHADOW_GRANULARITY; local
    [all...]
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
AppCompatBaseAutoSizeTest.java 277 final int granularity = 2; local
282 minTextSize, maxTextSize, granularity, unit);
310 // Configured with granularity.
311 assertEquals(Math.round(TypedValue.applyDimension(unit, granularity, dm)),
313 // Configured with preset values, there is no granularity.
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 22 * \brief Vulkan Get Render Area Granularity Tests
363 VkExtent2D granularity = { 0u, 0u }; local
364 vk.getRenderAreaGranularity(device, *m_renderPass, &granularity);
365 TCU_CHECK(granularity.width >= 1 && granularity.height >= 1);
366 TCU_CHECK(prePassGranularity.width == granularity.width && prePassGranularity.height == granularity.height);
367 TCU_CHECK(granularity.width <= m_context.getDeviceProperties().limits.maxFramebufferWidth && granularity.height <= m_context.getDeviceProperties().limits.maxFramebufferHeight);
372 log << tcu::TestLog::Message << "Horizontal granularity: " << granularity.width << " Vertical granularity: " << granularity.height << tcu::TestLog::EndMes (…)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
cik_sdma.c 324 unsigned granularity; local
329 granularity = bpp == 1 ? 64 / (8*bpp) :
335 granularity = bpp == 1 ? 32 / (8*bpp) :
340 granularity = bpp <= 2 ? 64 / (8*bpp) :
348 /* The linear reads start at tiled_x & ~(granularity - 1).
349 * If linear_x == 0 && tiled_x % granularity != 0, the hw
357 start_linear_address -= (int)(bpp * (tiled_x % granularity));
365 if ((tiled_x + copy_width) % granularity)
366 end_linear_address += granularity -
367 (tiled_x + copy_width) % granularity;
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_allocator.c 413 uint32_t granularity = MAX2(pool->block_size, PAGE_SIZE); local
414 assert(util_is_power_of_two(granularity));
415 center_bo_offset &= ~(granularity - 1);
  /external/e2fsprogs/misc/
badblocks.c 751 unsigned int granularity = blocks_at_once; local
836 got = try = granularity - buf_used;
855 if (granularity != 1) {
856 granularity = 1;
899 if ((buf_used != granularity) &&
904 granularity = blocks_at_once;
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeInfo.java 167 * at a given movement granularity. For example, move to the next character,
199 * at a given movement granularity. For example, move to the next character,
349 * Argument for which movement granularity to be used when traversing the node text.
383 * Argument for whether when moving at granularity to extend the selection
534 * Movement granularity bit for traversing the text of a node by character.
539 * Movement granularity bit for traversing the text of a node by word.
544 * Movement granularity bit for traversing the text of a node by line.
549 * Movement granularity bit for traversing the text of a node by paragraph.
554 * Movement granularity bit for traversing the text of a node by page.
3669 final int granularity = 1 << Integer.numberOfTrailingZeros(granularities); local
    [all...]
  /external/dlmalloc/
malloc.c 233 default granularity, pixel buffers may straddle virtual allocation
2618 size_t granularity; member in struct:malloc_params
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/
dlmalloc.c 2108 size_t granularity; member in struct:malloc_params
    [all...]
  /external/vulkan-validation-layers/layers/
core_validation.cpp 8062 VkExtent3D granularity = { 0, 0, 0 }; local
8190 VkExtent3D granularity = GetScaledItg(dev_data, cb_node, img); local
8204 VkExtent3D granularity = GetScaledItg(dev_data, cb_node, img); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite.h 580 DWRITE_TRIMMING_GRANULARITY granularity; member in struct:DWRITE_TRIMMING
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 7466 final int granularity = 2; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-autoscaling/1.11.18/
aws-java-sdk-autoscaling-1.11.18.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/
ant-1.7.0.jar 
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /prebuilts/misc/common/robolectric/lib/
ant-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/android/apps/common/testing/accessibility/framework/accessibility-test-framework/2.0/
accessibility-test-framework-2.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 

Completed in 3339 milliseconds

1 2 3