Home
last modified time | relevance | path

Searched refs:intbuf (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/VEX/priv/
Dmain_util.c344 HChar intbuf[100]; /* big enough for a 64-bit # in base 2 */ in vprintf_wrk() local
428 convert_int(intbuf, l, 10/*base*/, True/*signed*/, in vprintf_wrk()
431 len2 = vex_strlen(intbuf); in vprintf_wrk()
434 PAD(len1); PUTSTR(intbuf); PAD(len3); in vprintf_wrk()
450 convert_int(intbuf, l, base, False/*unsigned*/, hexcaps); in vprintf_wrk()
452 len2 = vex_strlen(intbuf); in vprintf_wrk()
455 PAD(len1); PUTSTR(intbuf); PAD(len3); in vprintf_wrk()
462 convert_int(intbuf, l, 16/*base*/, False/*unsigned*/, hexcaps); in vprintf_wrk()
464 len2 = vex_strlen(intbuf)+2; in vprintf_wrk()
467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3); in vprintf_wrk()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c427 uint8_t *intbuf = (uint8_t *)malloc(sizeof(uint8_t) * width2 * height); in vp9_resize_plane() local
432 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) in vp9_resize_plane()
439 resize_multistep(input + in_stride * i, width, intbuf + width2 * i, width2, in vp9_resize_plane()
442 fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_resize_plane()
448 free(intbuf); in vp9_resize_plane()
716 uint16_t *intbuf = (uint16_t *)malloc(sizeof(uint16_t) * width2 * height); in vp9_highbd_resize_plane() local
721 if (intbuf == NULL || tmpbuf == NULL || arrbuf == NULL || arrbuf2 == NULL) in vp9_highbd_resize_plane()
725 intbuf + width2 * i, width2, tmpbuf, bd); in vp9_highbd_resize_plane()
728 highbd_fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_highbd_resize_plane()
735 free(intbuf); in vp9_highbd_resize_plane()