HomeSort by relevance Sort by last modified time
    Searched full:ptrsrc (Results 1 - 2 of 2) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/nanox/
SDL_nximage.c 67 Uint8 * ptrsrc ; local
72 ptrsrc = src ;
75 *ptrdst++ = GammaRamp_B [*ptrsrc++] >> 8;
76 *ptrdst++ = GammaRamp_G [*ptrsrc++] >> 8;
77 *ptrdst++ = GammaRamp_R [*ptrsrc++] >> 8;
79 ++ptrsrc;
85 Uint8 * ptrsrc ; local
90 ptrsrc = src ;
93 *ptrdst++ = *ptrsrc++;
94 *ptrdst++ = *ptrsrc++
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 628 UChar *ptrDst, *ptrSrc;
633 ptrSrc = bitstream1->bitstreamBuffer + bitstream1->byteCount;
645 M4VENC_MEMCPY(ptrDst, ptrSrc, new_byte + 1);
652 *ptrDst++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
653 ptrSrc++;
655 /* copy for the last byte of ptrSrc, copy extra bits doesn't hurt */
658 *ptrDst++ = (ptrSrc[0] << bitused) | (ptrSrc[1] >> leftover);
659 ptrSrc++
    [all...]

Completed in 148 milliseconds