Home
last modified time | relevance | path

Searched refs:orig_width (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_ResizeNearestNeighborGrad.pbtxt13 = 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
Dapi_def_ResizeBilinearGrad.pbtxt13 4-D with shape `[batch, orig_height, orig_width, channels]`,
20 4-D with shape `[batch, orig_height, orig_width, channels]`.
Dapi_def_ResizeBicubicGrad.pbtxt13 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/
Drdopt.c4237 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()