Lines Matching refs:buf2
444 time_function(vidCopyFunc mf, unsigned char *buf1, unsigned char *buf2)
450 (*mf) (buf1, buf2, BSIZA, BSIZW, BSIZH, 0);
523 unsigned char *buf1, *buf2, *buf3;
567 * player buffer (buf2) and a pool of uninitialized "video" data (buf3).
572 if (NULL == (buf2 = (unsigned char *)malloc(testSize))) {
577 free(buf2);
585 /* Make probable that buf1 and buf2 are in memory by referencing them. */
586 libc_YUV42X(buf1, buf2, BSIZA, BSIZW, BSIZH, 0);
596 kernel_memcpy(buf2, buf3, testSize);
599 tmp = time_function(curData->mFunc, buf1, buf2);
602 kernel_memcpy(buf2, buf3, testSize);
603 tmp2 = time_function(curData->mFunc, buf1, buf2);
629 free(buf2);