HomeSort by relevance Sort by last modified time
    Searched refs:pByte (Results 1 - 4 of 4) sorted by null

  /external/pdfium/third_party/lcms/src/
cmsplugin.c 41 cmsUInt8Number* pByte = (cmsUInt8Number*) &Word;
44 tmp = pByte[0];
45 pByte[0] = pByte[1];
46 pByte[1] = tmp;
62 cmsUInt8Number* pByte = (cmsUInt8Number*) &DWord;
66 temp1 = *pByte++;
67 temp2 = *pByte++;
68 *(pByte-1) = *pByte;
    [all...]
cmsio0.c 678 cmsUInt8Number* pByte = (cmsUInt8Number*) &DWord;
682 if (*pByte > 0x09) *pByte = (cmsUInt8Number) 0x09;
683 temp1 = *(pByte+1) & 0xf0;
684 temp2 = *(pByte+1) & 0x0f;
687 *(pByte+1) = (cmsUInt8Number)(temp1 | temp2);
688 *(pByte+2) = (cmsUInt8Number)0;
689 *(pByte+3) = (cmsUInt8Number)0;
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 243 * @param[in] pByte The byte to decrypt.
245 void FwdLockFile_DecryptByte(FwdLockFile_Session_t * pSession, unsigned char *pByte) {
255 *pByte ^= pSession->keyStream[blockOffset];
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 889 char *pByte = (char*)Result.pVal;
891 char Tmp = pByte[i];
892 pByte[i] = pByte[BitWidth / APINT_WORD_SIZE - 1 - i];
893 pByte[BitWidth / APINT_WORD_SIZE - i - 1] = Tmp;
    [all...]

Completed in 282 milliseconds