/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/ |
D | vktRobustnessBufferAccessTests.cpp | 177 …bool isExpectedValueFromInBuffer (VkDeviceSize offsetInBytes, const void* valuePtr, VkDevic… 178 bool isOutBufferValueUnchanged (VkDeviceSize offsetInBytes, VkDeviceSize valueSize); 1046 bool BufferAccessInstance::isExpectedValueFromInBuffer (VkDeviceSize offsetInBytes, const void* val… in isExpectedValueFromInBuffer() argument 1048 DE_ASSERT(offsetInBytes % 4 == 0); in isExpectedValueFromInBuffer() 1049 DE_ASSERT(offsetInBytes < m_inBufferAllocSize); in isExpectedValueFromInBuffer() 1051 const deUint32 valueIndex = deUint32(offsetInBytes / 4) + 2; in isExpectedValueFromInBuffer() 1084 bool BufferAccessInstance::isOutBufferValueUnchanged (VkDeviceSize offsetInBytes, VkDeviceSize valu… in isOutBufferValueUnchanged() argument 1086 const deUint8 *const outValuePtr = (deUint8*)m_outBufferAlloc->getHostPtr() + offsetInBytes; in isOutBufferValueUnchanged() 1148 for (VkDeviceSize offsetInBytes = 0; offsetInBytes < m_outBufferAllocSize; offsetInBytes += 4) in verifyResult() local 1150 deUint8* outValuePtr = (deUint8*)outDataPtr + offsetInBytes; in verifyResult() [all …]
|
D | vktRobustBufferAccessWithVariablePointersTests.cpp | 315 bool isExpectedValueFromInBuffer (VkDeviceSize offsetInBytes, 318 bool isOutBufferValueUnchanged (VkDeviceSize offsetInBytes, 1510 bool AccessInstance::isExpectedValueFromInBuffer (VkDeviceSize offsetInBytes, in isExpectedValueFromInBuffer() argument 1514 DE_ASSERT(offsetInBytes % 4 == 0); in isExpectedValueFromInBuffer() 1515 DE_ASSERT(offsetInBytes < m_inBufferAccess.allocSize); in isExpectedValueFromInBuffer() 1518 const deUint32 valueIndex = deUint32(offsetInBytes / 4) + 2; in isExpectedValueFromInBuffer() 1544 bool AccessInstance::isOutBufferValueUnchanged (VkDeviceSize offsetInBytes, VkDeviceSize valueSize) in isOutBufferValueUnchanged() argument 1547 const deUint8 *const outValuePtr = (deUint8*)m_outBufferAlloc->getHostPtr() + offsetInBytes; in isOutBufferValueUnchanged() 1612 …for (VkDeviceSize offsetInBytes = 0; offsetInBytes < m_outBufferAccess.allocSize; offsetInBytes +=… in verifyResult() local 1614 const deUint8* outValuePtr = static_cast<const deUint8*>(outDataPtr) + offsetInBytes; in verifyResult() [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
D | serialization.dart | 71 _buffer.addAll(list.buffer.asUint8List(list.offsetInBytes, 4 * list.length)); 77 _buffer.addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length)); 83 _buffer.addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length)); 162 final Uint8List list = data.buffer.asUint8List(data.offsetInBytes + _position, length); 170 final Int32List list = data.buffer.asInt32List(data.offsetInBytes + _position, length); 178 final Int64List list = data.buffer.asInt64List(data.offsetInBytes + _position, length); 186 final Float64List list = data.buffer.asFloat64List(data.offsetInBytes + _position, length);
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/services/ |
D | serialization.dart | 70 .addAll(list.buffer.asUint8List(list.offsetInBytes, 4 * list.length)); 77 .addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length)); 84 .addAll(list.buffer.asUint8List(list.offsetInBytes, 8 * list.length)); 164 data.buffer.asUint8List(data.offsetInBytes + _position, length); 173 data.buffer.asInt32List(data.offsetInBytes + _position, length); 182 data.buffer.asInt64List(data.offsetInBytes + _position, length); 191 data.buffer.asFloat64List(data.offsetInBytes + _position, length);
|
D | buffers.dart | 308 int get offsetInBytes => _typedBuffer.offsetInBytes;
|
/third_party/skia/src/gpu/mock/ |
D | GrMockOpTarget.h | 71 size_t* offsetInBytes) override { in makeDrawIndirectSpace() argument 77 *offsetInBytes = 0; in makeDrawIndirectSpace() 85 size_t* offsetInBytes) override { in makeDrawIndexedIndirectSpace() argument 91 *offsetInBytes = 0; in makeDrawIndexedIndirectSpace()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ShaderStorageBlockFunctionHLSL.cpp | 66 size_t offsetInBytes = offset * componentStride; in OutputSSBOLoadFunctionBody() local 67 out << convertString << "buffer.Load(loc + " << offsetInBytes << ")),"; in OutputSSBOLoadFunctionBody() 154 size_t offsetInBytes = swizzleOffsets[index] * componentStride; in OutputSSBOStoreFunctionBody() local 155 out << "buffer.Store(loc + " << offsetInBytes << ", _value[" << index << "]);\n"; in OutputSSBOStoreFunctionBody()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ShaderStorageBlockFunctionHLSL.cpp | 66 size_t offsetInBytes = offset * componentStride; in OutputSSBOLoadFunctionBody() local 67 out << convertString << "buffer.Load(loc + " << offsetInBytes << ")),"; in OutputSSBOLoadFunctionBody() 154 size_t offsetInBytes = swizzleOffsets[index] * componentStride; in OutputSSBOStoreFunctionBody() local 155 out << "buffer.Store(loc + " << offsetInBytes << ", _value[" << index << "]);\n"; in OutputSSBOStoreFunctionBody()
|
/third_party/flutter/skia/src/gpu/gl/ |
D | GrGLVertexArray.cpp | 91 size_t offsetInBytes, in set() argument 103 offsetAsPtr = static_cast<const GrCpuBuffer*>(vertexBuffer)->data() + offsetInBytes; in set() 110 offsetAsPtr = reinterpret_cast<const char*>(offsetInBytes); in set()
|
D | GrGLVertexArray.h | 46 size_t offsetInBytes,
|
/third_party/skia/src/gpu/gl/ |
D | GrGLVertexArray.cpp | 85 size_t offsetInBytes, in set() argument 97 offsetAsPtr = static_cast<const GrCpuBuffer*>(vertexBuffer)->data() + offsetInBytes; in set() 104 offsetAsPtr = reinterpret_cast<const char*>(offsetInBytes); in set()
|
D | GrGLVertexArray.h | 46 size_t offsetInBytes,
|
/third_party/skia/src/gpu/ |
D | GrMeshDrawTarget.h | 87 size_t* offsetInBytes) = 0; 95 size_t* offsetInBytes) = 0;
|
D | BufferWriter.h | 66 VertexWriter makeOffset(ptrdiff_t offsetInBytes) const { in makeOffset() 67 return {SkTAddOffset<void>(fPtr, offsetInBytes)}; in makeOffset()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_cmd_vgpu10.c | 1095 &bcmd->offsetInBytes, gbshader, 0); in SVGA3D_vgpu10_DefineAndBindShader() 1238 uint32 offsetInBytes, in SVGA3D_vgpu10_SetSingleConstantBuffer() argument 1243 assert(offsetInBytes % 256 == 0); in SVGA3D_vgpu10_SetSingleConstantBuffer() 1258 cmd->offsetInBytes = offsetInBytes; in SVGA3D_vgpu10_SetSingleConstantBuffer() 1271 uint32 offsetInBytes) in SVGA3D_vgpu10_SetConstantBufferOffset() argument 1275 assert(offsetInBytes % 256 == 0); in SVGA3D_vgpu10_SetConstantBufferOffset() 1284 cmd->offsetInBytes = offsetInBytes; in SVGA3D_vgpu10_SetConstantBufferOffset() 1604 bcmd->offsetInBytes = 0; in SVGA3D_sm5_DefineAndBindStreamOutput() 1606 &bcmd->offsetInBytes, declBuf, 0, in SVGA3D_sm5_DefineAndBindStreamOutput() 1610 bcmd->offsetInBytes = 0; in SVGA3D_sm5_DefineAndBindStreamOutput()
|
D | svga_cmd.h | 656 uint32 offsetInBytes, 663 uint32 offsetInBytes);
|
/third_party/mesa3d/src/gallium/drivers/svga/include/ |
D | svga3d_dx.h | 229 uint32 offsetInBytes; member 940 uint32 offsetInBytes; member 1492 uint32 offsetInBytes; member 1513 uint32 offsetInBytes; member 1565 uint32 offsetInBytes; member 1614 uint32 offsetInBytes; member 1722 uint32 offsetInBytes; member
|
D | svga3d_cmd.h | 1410 uint32 offsetInBytes; member 2003 uint32 offsetInBytes; member
|
/third_party/flutter/flutter/dev/integration_tests/channels/lib/src/ |
D | test_step.dart | 135 .asUint8List(message.offsetInBytes, message.lengthInBytes) 159 a.buffer.asUint8List(a.offsetInBytes, a.lengthInBytes), 160 b.buffer.asUint8List(b.offsetInBytes, b.lengthInBytes),
|
D | basic_messaging.dart | 174 .asUint8List(message.offsetInBytes, message.lengthInBytes)
|
/third_party/flutter/flutter/packages/flutter/lib/src/services/ |
D | font_loader.dart | 41 (ByteData data) => Uint8List.view(data.buffer, data.offsetInBytes, data.lengthInBytes)
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
D | platform_android_mapper.cpp | 142 buf_info.offsets[i] = layouts[i].offsetInBytes; in mapper_metadata_get_buffer_info()
|
/third_party/flutter/flutter/examples/image_list/lib/ |
D | main.dart | 25 .asUint8List(byteData.offsetInBytes, byteData.lengthInBytes);
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/ |
D | system.dart | 72 bytes.buffer.asUint8List(bytes.offsetInBytes, numBytes);
|
/third_party/flutter/engine/flutter/shell/platform/embedder/fixtures/ |
D | main.dart | 163 var list = data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);
|