Home
last modified time | relevance | path

Searched refs:pBytes (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/core/fpdfapi/font/
Dcpdf_cmap.cpp343 auto* pBytes = reinterpret_cast<const uint8_t*>(pString); in GetNextChar() local
346 return pBytes[offset++]; in GetNextChar()
349 uint8_t byte1 = pBytes[offset++]; in GetNextChar()
350 return 256 * byte1 + pBytes[offset++]; in GetNextChar()
353 uint8_t byte1 = pBytes[offset++]; in GetNextChar()
356 return 256 * byte1 + pBytes[offset++]; in GetNextChar()
361 codes[0] = pBytes[offset++]; in GetNextChar()
375 codes[char_size++] = pBytes[offset++]; in GetNextChar()
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTGlobal.h254 inline void PVRTByteSwap(unsigned char* pBytes, int i32ByteNo) in PVRTByteSwap() argument
259 PVRTswap<unsigned char>(pBytes[i++], pBytes[j--]); in PVRTByteSwap()
/external/aac/libMpegTPEnc/src/
Dtpenc_latm.h258 int *pBytes);
Dtpenc_latm.cpp725 int *pBytes) { in transportEnc_LatmGetFrame() argument
764 *pBytes = (FDKgetValidBits(hBs) + 7) >> 3; in transportEnc_LatmGetFrame()
776 *pBytes = 0; in transportEnc_LatmGetFrame()
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShell.cpp639 inline void PVRShellByteSwap(unsigned char* pBytes, int i32ByteNo) in PVRShellByteSwap() argument
645 unsigned char cTmp = pBytes[i]; in PVRShellByteSwap()
646 pBytes[i] = pBytes[j]; in PVRShellByteSwap()
647 pBytes[j] = cTmp; in PVRShellByteSwap()
/external/skqp/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h8324 char *pBytes = VMA_NULL; in Map() local
8325 VkResult res = pBlock->Map(this, 1, (void**)&pBytes); in Map()
8328 *ppData = pBytes + (ptrdiff_t)hAllocation->GetOffset(); in Map()
/external/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h8324 char *pBytes = VMA_NULL; in Map() local
8325 VkResult res = pBlock->Map(this, 1, (void**)&pBytes); in Map()
8328 *ppData = pBytes + (ptrdiff_t)hAllocation->GetOffset(); in Map()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationOperation.cpp262 deUint8* const pBytes = static_cast<deUint8*>(pData); in fillPattern() local
265 pBytes[i] = pattern[i % DE_LENGTH_OF_ARRAY(pattern)]; in fillPattern()
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc1696 static jlong NativeCrypto_EC_GROUP_new_arbitrary(JNIEnv* env, jclass, jbyteArray pBytes, in NativeCrypto_EC_GROUP_new_arbitrary() argument
1719 if (!arrayToBignum(env, pBytes, &p) || !arrayToBignum(env, aBytes, &a) || in NativeCrypto_EC_GROUP_new_arbitrary()