Searched refs:endByte (Results 1 – 9 of 9) sorted by relevance
/external/skia/src/text/gpu/ |
D | SubRunAllocator.cpp | 59 intptr_t endByte = reinterpret_cast<intptr_t>(bytes + size - sizeof(Block)) & -kMaxAlignment; in setupBytesAndCapacity() local 60 fEndByte = reinterpret_cast<char*>(endByte); in setupBytesAndCapacity()
|
/external/angle/src/libANGLE/capture/ |
D | capture_gles_3_0_params.cpp | 716 GLuint endByte = 0; in CaptureTexImage3D_pixels() local 718 internalFormatInfo.computePackUnpackEndByte(type, size, unpack, true, &endByte); in CaptureTexImage3D_pixels() 721 CaptureMemory(pixels, static_cast<size_t>(endByte), paramCapture); in CaptureTexImage3D_pixels()
|
D | serialize.cpp | 1258 GLuint endByte = 0; in SerializeTextureData() local 1259 bool unpackSize = format.computePackUnpackEndByte(glType, size, packState, true, &endByte); in SerializeTextureData() 1263 scratchBuffer->getInitialized(endByte, &texelsPtr, 0)); in SerializeTextureData()
|
D | FrameCapture.cpp | 4152 GLuint endByte = 0; in CaptureShareGroupMidExecutionSetup() local 4154 format.computePackUnpackEndByte(getType, extents, unpack, true, &endByte); in CaptureShareGroupMidExecutionSetup() 4157 bool result = data.resize(endByte); in CaptureShareGroupMidExecutionSetup()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_L_C_.py | 420 (name, (startByte, endByte)) = args 421 return startByte < endByte
|
D | E_B_D_T_.py | 106 endByte = dataSize 108 dataLoc = (startByte, endByte)
|
/external/angle/src/libANGLE/ |
D | validationES.cpp | 1287 GLuint endByte = 0; in ValidImageDataSize() local 1288 if (!formatInfo.computePackUnpackEndByte(type, size, unpack, targetIs3D, &endByte)) in ValidImageDataSize() 1296 CheckedNumeric<size_t> checkedEndByte(endByte); in ValidImageDataSize() 1323 if (pixels != nullptr && endByte > static_cast<GLuint>(imageSize)) in ValidImageDataSize() 7309 GLuint endByte = 0; in ValidatePixelPack() local 7310 if (!formatInfo.computePackUnpackEndByte(type, size, pack, false, &endByte)) in ValidatePixelPack() 7318 if (pixelPackBuffer == nullptr && static_cast<size_t>(bufSize) < endByte) in ValidatePixelPack() 7327 CheckedNumeric<size_t> checkedEndByte(endByte); in ValidatePixelPack() 7341 if (endByte > static_cast<size_t>(std::numeric_limits<GLsizei>::max())) in ValidatePixelPack() 7347 *length = static_cast<GLsizei>(endByte); in ValidatePixelPack()
|
D | formatutils.cpp | 1971 CheckedNumeric<GLuint> endByte = checkedCopyBytes + CheckedNumeric<GLuint>(skipBytes); in computePackUnpackEndByte() local 1973 return CheckedMathResult(endByte, resultOut); in computePackUnpackEndByte()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | renderergl_utils.cpp | 3009 GLuint endByte = 0; in ShouldApplyLastRowPaddingWorkaround() local 3011 glFormat.computePackUnpackEndByte(type, size, state, is3D, &endByte)); in ShouldApplyLastRowPaddingWorkaround() 3018 angle::CheckedNumeric<size_t>(endByte) + reinterpret_cast<intptr_t>(pixels); in ShouldApplyLastRowPaddingWorkaround()
|