Home
last modified time | relevance | path

Searched refs:bytePtr (Results 1 – 13 of 13) sorted by relevance

/external/skqp/tests/
DCachedDecodingPixelRefTest.cpp60 char* bytePtr = static_cast<char*>(pixels); in onGetPixels() local
64 sk_memset32((uint32_t*)bytePtr, in onGetPixels()
66 bytePtr += rowBytes; in onGetPixels()
71 sk_memset16((uint16_t*)bytePtr, in onGetPixels()
73 bytePtr += rowBytes; in onGetPixels()
/external/skia/tests/
DCachedDecodingPixelRefTest.cpp59 char* bytePtr = static_cast<char*>(pixels); in onGetPixels() local
63 sk_memset32((uint32_t*)bytePtr, in onGetPixels()
65 bytePtr += rowBytes; in onGetPixels()
70 sk_memset16((uint16_t*)bytePtr, in onGetPixels()
72 bytePtr += rowBytes; in onGetPixels()
/external/dng_sdk/source/
Ddng_read_image.cpp140 inline void DecodeDeltaBytes (uint8 *bytePtr, int32 cols, int32 channels) in DecodeDeltaBytes() argument
146 uint8 b0 = bytePtr [0]; in DecodeDeltaBytes()
148 bytePtr += 1; in DecodeDeltaBytes()
153 b0 += bytePtr [0]; in DecodeDeltaBytes()
155 bytePtr [0] = b0; in DecodeDeltaBytes()
157 bytePtr += 1; in DecodeDeltaBytes()
166 uint8 b0 = bytePtr [0]; in DecodeDeltaBytes()
167 uint8 b1 = bytePtr [1]; in DecodeDeltaBytes()
168 uint8 b2 = bytePtr [2]; in DecodeDeltaBytes()
170 bytePtr += 3; in DecodeDeltaBytes()
[all …]
Ddng_image_writer.cpp2828 inline void EncodeDeltaBytes (uint8 *bytePtr, int32 cols, int32 channels) in EncodeDeltaBytes() argument
2834 bytePtr += (cols - 1); in EncodeDeltaBytes()
2836 uint8 this0 = bytePtr [0]; in EncodeDeltaBytes()
2841 uint8 prev0 = bytePtr [-1]; in EncodeDeltaBytes()
2845 bytePtr [0] = this0; in EncodeDeltaBytes()
2849 bytePtr -= 1; in EncodeDeltaBytes()
2858 bytePtr += (cols - 1) * 3; in EncodeDeltaBytes()
2860 uint8 this0 = bytePtr [0]; in EncodeDeltaBytes()
2861 uint8 this1 = bytePtr [1]; in EncodeDeltaBytes()
2862 uint8 this2 = bytePtr [2]; in EncodeDeltaBytes()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageSubresourceLayoutTests.cpp256 auto bytePtr = reinterpret_cast<unsigned char*>(location); in fillWithRandomData() local
257 const auto endPtr = bytePtr + length; in fillWithRandomData()
259 while (bytePtr != endPtr) in fillWithRandomData()
261 const auto remaining = (endPtr - bytePtr); in fillWithRandomData()
263 …ng >= 8) { const auto data = rnd.getUint64(); deMemcpy(bytePtr, &data, sizeof(data)); bytePtr +=… in fillWithRandomData()
264 …ning >= 4) { const auto data = rnd.getUint32(); deMemcpy(bytePtr, &data, sizeof(data)); bytePtr +=… in fillWithRandomData()
265 …ning >= 2) { const auto data = rnd.getUint16(); deMemcpy(bytePtr, &data, sizeof(data)); bytePtr +=… in fillWithRandomData()
266 …else { const auto data = rnd.getUint8(); deMemcpy(bytePtr, &data, sizeof(data)); bytePtr += … in fillWithRandomData()
/external/skia/modules/canvaskit/
Dgm.js39 var bytePtr = copyArrayBuffer(buffer);
40 WasmGMTests._LoadResource(name, bytePtr, buffer.byteLength);
/external/deqp/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessUtil.cpp122 const deUint8* bytePtr = reinterpret_cast<const deUint8*>(valuePtr); in isValueZero() local
126 if (bytePtr[i] != 0) in isValueZero()
250 const deUint8* bytePtr = reinterpret_cast<const deUint8*>(valuePtr); in logValue() local
256 logMsg << " " << (deUint32)bytePtr[i]; in logValue()
/external/skia/src/effects/
DSkTableColorFilter.cpp69 auto apply_table_to_component = [&](skvm::F32 c, const uint8_t* bytePtr) -> skvm::F32 { in onProgram() argument
71 skvm::Uniform table = uniforms->pushPtr(bytePtr); in onProgram()
/external/python/cpython2/Mac/Modules/cg/
DCFMLateImport.c249 UInt8 * bytePtr; in DecodeVCountValue() local
253 bytePtr = (UInt8 *)start; in DecodeVCountValue()
258 byte = *bytePtr++; in DecodeVCountValue()
263 return bytePtr - start; in DecodeVCountValue()
/external/icu/icu4c/source/common/
Dicuplug.cpp81 uint8_t *bytePtr = (uint8_t *)list; in uplug_removeEntryAt() local
90 memmove(bytePtr+(itemToRemove*memberSize), bytePtr+((itemToRemove+1)*memberSize), memberSize); in uplug_removeEntryAt()
/external/zstd/lib/dictBuilder/
Dzdict.c634 { const BYTE* bytePtr; in ZDICT_countEStats() local
635 for(bytePtr = seqStorePtr->litStart; bytePtr < seqStorePtr->lit; bytePtr++) in ZDICT_countEStats()
636 countLit[*bytePtr]++; in ZDICT_countEStats()
/external/lz4/lib/
Dlz4hc.c213 { const BYTE* bytePtr = (const BYTE*)(&pattern) + 3; /* works for any endianess */ in LZ4HC_reverseCountPattern() local
215 if (ip[-1] != *bytePtr) break; in LZ4HC_reverseCountPattern()
216 ip--; bytePtr--; in LZ4HC_reverseCountPattern()
/external/angle/src/tests/gl_tests/
DUniformBufferTest.cpp597 const GLubyte *bytePtr = reinterpret_cast<const GLubyte *>(mapPtr); in TEST_P() local
598 std::vector<GLubyte> actualData(bytePtr, bytePtr + bigSize); in TEST_P()