Searched refs:endByte (Results 1 – 9 of 9) sorted by relevance
/external/skia/src/gpu/ |
D | GrSubRunAllocator.cpp | 56 intptr_t endByte = reinterpret_cast<intptr_t>(bytes + size - sizeof(Block)) & -kMaxAlignment; in setupBytesAndCapacity() local 57 fEndByte = reinterpret_cast<char*>(endByte); in setupBytesAndCapacity()
|
/external/angle/src/libANGLE/capture/ |
D | capture_gles_3_0_params.cpp | 711 GLuint endByte = 0; in CaptureTexImage3D_pixels() local 713 internalFormatInfo.computePackUnpackEndByte(type, size, unpack, true, &endByte); in CaptureTexImage3D_pixels() 716 CaptureMemory(pixels, static_cast<size_t>(endByte), paramCapture); in CaptureTexImage3D_pixels()
|
D | frame_capture_utils.cpp | 1219 GLuint endByte = 0; in SerializeTextureData() local 1220 bool unpackSize = format.computePackUnpackEndByte(getType, size, unpack, true, &endByte); in SerializeTextureData() 1224 scratchBuffer->getInitialized(endByte, &texelsPtr, 0)); in SerializeTextureData()
|
D | FrameCapture.cpp | 2596 GLuint endByte = 0; in CaptureSharedContextMidExecutionSetup() local 2598 format.computePackUnpackEndByte(getType, size, unpack, true, &endByte); in CaptureSharedContextMidExecutionSetup() 2601 bool result = data.resize(endByte); in CaptureSharedContextMidExecutionSetup()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_L_C_.py | 417 (name, (startByte, endByte)) = args 418 return startByte < endByte
|
D | E_B_D_T_.py | 107 endByte = dataSize 109 dataLoc = (startByte, endByte)
|
/external/angle/src/libANGLE/ |
D | validationES.cpp | 1139 GLuint endByte = 0; in ValidImageDataSize() local 1140 if (!formatInfo.computePackUnpackEndByte(type, size, unpack, targetIs3D, &endByte)) in ValidImageDataSize() 1148 CheckedNumeric<size_t> checkedEndByte(endByte); in ValidImageDataSize() 1176 if (pixels != nullptr && endByte > static_cast<GLuint>(imageSize)) in ValidImageDataSize() 6691 GLuint endByte = 0; in ValidatePixelPack() local 6692 if (!formatInfo.computePackUnpackEndByte(type, size, pack, false, &endByte)) in ValidatePixelPack() 6700 if (pixelPackBuffer == nullptr && static_cast<size_t>(bufSize) < endByte) in ValidatePixelPack() 6709 CheckedNumeric<size_t> checkedEndByte(endByte); in ValidatePixelPack() 6723 if (endByte > static_cast<size_t>(std::numeric_limits<GLsizei>::max())) in ValidatePixelPack() 6729 *length = static_cast<GLsizei>(endByte); in ValidatePixelPack()
|
D | formatutils.cpp | 1704 CheckedNumeric<GLuint> endByte = checkedCopyBytes + CheckedNumeric<GLuint>(skipBytes); in computePackUnpackEndByte() local 1706 return CheckedMathResult(endByte, resultOut); in computePackUnpackEndByte()
|
/external/angle/src/libANGLE/renderer/gl/ |
D | renderergl_utils.cpp | 2572 GLuint endByte = 0; in ShouldApplyLastRowPaddingWorkaround() local 2574 glFormat.computePackUnpackEndByte(type, size, state, is3D, &endByte)); in ShouldApplyLastRowPaddingWorkaround() 2581 angle::CheckedNumeric<size_t>(endByte) + reinterpret_cast<intptr_t>(pixels); in ShouldApplyLastRowPaddingWorkaround()
|