Searched refs:tile_width (Results 1 - 25 of 28) sorted by relevance

12

/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_tile.c46 const unsigned tile_width = 8, tile_height = 4; local
47 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
52 for (col = 0; col < width; col += tile_width, ++k)
61 unsigned columns = MIN2(tile_width, width - col);
63 dst2 += tile_width;
77 const unsigned tile_width = 4, tile_height = 4; local
78 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
83 for (col = 0; col < width; col += tile_width,
108 const unsigned tile_width = 8, tile_height = 2; local
139 const unsigned tile_width = 4, tile_height = 2; local
170 const unsigned tile_width = 2, tile_height = 2; local
260 const unsigned tile_width = 8, tile_height = 4; local
293 const unsigned tile_width = 8, tile_height = 2; local
326 const unsigned tile_width = 4, tile_height = 4; local
359 const unsigned tile_width = 4, tile_height = 2; local
392 const unsigned tile_width = 2, tile_height = 2; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c46 const unsigned tile_width = 8, tile_height = 4; local
47 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
52 for (col = 0; col < width; col += tile_width, ++k)
61 unsigned columns = MIN2(tile_width, width - col);
63 dst2 += tile_width;
77 const unsigned tile_width = 4, tile_height = 4; local
78 const unsigned tiles_in_row = (width + (tile_width - 1)) / tile_width;
83 for (col = 0; col < width; col += tile_width,
108 const unsigned tile_width = 8, tile_height = 2; local
139 const unsigned tile_width = 4, tile_height = 2; local
170 const unsigned tile_width = 2, tile_height = 2; local
260 const unsigned tile_width = 8, tile_height = 4; local
293 const unsigned tile_width = 8, tile_height = 2; local
326 const unsigned tile_width = 4, tile_height = 4; local
359 const unsigned tile_width = 4, tile_height = 2; local
392 const unsigned tile_width = 2, tile_height = 2; local
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_linear.h82 * @tile_width the width of the tile in pixels
89 unsigned tile_width, unsigned tile_height,
H A Du_linear.c86 unsigned tile_width, unsigned tile_height,
91 t->tile.width = tile_width;
84 pipe_linear_fill_info(struct pipe_tile_info *t, const struct u_linear_format_block *block, unsigned tile_width, unsigned tile_height, unsigned tiles_x, unsigned tiles_y) argument
/external/webp/src/dsp/
H A Dlossless.h131 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,
H A Dlossless_enc_mips_dsp_r2.c176 int tile_width,
188 for (x = 0; x < (tile_width >> 1); ++x) {
214 if (tile_width & 1) {
230 int tile_width,
239 for (x = 0; x < (tile_width >> 1); ++x) {
259 if (tile_width & 1) {
174 CollectColorBlueTransforms_MIPSdspR2(const uint32_t* argb, int stride, int tile_width, int tile_height, int green_to_blue, int red_to_blue, int histo[]) argument
228 CollectColorRedTransforms_MIPSdspR2(const uint32_t* argb, int stride, int tile_width, int tile_height, int green_to_red, int histo[]) argument
H A Dlossless.c212 const int tile_width = 1 << transform->bits_; local
213 const int mask = tile_width - 1;
227 int x_end = (x & ~mask) + tile_width;
293 const int tile_width = 1 << transform->bits_; local
294 const int mask = tile_width - 1;
309 VP8LTransformColorInverse(&m, src, tile_width, dst);
310 src += tile_width;
311 dst += tile_width;
H A Dlossless_enc_sse2.c85 int tile_width, int tile_height,
100 for (x = 0; x + SPAN <= tile_width; x += SPAN) {
126 const int left_over = tile_width & (SPAN - 1);
128 VP8LCollectColorBlueTransforms_C(argb + tile_width - left_over, stride,
136 int tile_width, int tile_height,
148 for (x = 0; x + SPAN <= tile_width; x += SPAN) {
168 const int left_over = tile_width & (SPAN - 1);
170 VP8LCollectColorRedTransforms_C(argb + tile_width - left_over, stride,
84 CollectColorBlueTransforms_SSE2(const uint32_t* argb, int stride, int tile_width, int tile_height, int green_to_blue, int red_to_blue, int histo[]) argument
135 CollectColorRedTransforms_SSE2(const uint32_t* argb, int stride, int tile_width, int tile_height, int green_to_red, int histo[]) argument
H A Dlossless_enc.c556 int tile_width, int tile_height,
560 for (x = 0; x < tile_width; ++x) {
568 int tile_width, int tile_height,
573 for (x = 0; x < tile_width; ++x) {
555 VP8LCollectColorRedTransforms_C(const uint32_t* argb, int stride, int tile_width, int tile_height, int green_to_red, int histo[]) argument
567 VP8LCollectColorBlueTransforms_C(const uint32_t* argb, int stride, int tile_width, int tile_height, int green_to_blue, int red_to_blue, int histo[]) argument
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_blit.c56 int tile_width = msaa ? 32 : 64; local
79 if (is_tile_unaligned(info->dst.box.x, tile_width) ||
81 (is_tile_unaligned(info->dst.box.width, tile_width) &&
139 job->tile_width = 32;
150 job->tile_width = tile_width;
H A Dvc4_job.c199 job->tile_width = 32;
202 job->tile_width = 64;
257 job->tile_width);
447 submit.min_x_tile = job->draw_min_x / job->tile_width;
449 submit.max_x_tile = (job->draw_max_x - 1) / job->tile_width;
H A Dvc4_context.h268 uint32_t tile_width; /** @< Width of a tile. */ member in struct:vc4_job
/external/mesa3d/src/gallium/drivers/vc4/kernel/
H A Dvc4_drv.h84 uint32_t tile_width, tile_height; member in struct:vc4_exec_info
H A Dvc4_gem.c146 exec->tile_width = 32;
149 exec->tile_width = 64;
H A Dvc4_render_cl.c98 (DIV_ROUND_UP(exec->args->width, exec->tile_width) * y + x);
373 exec->tile_width);
/external/webp/src/enc/
H A Dpredictor_enc.c539 const uint32_t* argb, int stride, int tile_width, int tile_height,
545 VP8LCollectColorRedTransforms(argb, stride, tile_width, tile_height,
562 const uint32_t* argb, int stride, int tile_width, int tile_height,
569 argb, stride, tile_width, tile_height, prev_x, prev_y,
580 argb, stride, tile_width, tile_height, prev_x, prev_y,
592 const uint32_t* argb, int stride, int tile_width, int tile_height,
598 VP8LCollectColorBlueTransforms(argb, stride, tile_width, tile_height,
626 const uint32_t* argb, int stride, int tile_width, int tile_height,
640 argb, stride, tile_width, tile_height, prev_x, prev_y,
650 argb, stride, tile_width, tile_heigh
538 GetPredictionCostCrossColorRed( const uint32_t* argb, int stride, int tile_width, int tile_height, VP8LMultipliers prev_x, VP8LMultipliers prev_y, int green_to_red, const int accumulated_red_histo[256]) argument
561 GetBestGreenToRed( const uint32_t* argb, int stride, int tile_width, int tile_height, VP8LMultipliers prev_x, VP8LMultipliers prev_y, int quality, const int accumulated_red_histo[256], VP8LMultipliers* const best_tx) argument
591 GetPredictionCostCrossColorBlue( const uint32_t* argb, int stride, int tile_width, int tile_height, VP8LMultipliers prev_x, VP8LMultipliers prev_y, int green_to_blue, int red_to_blue, const int accumulated_blue_histo[256]) argument
625 GetBestGreenRedToBlue( const uint32_t* argb, int stride, int tile_width, int tile_height, VP8LMultipliers prev_x, VP8LMultipliers prev_y, int quality, const int accumulated_blue_histo[256], VP8LMultipliers* const best_tx) argument
686 const int tile_width = all_x_max - tile_x_offset; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_tiff.cpp202 int tile_width = tile_width0, ok; local
204 if( x + tile_width > m_width )
205 tile_width = m_width - x;
217 icvCvt_BGRA2BGR_8u_C4C3R( buffer + i*tile_width*4, 0,
219 cvSize(tile_width,1), 2 );
221 icvCvt_BGRA2Gray_8u_C4C1R( buffer + i*tile_width*4, 0,
223 cvSize(tile_width,1), 2 );
/external/ImageMagick/MagickCore/
H A Dshear.c765 tile_width;
773 GetPixelCacheTileSize(image,&tile_width,&tile_height);
774 tile_width=image->columns;
787 for ( ; tile_x < (ssize_t) image->columns; tile_x+=(ssize_t) tile_width)
805 width=tile_width;
806 if ((tile_x+(ssize_t) tile_width) > (ssize_t) image->columns)
807 width=(size_t) (tile_width-(tile_x+tile_width-image->columns));
979 tile_width;
987 GetPixelCacheTileSize(image,&tile_width,
761 tile_width; local
975 tile_width; local
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Ddepthwise_conv_op_gpu.cu.cc200 const int tile_width = in_width + filter_width - 1;
203 const int tile_row_size = tile_width * kBlockDepth;
206 const int pad_offset = pad_height * tile_width + pad_width;
230 const int data_pix = thread_row * tile_width + thread_col;
481 const int tile_width = in_width + filter_width - 1;
484 const int tile_pixels = tile_width * tile_height;
486 const int tile_offset = block_height * tile_width;
487 const int pad_offset = pad_height * tile_width + pad_width;
509 const int data_pix = thread_row * tile_width + thread_col;
620 const int tile_width
[all...]
H A Dconv_ops_gpu_3.cu.cc279 int tile_width = TileSizeJ; local
283 tile_width = input_dims[2] - (input_dims_in_tiles[2] - 1) * TileSizeJ;
316 if (tj < tile_width) {
362 for (int i_loc = ti; i_loc < (tile_width); i_loc += WriteRowPerPass) {
/external/ImageMagick/coders/
H A Dfpx.c177 tile_width,
215 tile_width=64;
228 &width,&height,&tile_width,&tile_height,&colorspace,&flashpix);
322 if (((width >> i) < tile_width) || ((height >> i) < tile_height))
818 tile_width;
844 tile_width=64;
874 image->rows,tile_width,tile_height,colorspace,background_color,
174 tile_width, local
812 tile_width; local
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_texture_desc.c118 unsigned tile_width, width, stride; local
136 tile_width = r300_get_pixel_alignment(tex->b.b.format,
141 width = align(width, tile_width);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_mipmap_tree.c582 uint32_t tile_width, tile_height; local
587 &tile_width, &tile_height);
591 stride = ALIGN(stride, tile_width);
2372 uint32_t tile_width = 64; local
2376 uint32_t tile_x = x / tile_width;
2380 uint32_t byte_x = x % tile_width;
/external/libdrm/intel/
H A Dintel_bufmgr_gem.c378 unsigned long tile_width; local
390 tile_width = 512;
392 tile_width = 128;
396 return ROUND_UP_TO(pitch, tile_width);
407 for (i = tile_width; i < pitch; i <<= 1)
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dir_emitter_unnested.cc746 // if (tile_size == tile_width && tile_size == tile_height) {
750 // } else if (x < tile_width) {
774 llvm::Value* tile_width, llvm::Value* tile_height,
779 builder->CreateICmpEQ(builder->getInt64(tile_size), tile_width),
790 builder->CreateICmpULT(logical_x, tile_width), "x_in_tile", builder);

Completed in 1800 milliseconds

12