Home
last modified time | relevance | path

Searched refs:subres (Results 1 - 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLStreamTest.cpp498 D3D11_SUBRESOURCE_DATA subres; in TEST_P() local
499 subres.pSysMem = texData; in TEST_P()
500 subres.SysMemPitch = 4; in TEST_P()
503 (void)mD3D->CreateTexture2D(&desc, &subres, &texture); in TEST_P()
618 D3D11_SUBRESOURCE_DATA subres; in TEST_P() local
619 subres.pSysMem = texData; in TEST_P()
620 subres.SysMemPitch = 2; in TEST_P()
623 (void)mD3D->CreateTexture2D(&desc, &subres, &texture); in TEST_P()
758 D3D11_SUBRESOURCE_DATA subres; in TEST_P() local
759 subres in TEST_P()
935 D3D11_SUBRESOURCE_DATA subres; TEST_P() local
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_image.c309 const VkImageSubresourceLayers *subres, in dzn_image_layers_get_subresource_index()
316 return subres->mipLevel + in dzn_image_layers_get_subresource_index()
317 ((subres->baseArrayLayer + layer) * image->desc.MipLevels) + in dzn_image_layers_get_subresource_index()
323 const VkImageSubresourceRange *subres, in dzn_image_range_get_subresource_index()
330 return subres->baseMipLevel + level + in dzn_image_range_get_subresource_index()
331 ((subres->baseArrayLayer + layer) * image->desc.MipLevels) + in dzn_image_range_get_subresource_index()
337 const VkImageSubresource *subres, in dzn_image_get_subresource_index()
343 return subres->mipLevel + in dzn_image_get_subresource_index()
344 (subres->arrayLayer * image->desc.MipLevels) + in dzn_image_get_subresource_index()
350 const VkImageSubresourceLayers *subres, in dzn_image_get_copy_loc()
308 dzn_image_layers_get_subresource_index(const struct dzn_image *image, const VkImageSubresourceLayers *subres, VkImageAspectFlagBits aspect, uint32_t layer) dzn_image_layers_get_subresource_index() argument
322 dzn_image_range_get_subresource_index(const struct dzn_image *image, const VkImageSubresourceRange *subres, VkImageAspectFlagBits aspect, uint32_t level, uint32_t layer) dzn_image_range_get_subresource_index() argument
336 dzn_image_get_subresource_index(const struct dzn_image *image, const VkImageSubresource *subres, VkImageAspectFlagBits aspect) dzn_image_get_subresource_index() argument
349 dzn_image_get_copy_loc(const struct dzn_image *image, const VkImageSubresourceLayers *subres, VkImageAspectFlagBits aspect, uint32_t layer) dzn_image_get_copy_loc() argument
[all...]
H A Ddzn_cmd_buffer.c121 for (uint32_t subres = first_subres; subres < first_subres + subres_count; subres++) { in dzn_cmd_buffer_queue_transition_barriers()
122 if (!barriers[subres].Transition.pResource) { in dzn_cmd_buffer_queue_transition_barriers()
123 barriers[subres] = (D3D12_RESOURCE_BARRIER) { in dzn_cmd_buffer_queue_transition_barriers()
128 .Subresource = subres, in dzn_cmd_buffer_queue_transition_barriers()
135 before = barriers[subres].Transition.StateAfter; in dzn_cmd_buffer_queue_transition_barriers()
137 assert(barriers[subres].Transition.StateAfter == before || in dzn_cmd_buffer_queue_transition_barriers()
138 barriers[subres].Transition.StateAfter == after); in dzn_cmd_buffer_queue_transition_barriers()
139 barriers[subres] in dzn_cmd_buffer_queue_transition_barriers()
164 uint32_t subres = dzn_image_range_get_subresource_index(image, range, aspect, 0, layer); dzn_cmd_buffer_queue_image_range_state_transition() local
221 uint32_t subres = dzn_image_range_get_subresource_index(image, range, aspect, 0, layer); dzn_cmd_buffer_queue_image_range_layout_transition() local
1185 VkImageSubresourceLayers subres = { dzn_cmd_buffer_clear_rects_with_copy() local
1325 VkImageSubresourceLayers subres = { dzn_cmd_buffer_clear_ranges_with_copy() local
1874 dzn_cmd_buffer_blit_prepare_src_view(struct dzn_cmd_buffer *cmdbuf, VkImage image, VkImageAspectFlagBits aspect, const VkImageSubresourceLayers *subres, struct dzn_descriptor_heap *heap, uint32_t heap_slot) dzn_cmd_buffer_blit_prepare_src_view() argument
[all...]
H A Ddzn_private.h918 const VkImageSubresourceLayers *subres,
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_blit.cpp253 get_subresource_id(enum pipe_texture_target target, unsigned subres, unsigned stride, in get_subresource_id() argument
257 subres += stride * z; in get_subresource_id()
261 return subres + plane_slice * array_size * stride; in get_subresource_id()
314 for (int subres = 0; subres < nsubres; ++subres) { in copy_subregion_no_barriers()
316 if (!(subresource_copy_mask & (1 << subres))) in copy_subregion_no_barriers()
321 subres * stencil_src_res_offset; in copy_subregion_no_barriers()
326 subres * stencil_dst_res_offset; in copy_subregion_no_barriers()
420 debug_printf("BLIT: Direct copy from subres in d3d12_direct_copy()
[all...]
H A Dd3d12_resource.cpp961 int subres = get_subresource_id(res, resid, z, trans->base.b.level); in fill_texture_location() local
964 tex_loc.SubresourceIndex = subres; in fill_texture_location()
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DTransliteratorRegistry.java691 String[] subres = res.getStringArray(tag.toString()); in findInBundle()
693 // assert(subres != null); in findInBundle()
694 // assert(subres.length % 2 == 0); in findInBundle()
697 for (i=0; i<subres.length; i+= 2) { in findInBundle()
698 if (subres[i].equalsIgnoreCase(variant)) { in findInBundle()
704 if (i < subres.length) { in findInBundle()
717 return new Object[] { new LocaleEntry(subres[i+1], dir) }; in findInBundle()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DTransliteratorRegistry.java692 String[] subres = res.getStringArray(tag.toString()); in findInBundle()
694 // assert(subres != null); in findInBundle()
695 // assert(subres.length % 2 == 0); in findInBundle()
698 for (i=0; i<subres.length; i+= 2) { in findInBundle()
699 if (subres[i].equalsIgnoreCase(variant)) { in findInBundle()
705 if (i < subres.length) { in findInBundle()
718 return new Object[] { new LocaleEntry(subres[i+1], dir) }; in findInBundle()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DD3D12VideoViewsTests.cpp178 D3D11_SUBRESOURCE_DATA subres; in CreateVideoTextureForTest() local
179 subres.pSysMem = initialData.data(); in CreateVideoTextureForTest()
180 subres.SysMemPitch = kYUVImageDataWidthInTexels; in CreateVideoTextureForTest()
183 HRESULT hr = mD3d11Device->CreateTexture2D(&d3dDescriptor, &subres, &d3d11Texture); in CreateVideoTextureForTest()
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DBlitter.cpp91 VkImageSubresource subres = { in clear() local
107 for(; subres.mipLevel <= lastMipLevel; subres.mipLevel++) in clear()
109 VkExtent3D extent = dest->getMipLevelExtent(aspect, subres.mipLevel); in clear()
120 assert_cast<uint32_t>(dest->rowPitchBytes(aspect, subres.mipLevel)), // dPitchB in clear()
122 assert_cast<uint32_t>(dest->slicePitchBytes(aspect, subres.mipLevel)), // dSliceB in clear()
138 subres.arrayLayer = 0; in clear()
141 data.dest = dest->getTexelPointer({ 0, 0, static_cast<int32_t>(depth) }, subres); in clear()
147 for(subres.arrayLayer = subresourceRange.baseArrayLayer; subres in clear()
237 VkImageSubresource subres = { fastClear() local
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_copy.c50 const VkImageSubresourceLayers *subres, in blit_surf_for_image_level_layer()
55 if (!radv_dcc_enabled(image, subres->mipLevel) && !(radv_image_is_tc_compat_htile(image))) in blit_surf_for_image_level_layer()
63 .level = subres->mipLevel, in blit_surf_for_image_level_layer()
64 .layer = subres->baseArrayLayer, in blit_surf_for_image_level_layer()
49 blit_surf_for_image_level_layer(struct radv_image *image, VkImageLayout layout, const VkImageSubresourceLayers *subres, VkImageAspectFlags aspect_mask) blit_surf_for_image_level_layer() argument
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkImage.hpp168 Subresource(const VkImageSubresource &subres) in Subresource() argument
169 : subresource(subres) in Subresource()
/third_party/icu/icu4c/source/i18n/
H A Dtransreg.cpp1129 ResourceBundle subres(specToOpen.getBundle().get( in findInBundle()
1136 if (specToOpen.get() != LocaleUtility::initNameFromLocale(subres.getLocale(), s)) { in findInBundle()
1142 resStr = subres.getStringEx( in findInBundle()
1151 resStr = subres.getStringEx(1, status); in findInBundle()
/third_party/node/deps/icu-small/source/i18n/
H A Dtransreg.cpp1144 ResourceBundle subres(specToOpen.getBundle().get( in findInBundle()
1151 if (specToOpen.get() != LocaleUtility::initNameFromLocale(subres.getLocale(), s)) { in findInBundle()
1157 resStr = subres.getStringEx( in findInBundle()
1166 resStr = subres.getStringEx(1, status); in findInBundle()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dtransreg.cpp1129 ResourceBundle subres(specToOpen.getBundle().get( in findInBundle()
1136 if (specToOpen.get() != LocaleUtility::initNameFromLocale(subres.getLocale(), s)) { in findInBundle()
1142 resStr = subres.getStringEx( in findInBundle()
1151 resStr = subres.getStringEx(1, status); in findInBundle()
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_clear_blit.c1454 const VkImageSubresourceLayers *subres, in tu_image_view_copy_blit()
1458 VkImageAspectFlags aspect_mask = subres->aspectMask; in tu_image_view_copy_blit()
1471 .base_array_layer = subres->baseArrayLayer + layer, in tu_image_view_copy_blit()
1473 .base_miplevel = subres->mipLevel, in tu_image_view_copy_blit()
1487 const VkImageSubresourceLayers *subres, in tu_image_view_copy()
1490 tu_image_view_copy_blit(iview, image, format, subres, layer, false); in tu_image_view_copy()
1496 const VkImageSubresourceLayers *subres, in tu_image_view_blit()
1501 subres->aspectMask)); in tu_image_view_blit()
1502 tu_image_view_copy_blit(iview, image, format, subres, layer, false); in tu_image_view_blit()
1451 tu_image_view_copy_blit(struct fdl6_view *iview, struct tu_image *image, enum pipe_format format, const VkImageSubresourceLayers *subres, uint32_t layer, bool z_scale) tu_image_view_copy_blit() argument
1484 tu_image_view_copy(struct fdl6_view *iview, struct tu_image *image, enum pipe_format format, const VkImageSubresourceLayers *subres, uint32_t layer) tu_image_view_copy() argument
1494 tu_image_view_blit(struct fdl6_view *iview, struct tu_image *image, const VkImageSubresourceLayers *subres, uint32_t layer) tu_image_view_blit() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp1557 int64_t subres = int64_t(u[j+i]) - borrow - (unsigned)p; in KnuthDiv() local
1558 u[j+i] = (unsigned)subres; in KnuthDiv()
1559 borrow = (p >> 32) - (subres >> 32); in KnuthDiv()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPInt.cpp1409 int64_t subres = int64_t(u[j+i]) - borrow - Lo_32(p);
1410 u[j+i] = Lo_32(subres);
1411 borrow = Hi_32(p) - Hi_32(subres);
/third_party/glfw/tests/
H A Dtriangle-vulkan.c865 const VkImageSubresource subres = { in demo_prepare_texture_image() local
874 vkGetImageSubresourceLayout(demo->device, tex_obj->image, &subres, in demo_prepare_texture_image()
/third_party/skia/src/gpu/vk/
H A DGrVkGpu.cpp776 const VkImageSubresource subres = { in uploadTexDataLinear() local
787 &subres, in uploadTexDataLinear()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 44 milliseconds