| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_util.h | 33 /* align to a value divisable by granularity >= value, works only for powers of two */ 35 etna_align_up(uint32_t value, uint32_t granularity) argument 37 return (value + (granularity - 1)) & (~(granularity - 1));
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/ |
| H A D | xf86fbman.h | 50 int granularity; member in struct:_FBArea 60 int granularity; member in struct:_FBLinear 78 int granularity, 87 int granularity, 98 int granularity, 107 int granularity, 153 int granularity, 163 int granularity, 173 int granularity, 212 int granularity, [all...] |
| H A D | xf86fbman.c | 357 int granularity, 369 if(granularity <= 1) granularity = 0; 377 if (granularity > 1) 378 x = ((x + granularity - 1) / granularity) * granularity; 405 if (granularity > 1) 406 x = ((x + granularity - 1) / granularity) * granularit 354 AllocateArea(FBManagerPtr offman,int w,int h,int granularity,MoveAreaCallbackProcPtr moveCB,RemoveAreaCallbackProcPtr removeCB,pointer privData) argument 614 localQueryLargestOffscreenArea(ScreenPtr pScreen,int * width,int * height,int granularity,int preferences,int severity) argument 829 AllocateLinear(FBManagerPtr offman,int size,int granularity,pointer privData) argument [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/ |
| H A D | xf86fbman.h | 47 int granularity; member in struct:_FBArea 57 int granularity; member in struct:_FBLinear 73 int granularity, 81 int granularity, 89 int granularity, 97 int granularity, int priority); 122 int granularity, 129 int granularity, 137 int granularity, 164 int granularity, in [all...] |
| H A D | xf86fbman.c | 348 int granularity, 359 if (granularity <= 1) 360 granularity = 0; 368 if (granularity > 1) 369 x = ((x + granularity - 1) / granularity) * granularity; 397 if (granularity > 1) 398 x = ((x + granularity - 1) / granularity) * granularit 346 AllocateArea(FBManagerPtr offman,int w,int h,int granularity,MoveAreaCallbackProcPtr moveCB,RemoveAreaCallbackProcPtr removeCB,void * privData) argument 604 localQueryLargestOffscreenArea(ScreenPtr pScreen,int * width,int * height,int granularity,int preferences,int severity) argument 828 AllocateLinear(FBManagerPtr offman,int size,int granularity,void * privData) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_util.h | 33 /* align to a value divisable by granularity >= value, works only for powers of two */ 35 etna_align_up(uint32_t value, uint32_t granularity) argument 37 return (value + (granularity - 1)) & (~(granularity - 1));
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/common/ |
| H A D | gen_urb_config.c | 83 unsigned granularity[4]; local in function:gen_get_urb_config 85 granularity[i] = (entry_size[i] < 9) ? 8 : 1; 118 min_entries[i] = ALIGN(min_entries[i], granularity[i]); 188 /* Ensure that we program a multiple of the granularity. */ 189 entries[i] = ROUND_DOWN_TO(entries[i], granularity[i]);
|
| /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/ |
| H A D | vn_render_pass.h | 30 VkExtent2D granularity; member in struct:vn_render_pass
|
| H A D | vn_render_pass.c | 268 if (!pass->granularity.width) { 270 &pass->granularity); 273 *pGranularity = pass->granularity;
|
| /xsrc/external/mit/MesaLib/dist/src/intel/common/ |
| H A D | intel_urb_config.c | 108 unsigned granularity[4]; local in function:intel_get_urb_config 110 granularity[i] = (entry_size[i] < 9) ? 8 : 1; 143 min_entries[i] = ALIGN(min_entries[i], granularity[i]); 215 /* Ensure that we program a multiple of the granularity. */ 216 entries[i] = ROUND_DOWN_TO(entries[i], granularity[i]);
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| H A D | v3dv_pass.c | 281 VkExtent2D *granularity) 324 *granularity = (VkExtent2D) { 381 VkExtent2D granularity; local in function:v3dv_subpass_area_is_tile_aligned 382 subpass_get_granularity(device, pass, subpass_idx, &granularity); 384 return area->offset.x % granularity.width == 0 && 385 area->offset.y % granularity.height == 0 && 386 (area->extent.width % granularity.width == 0 || 389 (area->extent.height % granularity.height == 0 || 278 subpass_get_granularity(struct v3dv_device * device,struct v3dv_render_pass * pass,uint32_t subpass_idx,VkExtent2D * granularity) argument
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/ |
| H A D | cik_sdma.c | 289 unsigned granularity; local in function:cik_sdma_copy_texture 294 granularity = bpp == 1 ? 64 / (8*bpp) : 300 granularity = bpp == 1 ? 32 / (8*bpp) : 305 granularity = bpp <= 2 ? 64 / (8*bpp) : 313 /* The linear reads start at tiled_x & ~(granularity - 1). 314 * If linear_x == 0 && tiled_x % granularity != 0, the hw 322 start_linear_address -= (int)(bpp * (tiled_x % granularity)); 330 if ((tiled_x + copy_width) % granularity) 331 end_linear_address += granularity - 332 (tiled_x + copy_width) % granularity; [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_sdma_copy_image.c | 341 unsigned granularity; local in function:cik_sdma_copy_texture 346 granularity = bpp == 1 ? 64 / (8 * bpp) : 128 / (8 * bpp); 351 granularity = 355 granularity = bpp <= 2 ? 64 / (8 * bpp) : bpp <= 8 ? 128 / (8 * bpp) : 256 / (8 * bpp); 361 /* The linear reads start at tiled_x & ~(granularity - 1). 362 * If linear_x == 0 && tiled_x % granularity != 0, the hw 372 if ((0 + copy_width) % granularity) 373 end_linear_address += granularity - (0 + copy_width) % granularity;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| H A D | zink_state.c | 544 round_to_granularity(float value, float granularity) argument 546 return roundf(value / granularity) * granularity; 550 line_width(float width, float granularity, const float range[2]) argument 552 assert(granularity >= 0); 555 if (granularity > 0) 556 width = round_to_granularity(width, granularity);
|
| /xsrc/external/mit/xf86-video-qxl/dist/src/ |
| H A D | mspace.c | 721 size_t granularity; member in struct:malloc_params 750 /* granularity-align a size */ 752 (((S) + (mparams.granularity)) & ~(mparams.granularity - SIZE_T_ONE)) 757 (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0) 1150 mparams.granularity = ((DEFAULT_GRANULARITY != 0)? 1165 ((mparams.granularity & (mparams.granularity-SIZE_T_ONE)) != 0) || 1179 mparams.granularity = val;
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/xaa/ |
| H A D | xaaPCache.c | 641 int x, y, w, h, ntotal, granularity, width, height, i; local in function:XAAInitPixmapCache 667 granularity = infoRec->CachePixelGranularity; 668 if(granularity <= 1) granularity = 0; 674 if(granularity) { 675 int tmp = x % granularity; 676 if(tmp) x += (granularity - tmp);
|
| H A D | xaaInit.c | 582 area->granularity = 0;
|
| /xsrc/external/mit/MesaLib/dist/docs/isl/ |
| H A D | ccs.rst | 68 format. The CCS tiling formats operate on a 1 or 2-bit granularity rather than 69 the byte granularity of most tiling formats.
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/ |
| H A D | screen.rst | 548 dilation granularity for values relative to the minimum dilation.
|
| /xsrc/external/mit/MesaLib/dist/docs/gallium/ |
| H A D | screen.rst | 647 dilation granularity for values relative to the minimum dilation.
|
| /xsrc/external/mit/libXau/dist/ |
| H A D | aclocal.m4 | 834 # granularity, so we don't check for anything finer than that. (See below.)
|
| /xsrc/external/mit/libXfont2/dist/ |
| H A D | aclocal.m4 | 834 # granularity, so we don't check for anything finer than that. (See below.)
|
| /xsrc/external/mit/libXrender/dist/ |
| H A D | aclocal.m4 | 834 # granularity, so we don't check for anything finer than that. (See below.)
|
| /xsrc/external/mit/libxshmfence/dist/ |
| H A D | aclocal.m4 | 834 # granularity, so we don't check for anything finer than that. (See below.)
|
| /xsrc/external/mit/oclock/dist/ |
| H A D | aclocal.m4 | 834 # granularity, so we don't check for anything finer than that. (See below.)
|