Home
last modified time | relevance | path

Searched refs:block_x (Results 1 – 9 of 9) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmsvideo1.c91 int block_x, block_y; /* block width and height iterators */ in msvideo1_decode_8bit() local
115 for (block_x = blocks_wide; block_x > 0; block_x--) { in msvideo1_decode_8bit()
191 int block_x, block_y; /* block width and height iterators */ in msvideo1_decode_16bit() local
215 for (block_x = blocks_wide; block_x > 0; block_x--) { in msvideo1_decode_16bit()
Descape130.c204 block_index, block_x = 0; in escape130_decode_frame() local
299 block_x++; in escape130_decode_frame()
300 if (block_x * 2 == avctx->width) { in escape130_decode_frame()
301 block_x = 0; in escape130_decode_frame()
Dmjpegdec.c1403 int block_x, block_y; in shift_output() local
1407 for (block_x=0; block_x<size; block_x++) in shift_output()
1408 *(uint16_t*)(ptr + 2*block_x + block_y*linesize) <<= 16 - s->bits; in shift_output()
1411 for (block_x=0; block_x<size; block_x++) in shift_output()
1412 *(ptr + block_x + block_y*linesize) <<= 8 - s->bits; in shift_output()
/third_party/mindspore/mindspore/_extends/graph_kernel/model/
Dgraph_parallel.py100 block_x = (total_space // red_space + thread_y - 1) // thread_y
101 block_w = (weight + block_x - 1) // block_x
102 waves = (block_x + self.MAX_BLOCK - 1) // self.MAX_BLOCK
103 self.block_num = min(self.MAX_BLOCK, block_x)
/third_party/mindspore/mindspore/ccsrc/profiler/device/gpu/
Dgpu_profiling.h62 uint64_t block_x; member
Dgpu_data_saver.cc34 ? "\"" + std::to_string(basic_info_->kernel_info.block_x) + ',' + in ActivityData()
Dgpu_profiling.cc664 profilingData->kernel_info.block_x = kernel->blockX; in HandleActivityKernelRecord()
/third_party/ffmpeg/tests/checkasm/
Dh264dsp.c275 int block_x = index % 16; in check_idct_multiple() local
276 int offset = (block_y * 16 + block_x) * SIZEOF_PIXEL; in check_idct_multiple()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c190 block_x(int x) in block_x() function
209 const int minleft = block_x(MIN2(xleft0, xleft1)); in flush_spans()