Searched refs:min_stride (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/core/lib/jpeg/ |
D | jpeg_mem.cc | 225 const int min_stride = target_output_width * components * sizeof(JSAMPLE); in UncompressLow() local 227 stride = min_stride; in UncompressLow() 228 } else if (stride < min_stride) { in UncompressLow() 229 LOG(ERROR) << "Incompatible stride: " << stride << " < " << min_stride; in UncompressLow() 316 memcpy(output_line, tempdata + mcu_align_offset, min_stride); in UncompressLow() 334 memset(output_line, 0, min_stride); in UncompressLow() 337 memcpy(output_line, output_line - stride, min_stride); in UncompressLow() 349 TF_ANNOTATE_MEMORY_IS_INITIALIZED(output_line, min_stride); in UncompressLow() 468 const int min_stride = target_output_width * components * sizeof(JSAMPLE); in UncompressLow() local 470 stride = min_stride; in UncompressLow() [all …]
|
/external/igt-gpu-tools/lib/ |
D | igt_fb.c | 614 uint32_t min_stride = fb->plane_width[plane] * in calc_plane_stride() local 630 stride = max(min_stride, 512); in calc_plane_stride() 639 return ALIGN(min_stride, 256); in calc_plane_stride() 646 return ALIGN(min_stride, tile_width); in calc_plane_stride()
|
/external/ruy/ruy/ |
D | test.h | 488 const int min_stride = order == Order::kColMajor ? rows : cols; 493 layout->set_stride(min_stride); 495 layout->set_stride(min_stride + 1);
|
/external/virglrenderer/src/ |
D | vrend_renderer.c | 7382 GLuint min_stride = util_format_get_stride(res->base.format, info->box->width); in check_iov_bounds() local 7383 if (info->stride < min_stride) in check_iov_bounds()
|