Home
last modified time | relevance | path

Searched +full:- +full:destination (Results 1 – 25 of 1169) sorted by relevance

12345678910>>...47

/third_party/mesa3d/src/gallium/drivers/crocus/ci/
Dcrocus-hsw-fails.txt1 spec@!opengl 1.0@depth-clear-precision-check,Fail
2 spec@!opengl 1.0@depth-clear-precision-check@depth16,Fail
3 spec@!opengl 1.0@depth-clear-precision-check@depth32,Fail
4 spec@!opengl 1.0@depth-clear-precision-check@depth32f_stencil8,Fail
7 spec@!opengl 1.1@read-front,Fail
8 spec@!opengl 1.1@read-front clear-front-first,Fail
9 spec@!opengl 1.1@read-front clear-front-first samples=2,Fail
10 spec@!opengl 1.1@read-front clear-front-first samples=4,Fail
11 spec@!opengl 1.1@read-front clear-front-first samples=6,Fail
12 spec@!opengl 1.1@read-front clear-front-first samples=8,Fail
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/ci/
Dr600-rv770-fails.txt1 KHR-GL33.clip_distance.functional,Fail
2 KHR-GL33.cull_distance.functional,Fail
3 KHR-GL33.nearest_edge.offset_right,Fail
5 KHR-GL33.texture_size_promotion.functional,Fail
7 KHR-GL33.texture_swizzle.functional,Fail
9 KHR-GLES3.core.nearest_edge.offset_right,Fail
11 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_center,Fail
12 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_corner,Fail
13 dEQP-GLES2.functional.clipping.point.wide_point_clip,Fail
14 dEQP-GLES2.functional.clipping.point.wide_point_clip_viewport_center,Fail
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DFieldMaskTreeTest.cs2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
72 // Redundant sub-path. in AddFieldPath()
77 // New branch from a non-root node. in AddFieldPath()
83 // A path that matches several existing sub-paths. in AddFieldPath()
130 // Non-exist path. in IntersectFieldPath()
135 // Sub-path of an existing leaf. in IntersectFieldPath()
147 // Non-exist path. in IntersectFieldPath()
153 // Match a non-leaf node. in IntersectFieldPath()
162 …private void Merge(FieldMaskTree tree, IMessage source, IMessage destination, FieldMask.MergeOptio… in Merge() argument
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DCommandEncoder.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
54 "Source offset (%u) or destination offset (%u) is not a multiple of 4 bytes,", in ValidateB2BCopyAlignment()
61 DAWN_INVALID_IF(texture->GetSampleCount() > 1, in ValidateTextureSampleCountInBufferCopyCommands()
63 texture, texture->GetSampleCount()); in ValidateTextureSampleCountInBufferCopyCommands()
72 // For depth-stencil texture, buffer offset must be a multiple of 4. in ValidateLinearTextureCopyOffset()
89 switch (src.texture->GetFormat().format) { in ValidateTextureDepthStencilToBufferCopyRestrictions()
96 src.texture, src.texture->GetFormat().format); in ValidateTextureDepthStencilToBufferCopyRestrictions()
112 DAWN_INVALID_IF(attachment->GetLayerCount() > 1, in ValidateAttachmentArrayLayersAndLevelCount()
114 attachment->GetLayerCount(), attachment); in ValidateAttachmentArrayLayersAndLevelCount()
116 DAWN_INVALID_IF(attachment->GetLevelCount() > 1, in ValidateAttachmentArrayLayersAndLevelCount()
[all …]
DQueue.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
93 device->GetOptimalBufferToTextureCopyOffsetAlignment(); in UploadTextureDataAligningBytesPerRowAndOffset()
101 // For depth-stencil texture, buffer offset must be a multiple of 4, which is required in UploadTextureDataAligningBytesPerRowAndOffset()
109 DAWN_TRY_ASSIGN(uploadHandle, device->GetDynamicUploader()->Allocate( in UploadTextureDataAligningBytesPerRowAndOffset()
110 newDataSizeBytes, device->GetPendingCommandSerial(), in UploadTextureDataAligningBytesPerRowAndOffset()
125 dataLayout.bytesPerRow * (dataRowsPerImage - alignedRowsPerImage); in UploadTextureDataAligningBytesPerRowAndOffset()
200 commands[i]->Destroy(); in APISubmit()
209 if (GetDevice()->ConsumedError(ValidateOnSubmittedWorkDone(signalValue, &status))) { in APIOnSubmittedWorkDone()
219 // commands (this is non-observable outside of tests so it's ok to do deviate a bit from the in APIOnSubmittedWorkDone()
221 TrackTask(std::move(task), GetDevice()->GetPendingCommandSerial()); in APIOnSubmittedWorkDone()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DCopyCommandsValidationTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
78 return (bytesPerRow * (height - 1) + width * bytesPerPixel) * depth; in BufferSizeForTextureCopy()
193 uint64_t invalidSize = bufferSize - 1; in TestBothTBCopiesExactBufferSize()
203 wgpu::Texture destination = in TEST_F() local
208 TestBothTBCopiesExactBufferSize(256, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 0}, in TEST_F()
212 TestBothTBCopiesExactBufferSize(256, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 4}, in TEST_F()
216 TestBothTBCopiesExactBufferSize(256, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 1}, in TEST_F()
219 // Copy with a non-packed rowsPerImage in TEST_F()
220 TestBothTBCopiesExactBufferSize(256, 3, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 0}, in TEST_F()
224 TestBothTBCopiesExactBufferSize(512, 2, destination, wgpu::TextureFormat::RGBA8Unorm, {0, 0, 1}, in TEST_F()
[all …]
DQueueWriteTextureValidationTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
84 uint64_t invalidSize = dataSize - 1; in TestWriteTextureExactDataSize()
96 wgpu::Texture destination = Create2DTexture({16, 16, 4}, 5, wgpu::TextureFormat::RGBA8Unorm, in TEST_F() local
102 TestWriteTexture(dataSize, 0, 256, 4, destination, 0, {0, 0, 0}, {4, 4, 1}); in TEST_F()
104 TestWriteTexture(dataSize, 0, 256, 4, destination, 0, {12, 12, 0}, {4, 4, 1}); in TEST_F()
106 TestWriteTexture(dataSize, 0, 256, 4, destination, 2, {0, 0, 0}, {4, 4, 1}); in TEST_F()
108 TestWriteTexture(dataSize, dataSize - 4, 256, 1, destination, 0, {0, 0, 0}, {1, 1, 1}); in TEST_F()
109 TestWriteTexture(dataSize, dataSize - 4, 256, wgpu::kCopyStrideUndefined, destination, in TEST_F()
113 // Copies with a 256-byte aligned bytes per row but unaligned texture region in TEST_F()
116 TestWriteTexture(dataSize, 0, 256, 4, destination, 0, {0, 0, 0}, {3, 4, 1}); in TEST_F()
[all …]
DCopyTextureForBrowserTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
75 wgpu::Texture destination = in TEST_F() local
82 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
86 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
90 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {8, 8, 0}, destination, 0, in TEST_F()
94 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 2, in TEST_F()
98 TestCopyTextureForBrowser(utils::Expectation::Success, source, 2, {0, 0, 0}, destination, 0, in TEST_F()
102 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
109 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
113 TestCopyTextureForBrowser(utils::Expectation::Success, source, 0, {0, 0, 0}, destination, 0, in TEST_F()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DQueryTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
63 << "Expected data[" << i << "] to be non-zero." << std::endl; in Check()
82 … fn main([[builtin(vertex_index)]] VertexIndex : u32) -> [[builtin(position)]] vec4<f32> { in SetUp()
85 vec2<f32>(-1.0, -1.0), in SetUp()
86 vec2<f32>( 1.0, -1.0)); in SetUp()
91 [[stage(fragment)]] fn main() -> [[location(0)]] vec4<f32> { in SetUp()
136 depthStencil->depthCompare = in TestOcclusionQueryWithDepthStencilTest()
138 depthStencil->stencilFront.compare = in TestOcclusionQueryWithDepthStencilTest()
140 depthStencil->stencilBack.compare = in TestOcclusionQueryWithDepthStencilTest()
152 wgpu::Buffer destination = CreateResolveBuffer(kQueryCount * sizeof(uint64_t)); in TestOcclusionQueryWithDepthStencilTest() local
[all …]
/third_party/icu/icu4c/packaging/
Ddistrelease.ps13 #-------------------------
6 # Date: 2017-04-14
7 #-------------------------
9 # This builds a zipfile containing the 64-bit (x64) and/or 32-bit (x86) Windows binaries.
15 # Set-ExecutionPolicy -Scope Process Unrestricted
16 # .\packaging\distrelease.ps1 -arch "x64 or x86 or ARM64"
18 # Will emit: c:\icu4c\icu\source\dist\icu-windows.zip
22 …wershell.core/about/about_execution_policies?view=powershell-5.1&viewFallbackFrom=powershell-Micro…
29 $icuDir = Split-Path -Path $MyInvocation.MyCommand.Definition -Parent
30 $icuDir = Resolve-Path -Path '$icuDir\..'
[all …]
/third_party/node/deps/v8/src/compiler/backend/
Dgap-resolver.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "src/compiler/backend/gap-resolver.h"
10 #include "src/base/enum-set.h"
11 #include "src/codegen/register-configuration.h"
20 // moves between smaller sub-operands, e.g. a double move to two single moves.
28 const LocationOperand& src_loc = LocationOperand::cast(move->source()); in Split()
29 const LocationOperand& dst_loc = LocationOperand::cast(move->destination()); in Split()
36 1 << (ElementSizeLog2Of(dst_rep) - ElementSizeLog2Of(smaller_rep)); in Split()
37 int base = -1; in Split()
39 DCHECK_EQ(aliases, RegisterConfiguration::Default()->GetAliases( in Split()
[all …]
Dmove-optimizer.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "src/compiler/backend/move-optimizer.h"
7 #include "src/codegen/register-configuration.h"
17 InstructionOperand destination; member
23 return a.destination.CompareCanonicalized(b.destination); in operator ()()
35 buffer->clear(); in OperandSet()
39 set_->push_back(op); in InsertOp()
81 int base = -1; in ContainsOpOrAlias()
83 config->GetAliases(rep, loc.register_code(), other_rep1, &base); in ContainsOpOrAlias()
84 DCHECK(aliases > 0 || (aliases == 0 && base == -1)); in ContainsOpOrAlias()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DRefCountedTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
54 test->Release(); in TEST()
63 test->Reference(); in TEST()
64 test->Release(); in TEST()
67 test->Release(); in TEST()
78 test->Reference(); in TEST()
86 EXPECT_EQ(test->GetRefCountForTesting(), 200001u); in TEST()
90 test->Release(); in TEST()
98 EXPECT_EQ(test->GetRefCountForTesting(), 1u); in TEST()
100 test->Release(); in TEST()
[all …]
DObjectBaseTests.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
30 *handle -= 1; in WGPURelease()
97 Object destination(source); in TEST() local
100 ASSERT_EQ(destination.Get(), &refcount); in TEST()
103 destination = Object(); in TEST()
112 Object destination; in TEST() local
113 destination = source; in TEST()
116 ASSERT_EQ(destination.Get(), &refcount); in TEST()
119 destination = Object(); in TEST()
128 Object destination; in TEST() local
[all …]
/third_party/mesa3d/src/gallium/drivers/virgl/ci/
Dvirpipe-gl-fails.txt1 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_center,Fail
2 dEQP-GLES2.functional.clipping.line.wide_line_clip_viewport_corner,Fail
3 dEQP-GLES2.functional.clipping.point.wide_point_clip,Fail
4 dEQP-GLES2.functional.clipping.point.wide_point_clip_viewport_center,Fail
5 dEQP-GLES2.functional.clipping.point.wide_point_clip_viewport_corner,Fail
6 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.8,Fail
7 dEQP-GLES3.functional.draw_buffers_indexed.random.max_required_draw_buffers.9,Fail
8 dEQP-GLES31.functional.primitive_bounding_box.wide_points.global_state.vertex_tessellation_fragment…
9 dEQP-GLES31.functional.primitive_bounding_box.wide_points.global_state.vertex_tessellation_fragment…
10 dEQP-GLES31.functional.primitive_bounding_box.wide_points.global_state.vertex_tessellation_fragment…
[all …]
/third_party/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
213 EXPECT_EQ(field2.Get(i), i - 2); in TEST()
218 // to it until it re-allocates its space.
220 const int* ptr = field->data(); in ReservedSpace()
222 field->Add(0); in ReservedSpace()
223 } while (field->data() == ptr); in ReservedSpace()
225 return field->size() - 1; in ReservedSpace()
250 // field to not re-allocate at all. in TEST()
280 field.Reserve(-1); in TEST()
[all …]
/third_party/cJSON/
DCMakeLists.txt19 add_definitions(-DENABLE_INT64)
21 -std=c99
25 -std=c89
34 -pedantic
35 -Wall
36 -Wextra
37 -Werror
38 -Wstrict-prototypes
39 -Wwrite-strings
40 -Wshadow
[all …]
/third_party/bounds_checking_function/include/
Dsecurec.h2 * Copyright (c) Huawei Technologies Co., Ltd. 2014-2021. All rights reserved.
8 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
14 * Create: 2014-02-25
61 /* The src buffer is not correct and destination buffer can not be reset */
71 /* The destination buffer is not long enough and destination buffer can not be reset */
119 * Parameter: verNumber - to store version number (for example value is 0x500 | 0xa)
128 * Parameter: dest - destination address
129 * Parameter: destMax - The maximum length of destination buffer
130 * Parameter: c - the value to be copied
131 * Parameter: count - copies count bytes of value to dest
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
47 /// [root] -+- foo -+- bar
49 /// | +- baz
51 /// +- bar --- baz
92 /// specified field as well as all its sub-fields. For example, a field path
94 /// a field path to the tree, redundant sub-paths will be removed. That is,
97 /// Likewise, if the field path to add is a sub-path of an existing leaf node,
119 // The path to add is a sub-path of an existing leaf node. in AddFieldPath()
133 // Turn the matching node into a leaf node (i.e., remove sub-paths). in AddFieldPath()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dcopies.txt1 // Copyright 2015-2021 The Khronos Group, Inc.
3 // SPDX-License-Identifier: CC-BY-4.0
33 Multisampled images can: be resolved to a non-multisampled image with
46 the set of all bytes bound to the destination regions.
47 * The set of all bytes bound to each destination region must: not overlap
48 the set of all bytes bound to another destination region.
49 * Copy regions must: be non-empty.
57 Destination image subresources must: be in the
64 destination of a copy, it must: be in the ename:VK_IMAGE_LAYOUT_GENERAL
68 their <<resources-image-format-features,format features>>.
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DQueueGL.cpp7 // http://www.apache.org/licenses/LICENSE-2.0
32 TRACE_EVENT_BEGIN0(GetDevice()->GetPlatform(), Recording, "CommandBufferGL::Execute"); in SubmitImpl()
34 DAWN_TRY(ToBackend(commands[i])->Execute()); in SubmitImpl()
36 TRACE_EVENT_END0(GetDevice()->GetPlatform(), Recording, "CommandBufferGL::Execute"); in SubmitImpl()
38 device->SubmitFenceSync(); in SubmitImpl()
46 const OpenGLFunctions& gl = ToBackend(GetDevice())->gl; in WriteBufferImpl()
48 ToBackend(buffer)->EnsureDataInitializedAsDestination(bufferOffset, size); in WriteBufferImpl()
50 gl.BindBuffer(GL_ARRAY_BUFFER, ToBackend(buffer)->GetHandle()); in WriteBufferImpl()
55 MaybeError Queue::WriteTextureImpl(const ImageCopyTexture& destination, in WriteTextureImpl() argument
59 DAWN_INVALID_IF(destination.aspect == wgpu::TextureAspect::StencilOnly, in WriteTextureImpl()
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_EXT_blend_operation_advanced.txt1 // Copyright 2017-2021 The Khronos Group Inc.
3 // SPDX-License-Identifier: CC-BY-4.0
10 2017-06-12
12 - Jeff Bolz, NVIDIA
22 - If
30 - If
38 compute component-wise minimums or maximums of source and destination color
41 ename:VK_BLEND_OP_REVERSE_SUBTRACT modes multiply the source and destination
42 colors by source and destination factors and either add the two products
50 blending equations do not use source and destination factors specified by
[all …]
DVK_EXT_blend_operation_advanced.adoc1 // Copyright 2017-2024 The Khronos Group Inc.
3 // SPDX-License-Identifier: CC-BY-4.0
10 2017-06-12
12 - Jeff Bolz, NVIDIA
22 - If
30 - If
38 compute component-wise minimums or maximums of source and destination color
41 ename:VK_BLEND_OP_REVERSE_SUBTRACT modes multiply the source and destination
42 colors by source and destination factors and either add the two products
50 blending equations do not use source and destination factors specified by
[all …]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskTree.java1 // Protocol Buffers - Google's data interchange format
3 // https://developers.google.com/protocol-buffers/
52 * [root] -+- foo -+- bar
54 * | +- baz
56 * +- bar --- baz
94 * well as all its sub-fields. For example, a field path "foo.bar" matches field "foo.bar" and
95 * also "foo.bar.baz", etc. When adding a field path to the tree, redundant sub-paths will be
98 * to add is a sub-path of an existing leaf node, nothing will be changed in the tree.
113 // The path to add is a sub-path of an existing leaf node. in addFieldPath()
125 // Turn the matching node into a leaf node (i.e., remove sub-paths). in addFieldPath()
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.1/mapped_types/
Dmapped_types_1.ts7 * http://www.apache.org/licenses/LICENSE-2.0
15 /**---
22 ---*/
30 destination: string; property
37 destination: "earth",
44 Assert.equal(pt2.destination, undefined);
48 Assert.equal(pt2.destination, undefined);
52 Assert.equal(pt2.destination, undefined);
53 pt2 = { destination: "earth" };
56 Assert.equal(pt2.destination, "earth");
[all …]

12345678910>>...47