Home
last modified time | relevance | path

Searched refs:sliceB (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/tint/tools/src/list/
Dlist_test.go121 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/
DSurface.hpp242 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()
DSurface.cpp51 …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/
DFrameBufferOzone.cpp23 sw::Surface::sliceB(width, height, 0, format, true)); in FrameBufferOzone()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkFormat.hpp61 size_t sliceB(int width, int height, int border) const;
DVkImage.cpp856 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()
DVkFormat.cpp1893 size_t Format::sliceB(int width, int height, int border) const in sliceB() function in vk::Format
/third_party/node/test/parallel/
Dtest-buffer-alloc.js153 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/
DBlitter.hpp172 static Int ComputeOffset(Int &x, Int &y, Int &z, Int &sliceB, Int &pitchB, int bytes);
DBlitter.cpp1483 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/
DImage.cpp1110 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()