/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_tile.c | 46 const unsigned tile_width = 8, tile_height = 4; in micro_tile_8_x_4_8bit() local 50 for (row = 0; row < height; row += tile_height) in micro_tile_8_x_4_8bit() 59 for (j = 0; j < MIN2(tile_height, height - row); ++j) in micro_tile_8_x_4_8bit() 77 const unsigned tile_width = 4, tile_height = 4; in micro_tile_4_x_4_16bit() local 81 for (row = 0; row < height; row += tile_height) in micro_tile_4_x_4_16bit() 90 for (j = 0; j < MIN2(tile_height, height - row); ++j) in micro_tile_4_x_4_16bit() 108 const unsigned tile_width = 8, tile_height = 2; in micro_tile_8_x_2_16bit() local 112 for (row = 0; row < height; row += tile_height) in micro_tile_8_x_2_16bit() 121 for (j = 0; j < MIN2(tile_height, height - row); ++j) in micro_tile_8_x_2_16bit() 139 const unsigned tile_width = 4, tile_height = 2; in micro_tile_4_x_2_32bit() local [all …]
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_tile.c | 46 const unsigned tile_width = 8, tile_height = 4; in micro_tile_8_x_4_8bit() local 50 for (row = 0; row < height; row += tile_height) in micro_tile_8_x_4_8bit() 59 for (j = 0; j < MIN2(tile_height, height - row); ++j) in micro_tile_8_x_4_8bit() 77 const unsigned tile_width = 4, tile_height = 4; in micro_tile_4_x_4_16bit() local 81 for (row = 0; row < height; row += tile_height) in micro_tile_4_x_4_16bit() 90 for (j = 0; j < MIN2(tile_height, height - row); ++j) in micro_tile_4_x_4_16bit() 108 const unsigned tile_width = 8, tile_height = 2; in micro_tile_8_x_2_16bit() local 112 for (row = 0; row < height; row += tile_height) in micro_tile_8_x_2_16bit() 121 for (j = 0; j < MIN2(tile_height, height - row); ++j) in micro_tile_8_x_2_16bit() 139 const unsigned tile_width = 4, tile_height = 2; in micro_tile_4_x_2_32bit() local [all …]
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_blit.c | 57 int tile_height = msaa ? 32 : 64; in vc4_tile_blit() local 80 is_tile_unaligned(info->dst.box.y, tile_height) || in vc4_tile_blit() 83 (is_tile_unaligned(info->dst.box.height, tile_height) && in vc4_tile_blit() 140 job->tile_height = 32; in vc4_tile_blit() 151 job->tile_height = tile_height; in vc4_tile_blit()
|
D | vc4_job.c | 200 job->tile_height = 32; in vc4_get_job() 203 job->tile_height = 64; in vc4_get_job() 259 job->tile_height); in vc4_get_job_for_fbo() 448 submit.min_y_tile = job->draw_min_y / job->tile_height; in vc4_job_submit() 450 submit.max_y_tile = (job->draw_max_y - 1) / job->tile_height; in vc4_job_submit()
|
D | vc4_context.h | 269 uint32_t tile_height; /** @< Height of a tile. */ member
|
D | vc4_program.c | 367 uint32_t tile_height = 32; in ntq_emit_txf() local 368 uint32_t tile_size = (tile_height * tile_width * in ntq_emit_txf() 374 uint32_t h = align(c->key->tex[unit].msaa_height, tile_height); in ntq_emit_txf() 375 uint32_t h_tiles = h / tile_height; in ntq_emit_txf()
|
/external/ImageMagick/coders/ |
D | fpx.c | 175 tile_height, in ReadFPXImage() local 213 tile_height=64; in ReadFPXImage() 225 &width,&height,&tile_width,&tile_height,&colorspace,&flashpix); in ReadFPXImage() 319 if (((width >> i) < tile_width) || ((height >> i) < tile_height)) in ReadFPXImage() 364 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,(tile_height+ in ReadFPXImage() 405 if ((y % tile_height) == 0) in ReadFPXImage() 412 tile_height-1,scene,&fpx_info); in ReadFPXImage() 416 (float) (y+tile_height-1)/image->rows,(ssize_t) image->columns, in ReadFPXImage() 417 (ssize_t) tile_height,&fpx_info); in ReadFPXImage() 429 r=red_component->theData+(y % tile_height)*red_component->lineStride; in ReadFPXImage() [all …]
|
/external/webp/src/enc/ |
D | predictor_enc.c | 519 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetPredictionCostCrossColorRed() argument 525 VP8LCollectColorRedTransforms(argb, stride, tile_width, tile_height, in GetPredictionCostCrossColorRed() 542 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetBestGreenToRed() argument 549 argb, stride, tile_width, tile_height, prev_x, prev_y, in GetBestGreenToRed() 560 argb, stride, tile_width, tile_height, prev_x, prev_y, in GetBestGreenToRed() 572 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetPredictionCostCrossColorBlue() argument 578 VP8LCollectColorBlueTransforms(argb, stride, tile_width, tile_height, in GetPredictionCostCrossColorBlue() 606 const uint32_t* argb, int stride, int tile_width, int tile_height, in GetBestGreenRedToBlue() argument 620 argb, stride, tile_width, tile_height, prev_x, prev_y, in GetBestGreenRedToBlue() 630 argb, stride, tile_width, tile_height, prev_x, prev_y, in GetBestGreenRedToBlue() [all …]
|
/external/webp/src/dsp/ |
D | lossless_enc_mips_dsp_r2.c | 175 int tile_width, int tile_height, in CollectColorBlueTransforms() argument 181 while (tile_height-- > 0) { in CollectColorBlueTransforms() 226 int tile_width, int tile_height, in CollectColorRedTransforms() argument 229 while (tile_height-- > 0) { in CollectColorRedTransforms()
|
D | lossless.h | 131 int tile_width, int tile_height, 137 int tile_width, int tile_height, 146 int tile_width, int tile_height, 149 int tile_width, int tile_height,
|
D | lossless_enc.c | 554 int tile_width, int tile_height, in VP8LCollectColorRedTransforms_C() argument 556 while (tile_height-- > 0) { in VP8LCollectColorRedTransforms_C() 566 int tile_width, int tile_height, in VP8LCollectColorBlueTransforms_C() argument 569 while (tile_height-- > 0) { in VP8LCollectColorBlueTransforms_C()
|
D | lossless_enc_sse2.c | 84 int tile_width, int tile_height, in CollectColorBlueTransforms() argument 96 for (y = 0; y < tile_height; ++y) { in CollectColorBlueTransforms() 128 left_over, tile_height, in CollectColorBlueTransforms() 135 int tile_width, int tile_height, in CollectColorRedTransforms() argument 144 for (y = 0; y < tile_height; ++y) { in CollectColorRedTransforms() 170 left_over, tile_height, in CollectColorRedTransforms()
|
/external/ImageMagick/MagickCore/ |
D | shear.c | 760 tile_height, in IntegralRotateImage() local 769 GetPixelCacheTileSize(image,&tile_width,&tile_height); in IntegralRotateImage() 775 for (tile_y=0; tile_y < (ssize_t) image->rows; tile_y+=(ssize_t) tile_height) in IntegralRotateImage() 804 height=tile_height; in IntegralRotateImage() 805 if ((tile_y+(ssize_t) tile_height) > (ssize_t) image->rows) in IntegralRotateImage() 806 height=(size_t) (tile_height-(tile_y+tile_height-image->rows)); in IntegralRotateImage() 871 proceed=SetImageProgress(image,RotateImageTag,progress+=tile_height, in IntegralRotateImage() 974 tile_height, in IntegralRotateImage() local 983 GetPixelCacheTileSize(image,&tile_width,&tile_height); in IntegralRotateImage() 989 for (tile_y=0; tile_y < (ssize_t) image->rows; tile_y+=(ssize_t) tile_height) in IntegralRotateImage() [all …]
|
D | widget.c | 2803 #define tile_height 70 in XCommandWidget() macro 2945 (((3*height) >> 1)+10)+tile_height+20); in XCommandWidget() 3138 y=tile_height+20; in XCommandWidget() 3170 (char *) tile_bits,tile_width,tile_height,1L,0L,1); in XCommandWidget() 3174 windows->command.annotate_context,0,0,tile_width,tile_height, in XCommandWidget()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_linear.c | 86 unsigned tile_width, unsigned tile_height, in pipe_linear_fill_info() argument 92 t->tile.height = tile_height; in pipe_linear_fill_info()
|
D | u_linear.h | 89 unsigned tile_width, unsigned tile_height,
|
/external/mesa3d/src/gallium/drivers/vc4/kernel/ |
D | vc4_gem.c | 147 exec->tile_height = 32; in vc4_cl_validate() 150 exec->tile_height = 64; in vc4_cl_validate()
|
D | vc4_drv.h | 84 uint32_t tile_width, tile_height; member
|
/external/mesa3d/src/gallium/drivers/r300/ |
D | r300_texture_desc.c | 155 unsigned height, tile_height; in r300_texture_get_nblocksy() local 168 tile_height = r300_get_pixel_alignment(tex->b.b.format, in r300_texture_get_nblocksy() 173 height = align(height, tile_height); in r300_texture_get_nblocksy() 190 height >= tile_height * 3) { in r300_texture_get_nblocksy() 191 height = align(height, tile_height * 2); in r300_texture_get_nblocksy() 194 *out_aligned_for_cbzb = height % (tile_height * 2) == 0; in r300_texture_get_nblocksy()
|
D | r300_texture.c | 1230 uint32_t offset, tile_height; in r300_create_surface_custom() local 1259 tile_height = r300_get_pixel_alignment(surface->base.format, in r300_create_surface_custom() 1266 tile_height); in r300_create_surface_custom()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_mipmap_tree.c | 582 uint32_t tile_width, tile_height; in intel_get_yf_ys_bo_size() local 587 &tile_width, &tile_height); in intel_get_yf_ys_bo_size() 589 aligned_y = ALIGN(mt->total_height, tile_height); in intel_get_yf_ys_bo_size() 2373 uint32_t tile_height = 64; in intel_offset_S8() local 2377 uint32_t tile_y = y / tile_height; in intel_offset_S8() 2381 uint32_t byte_y = y % tile_height; in intel_offset_S8()
|