Searched refs:orig_width (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ResizeNearestNeighborGrad.pbtxt | 13 = A 1-D int32 Tensor of 2 elements: `orig_height, orig_width`. The 20 4-D with shape `[batch, orig_height, orig_width, channels]`. Gradients
|
D | api_def_ResizeBilinearGrad.pbtxt | 13 4-D with shape `[batch, orig_height, orig_width, channels]`, 20 4-D with shape `[batch, orig_height, orig_width, channels]`.
|
D | api_def_ResizeBicubicGrad.pbtxt | 13 4-D with shape `[batch, orig_height, orig_width, channels]`, 20 4-D with shape `[batch, orig_height, orig_width, channels]`.
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 4237 static void extend_palette_color_map(uint8_t *const color_map, int orig_width, in extend_palette_color_map() argument 4241 assert(new_width >= orig_width); in extend_palette_color_map() 4243 if (new_width == orig_width && new_height == orig_height) return; in extend_palette_color_map() 4246 memmove(color_map + j * new_width, color_map + j * orig_width, orig_width); in extend_palette_color_map() 4248 memset(color_map + j * new_width + orig_width, in extend_palette_color_map() 4249 color_map[j * new_width + orig_width - 1], new_width - orig_width); in extend_palette_color_map()
|