Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_resize.c455 uint8_t *tmpbuf = NULL; in resize_multistep() local
458 if (!tmpbuf) { in resize_multistep()
459 tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * length); in resize_multistep()
460 otmp = tmpbuf; in resize_multistep()
481 if (tmpbuf) in resize_multistep()
482 free(tmpbuf); in resize_multistep()
516 uint8_t *tmpbuf = (uint8_t *)malloc(sizeof(uint8_t) * in vp9_resize_plane() local
521 intbuf + width2 * i, width2, tmpbuf); in vp9_resize_plane()
524 resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf); in vp9_resize_plane()
528 free(tmpbuf); in vp9_resize_plane()
/hardware/bsp/intel/peripheral/libupm/src/ds1307/
Dds1307.cxx142 uint8_t tmpbuf; in setTime() local
144 readBytes(0, &tmpbuf, 1); in setTime()
145 buffer[0] = decToBcd(seconds) | (tmpbuf & 0x80); in setTime()