/external/libvpx/libvpx/vp9/encoder/ |
vp9_resize.c | 427 uint8_t *intbuf = (uint8_t *)calloc(width2 * height, sizeof(*intbuf)); local 432 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) 439 resize_multistep(input + in_stride * i, width, intbuf + width2 * i, width2, 442 fill_col_to_arr(intbuf + i, width2, height, arrbuf); 448 free(intbuf); 716 uint16_t *intbuf = (uint16_t *)malloc(sizeof(uint16_t) * width2 * height); local 721 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) 729 intbuf + width2 * i, width2, tmpbuf, bd); 732 highbd_fill_col_to_arr(intbuf + i, width2, height, arrbuf) [all...] |
/external/gflags/src/ |
gflags.cc | 371 char intbuf[64]; // enough to hold even the biggest number local 376 snprintf(intbuf, sizeof(intbuf), "%" PRId32, VALUE_AS(int32)); 377 return intbuf; 379 snprintf(intbuf, sizeof(intbuf), "%" PRIu32, VALUE_AS(uint32)); 380 return intbuf; 382 snprintf(intbuf, sizeof(intbuf), "%" PRId64, VALUE_AS(int64)); 383 return intbuf; [all...] |
/external/libaom/libaom/av1/common/ |
resize.c | 648 uint8_t *intbuf = (uint8_t *)aom_malloc(sizeof(uint8_t) * width2 * height); local 653 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) 660 resize_multistep(input + in_stride * i, width, intbuf + width2 * i, width2, 663 fill_col_to_arr(intbuf + i, width2, height, arrbuf); 669 aom_free(intbuf); 679 double *intbuf = (double *)aom_malloc(sizeof(double) * width2 * height); local 682 if (intbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) goto Error; 689 intbuf + width2 * i, width2); 691 fill_col_to_arr_double_prec(intbuf + i, width2, height, arrbuf); 697 aom_free(intbuf); 1021 uint16_t *intbuf = (uint16_t *)aom_malloc(sizeof(uint16_t) * width2 * height); local [all...] |