/third_party/skia/third_party/externals/tint/tools/src/list/ |
D | list_test.go | 121 sliceB := []int{1, 2, 3, 4, 5, 6} 122 lB := list.Wrap(&sliceB) 205 sliceB := []int{9, 8, 7} 206 lB := list.Wrap(&sliceB) 213 if !reflect.DeepEqual(sliceB, []int{9, 8, 7}) { 214 t.Errorf("after Append(), sliceB: %v", sliceB)
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | Surface.hpp | 242 int sliceB; member 336 static int sliceB(int width, int height, int border, Format format, bool target); 560 return external.sliceB; in getExternalSliceB() 585 return internal.sliceB; in getInternalSliceB() 605 return stencil.sliceB; in getStencilSliceB()
|
D | Surface.cpp | 51 …yte *element = (byte*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; in write() 56 element += sliceB; in write() 70 element += sliceB; in write() 410 …ent = (unsigned char*)buffer + (x + border) * bytes + (y + border) * pitchB + z * samples * sliceB; in read() 1162 return (unsigned char*)buffer + 8 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect() 1167 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect() 1171 return (unsigned char*)buffer + 16 * (x / 4) + (y / 4) * pitchB + z * sliceB; in lockRect() 1173 return (unsigned char*)buffer + x * bytes + y * pitchB + z * samples * sliceB; in lockRect() 1231 external.sliceB = slice; in Surface() 1246 internal.sliceB = sliceB(internal.width, internal.height, 0, internal.format, false); in Surface() [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/Main/ |
D | FrameBufferOzone.cpp | 23 sw::Surface::sliceB(width, height, 0, format, true)); in FrameBufferOzone()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkFormat.hpp | 61 size_t sliceB(int width, int height, int border) const;
|
D | VkImage.cpp | 856 return usedFormat.sliceB(mipLevelExtent.width, mipLevelExtent.height, borderSize()); in slicePitchBytes() 1399 int sliceB = decompressedImage->slicePitchBytes(VK_IMAGE_ASPECT_COLOR_BIT, subresource.mipLevel); in decodeASTC() local 1406 …ce, dest, mipLevelExtent.width, mipLevelExtent.height, mipLevelExtent.depth, bytes, pitchB, sliceB, in decodeASTC()
|
D | VkFormat.cpp | 1893 size_t Format::sliceB(int width, int height, int border) const in sliceB() function in vk::Format
|
/third_party/node/test/parallel/ |
D | test-buffer-alloc.js | 153 const sliceB = b.slice(offset, offset + asciiString.length); constant 155 assert.strictEqual(sliceA[i], sliceB[i]); 175 const sliceB = b.slice(offset, offset + Buffer.byteLength(utf8String)); constant 177 assert.strictEqual(sliceA[i], sliceB[i]);
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | Blitter.hpp | 172 static Int ComputeOffset(Int &x, Int &y, Int &z, Int &sliceB, Int &pitchB, int bytes);
|
D | Blitter.cpp | 1483 Int Blitter::ComputeOffset(Int &x, Int &y, Int &z, Int &sliceB, Int &pitchB, int bytes) in ComputeOffset() argument 1485 return z * sliceB + y * pitchB + x * bytes; in ComputeOffset()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/ |
D | Image.cpp | 1110 int sliceB = static_cast<int>(IOSurfaceGetHeightOfPlane(ioSurface, plane)) * pitchB; in lock() local 1111 return (unsigned char*)pixels + x * bytes + y * pitchB + z * sliceB; in lock() 1118 int sliceB = height * pitchB; in lock() 1119 return (unsigned char*)buffer + x * bytes + y * pitchB + z * sliceB; in lock()
|