Searched refs:height2 (Results 1 – 5 of 5) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | resize.c | 645 int in_stride, uint8_t *output, int height2, int width2, in av1_resize_plane() argument 652 uint8_t *arrbuf2 = (uint8_t *)aom_malloc(sizeof(uint8_t) * height2); in av1_resize_plane() 658 assert(height2 > 0); in av1_resize_plane() 664 resize_multistep(arrbuf, height, arrbuf2, height2, tmpbuf); in av1_resize_plane() 665 fill_arr_to_col(output + i, out_stride, height2, arrbuf2); in av1_resize_plane() 677 int height2, int width2, int out_stride) { in av1_upscale_plane_double_prec() argument 681 double *arrbuf2 = (double *)aom_malloc(sizeof(double) * height2); in av1_upscale_plane_double_prec() 686 assert(height2 > 0); in av1_upscale_plane_double_prec() 692 upscale_multistep_double_prec(arrbuf, height, arrbuf2, height2); in av1_upscale_plane_double_prec() 693 fill_arr_to_col_double_prec(output + i, out_stride, height2, arrbuf2); in av1_upscale_plane_double_prec() [all …]
|
D | resize.h | 24 int in_stride, uint8_t *output, int height2, int width2, 28 int height2, int width2, int out_stride); 46 int in_stride, uint8_t *output, int height2,
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 424 int in_stride, uint8_t *output, int height2, int width2, in vp9_resize_plane() argument 431 uint8_t *arrbuf2 = (uint8_t *)calloc(height2, sizeof(*arrbuf2)); in vp9_resize_plane() 437 assert(height2 > 0); in vp9_resize_plane() 443 resize_multistep(arrbuf, height, arrbuf2, height2, tmpbuf); in vp9_resize_plane() 444 fill_arr_to_col(output + i, out_stride, height2, arrbuf2); in vp9_resize_plane() 713 int in_stride, uint8_t *output, int height2, in vp9_highbd_resize_plane() argument 720 uint16_t *arrbuf2 = (uint16_t *)malloc(sizeof(uint16_t) * height2); in vp9_highbd_resize_plane() 726 assert(height2 > 0); in vp9_highbd_resize_plane() 733 highbd_resize_multistep(arrbuf, height, arrbuf2, height2, tmpbuf, bd); in vp9_highbd_resize_plane() 734 highbd_fill_arr_to_col(CONVERT_TO_SHORTPTR(output + i), out_stride, height2, in vp9_highbd_resize_plane()
|
D | vp9_resize.h | 22 int in_stride, uint8_t *output, int height2, int width2, 42 int in_stride, uint8_t *output, int height2,
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | layers_test.py | 3670 height2, width2 = (20, 20) 3672 batch_shape2 = (batch_size, height2, width2, nchannels) 3688 np_keypoints2 = self._SpatialSoftmax(x_loc, y_loc, height2, width2,
|