Home
last modified time | relevance | path

Searched refs:desc1 (Results 1 – 25 of 31) sorted by relevance

12

/third_party/ltp/testcases/kernel/syscalls/link/
Dlink04.c34 char *desc1; member
69 if (strcmp(tc->desc1, "Write access diretory") == 0) { in verify_link()
73 } else if (strcmp(tc->desc1, "Search access diretory") == 0) { in verify_link()
92 tc->desc1, tc->desc2); in verify_link()
97 tc->desc1, tc->desc2, in verify_link()
104 tc->desc1, tc->desc2, TST_RET, in verify_link()
/third_party/node/test/fixtures/wpt/dom/events/
DEvent-isTrusted.any.js2 var desc1 = Object.getOwnPropertyDescriptor(new Event("x"), "isTrusted");
3 assert_not_equals(desc1, undefined);
4 assert_equals(typeof desc1.get, "function");
10 assert_equals(desc1.get, desc2.get);
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11window_corewindow.cpp417 DXGI_SWAP_CHAIN_DESC1 desc1 = { 0, }; in gst_d3d11_window_core_window_create_swap_chain() local
419 desc1.Width = width; in gst_d3d11_window_core_window_create_swap_chain()
420 desc1.Height = height; in gst_d3d11_window_core_window_create_swap_chain()
421 desc1.Format = format; in gst_d3d11_window_core_window_create_swap_chain()
422 desc1.Stereo = FALSE; in gst_d3d11_window_core_window_create_swap_chain()
423 desc1.SampleDesc.Count = 1; in gst_d3d11_window_core_window_create_swap_chain()
424 desc1.SampleDesc.Quality = 0; in gst_d3d11_window_core_window_create_swap_chain()
425 desc1.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; in gst_d3d11_window_core_window_create_swap_chain()
426 desc1.BufferCount = 2; in gst_d3d11_window_core_window_create_swap_chain()
427 desc1.Scaling = DXGI_SCALING_NONE; in gst_d3d11_window_core_window_create_swap_chain()
[all …]
Dgstd3d11window_swapchainpanel.cpp392 DXGI_SWAP_CHAIN_DESC1 desc1 = { 0, }; in gst_d3d11_window_swap_chain_panel_create_swap_chain() local
395 desc1.Width = width; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
396 desc1.Height = height; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
397 desc1.Format = format; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
398 desc1.Stereo = FALSE; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
399 desc1.SampleDesc.Count = 1; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
400 desc1.SampleDesc.Quality = 0; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
401 desc1.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
402 desc1.BufferCount = 2; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
403 desc1.Scaling = DXGI_SCALING_STRETCH; in gst_d3d11_window_swap_chain_panel_create_swap_chain()
[all …]
Dgstd3d11window_win32.cpp951 DXGI_SWAP_CHAIN_DESC1 desc1 = { 0, }; in gst_d3d11_window_win32_create_swap_chain() local
952 desc1.Width = 0; in gst_d3d11_window_win32_create_swap_chain()
953 desc1.Height = 0; in gst_d3d11_window_win32_create_swap_chain()
954 desc1.Format = format; in gst_d3d11_window_win32_create_swap_chain()
956 desc1.Stereo = FALSE; in gst_d3d11_window_win32_create_swap_chain()
957 desc1.SampleDesc.Count = 1; in gst_d3d11_window_win32_create_swap_chain()
958 desc1.SampleDesc.Quality = 0; in gst_d3d11_window_win32_create_swap_chain()
959 desc1.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; in gst_d3d11_window_win32_create_swap_chain()
960 desc1.BufferCount = 2; in gst_d3d11_window_win32_create_swap_chain()
961 desc1.Scaling = DXGI_SCALING_STRETCH; in gst_d3d11_window_win32_create_swap_chain()
[all …]
/third_party/vulkan-loader/tests/
Dloader_version_tests.cpp119 DXGI_ADAPTER_DESC1 desc1{}; in TEST() local
120 desc1.AdapterLuid = _LUID{10, 1000}; in TEST()
121 desc1.VendorId = known_driver.vendor_id; in TEST()
122 env.platform_shim->add_dxgi_adapter(GpuType::discrete, desc1); in TEST()
123 driver.set_adapterLUID(desc1.AdapterLuid); in TEST()
150 DXGI_ADAPTER_DESC1 desc1{}; in TEST() local
151 desc1.AdapterLuid = _LUID{10, 1000}; in TEST()
152 desc1.VendorId = known_driver.vendor_id; in TEST()
153 env.platform_shim->add_dxgi_adapter(GpuType::discrete, desc1); in TEST()
154 driver.set_adapterLUID(desc1.AdapterLuid); in TEST()
[all …]
Dloader_alloc_callback_tests.cpp783 DXGI_ADAPTER_DESC1 desc1{}; in TEST() local
784 desc1.VendorId = known_driver.vendor_id; in TEST()
785 desc1.AdapterLuid = _LUID{10, 1000}; in TEST()
786 env.platform_shim->add_dxgi_adapter(GpuType::discrete, desc1); in TEST()
787 env.get_test_icd().set_adapterLUID(desc1.AdapterLuid); in TEST()
/third_party/vulkan-loader/tests/framework/shim/
Dshim.h88 DXGIAdapter(GpuType gpu_preference, DXGI_ADAPTER_DESC1 desc1, uint32_t adapter_index) in DXGIAdapter()
89 : gpu_preference(gpu_preference), desc1(desc1), adapter_index(adapter_index) {} in DXGIAdapter()
91 DXGI_ADAPTER_DESC1 desc1{};
153 void add_dxgi_adapter(GpuType gpu_preference, DXGI_ADAPTER_DESC1 desc1);
Dshim_common.cpp115 void PlatformShim::add_dxgi_adapter(GpuType gpu_preference, DXGI_ADAPTER_DESC1 desc1) { argument
116 dxgi_adapters.push_back(DXGIAdapter(gpu_preference, desc1, next_adapter_handle++));
/third_party/jerryscript/tests/jerry/
Dobject-defineproperty.js49 var desc1 = Object.getOwnPropertyDescriptor(obj, "prop");
56 assert (desc1.set === setter && desc2.set === undefined);
Dobject-get-own-property-descriptor.js48 var desc1 = Object.getOwnPropertyDescriptor (obj, undefined);
50 assert (desc1.value === 1 && desc2.value === 1);
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shader_llvm_resources.c68 LLVMValueRef desc0, desc1; in load_const_buffer_desc_fast_path() local
70 desc1 = LLVMConstInt(ctx->ac.i32, S_008F04_BASE_ADDRESS_HI(ctx->screen->info.address32_hi), 0); in load_const_buffer_desc_fast_path()
85 LLVMValueRef desc_elems[] = {desc0, desc1, in load_const_buffer_desc_fast_path()
Dsi_shader_llvm_gs.c270 LLVMValueRef desc1 = LLVMBuildExtractElement(builder, ctx->esgs_ring, ctx->ac.i32_1, ""); in si_preload_esgs_ring() local
273 desc1 = LLVMBuildOr(builder, desc1, LLVMConstInt(ctx->ac.i32, in si_preload_esgs_ring()
286 ctx->esgs_ring = LLVMBuildInsertElement(builder, ctx->esgs_ring, desc1, ctx->ac.i32_1, ""); in si_preload_esgs_ring()
Dsi_texture.c2009 const struct util_format_description *desc1, *desc2; in vi_dcc_formats_compatible() local
2026 desc1 = util_format_description(format1); in vi_dcc_formats_compatible()
2029 if (desc1->layout != UTIL_FORMAT_LAYOUT_PLAIN || desc2->layout != UTIL_FORMAT_LAYOUT_PLAIN) in vi_dcc_formats_compatible()
2033 if ((desc1->channel[0].type == UTIL_FORMAT_TYPE_FLOAT) != in vi_dcc_formats_compatible()
2040 if (desc1->channel[0].size != desc2->channel[0].size || in vi_dcc_formats_compatible()
2041 (desc1->nr_channels >= 2 && desc1->channel[1].size != desc2->channel[1].size)) in vi_dcc_formats_compatible()
2057 if (desc1->channel[0].type != desc2->channel[0].type || in vi_dcc_formats_compatible()
2058 (desc1->nr_channels >= 2 && desc1->channel[1].type != desc2->channel[1].type)) in vi_dcc_formats_compatible()
/third_party/libdrm/intel/
Dintel_decode.c3138 const char *desc1 = NULL; in decode_3d_965() local
3635 desc1 = "no write"; in decode_3d_965()
3638 desc1 = "qword write"; in decode_3d_965()
3641 desc1 = "PS_DEPTH_COUNT write"; in decode_3d_965()
3644 desc1 = "TIMESTAMP write"; in decode_3d_965()
3650 desc1, in decode_3d_965()
3701 desc1 = "no write"; in decode_3d_965()
3704 desc1 = "qword write"; in decode_3d_965()
3707 desc1 = "PS_DEPTH_COUNT write"; in decode_3d_965()
3710 desc1 = "TIMESTAMP write"; in decode_3d_965()
[all …]
/third_party/mesa3d/src/amd/vulkan/
Dradv_formats.c2095 const struct util_format_description *desc1, *desc2; in radv_dcc_formats_compatible() local
2107 desc1 = vk_format_description(format1); in radv_dcc_formats_compatible()
2110 if (desc1->nr_channels != desc2->nr_channels) in radv_dcc_formats_compatible()
2114 for (i = 0; i < desc1->nr_channels; i++) in radv_dcc_formats_compatible()
2115 if (desc1->swizzle[i] <= PIPE_SWIZZLE_W && desc2->swizzle[i] <= PIPE_SWIZZLE_W && in radv_dcc_formats_compatible()
2116 desc1->swizzle[i] != desc2->swizzle[i]) in radv_dcc_formats_compatible()
2119 radv_get_dcc_channel_type(desc1, &type1, &size1); in radv_dcc_formats_compatible()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/
Dp2p_build.c327 struct p2p_noa_desc *desc1, struct p2p_noa_desc *desc2) in p2p_buf_add_noa() argument
331 wpabuf_put_le16(buf, 2 + (desc1 ? 13 : 0) + (desc2 ? 13 : 0)); in p2p_buf_add_noa()
334 p2p_buf_add_noa_desc(buf, desc1); in p2p_buf_add_noa()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/
Dp2p_build.c327 struct p2p_noa_desc *desc1, struct p2p_noa_desc *desc2) in p2p_buf_add_noa() argument
331 wpabuf_put_le16(buf, 2 + (desc1 ? 13 : 0) + (desc2 ? 13 : 0)); in p2p_buf_add_noa()
334 p2p_buf_add_noa_desc(buf, desc1); in p2p_buf_add_noa()
/third_party/ffmpeg/libavutil/
Dpixdesc.c2869 const AVPixFmtDescriptor *desc1 = av_pix_fmt_desc_get(dst_pix_fmt1); in av_find_best_pix_fmt_of_2() local
2873 if (!desc1) { in av_find_best_pix_fmt_of_2()
2886 if(av_get_padded_bits_per_pixel(desc2) != av_get_padded_bits_per_pixel(desc1)) { in av_find_best_pix_fmt_of_2()
2887 …_fmt = av_get_padded_bits_per_pixel(desc2) < av_get_padded_bits_per_pixel(desc1) ? dst_pix_fmt2 : … in av_find_best_pix_fmt_of_2()
2889 … dst_pix_fmt = desc2->nb_components < desc1->nb_components ? dst_pix_fmt2 : dst_pix_fmt1; in av_find_best_pix_fmt_of_2()
/third_party/ffmpeg/libavcodec/
Divi.c203 static int ivi_huff_desc_cmp(const IVIHuffDesc *desc1, in ivi_huff_desc_cmp() argument
206 return desc1->num_rows != desc2->num_rows || in ivi_huff_desc_cmp()
207 memcmp(desc1->xbits, desc2->xbits, desc1->num_rows); in ivi_huff_desc_cmp()
/third_party/openssl/crypto/cmp/
Dcmp_vfy.c226 const char *desc1, const char *desc2, X509 *cert, in cert_acceptable() argument
238 self_issued ? "self-issued ": "", desc1, desc2); in cert_acceptable()
/third_party/node/deps/openssl/openssl/crypto/cmp/
Dcmp_vfy.c226 const char *desc1, const char *desc2, X509 *cert, in cert_acceptable() argument
238 self_issued ? "self-issued ": "", desc1, desc2); in cert_acceptable()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/d3d11/
Dgstd3d11device.cpp1168 DXGI_ADAPTER_DESC1 desc1; in gst_d3d11_device_new_internal() local
1169 hr = adapter->GetDesc1 (&desc1); in gst_d3d11_device_new_internal()
1172 if (SUCCEEDED (hr) && (desc1.Flags & 0x2) != 0x2) in gst_d3d11_device_new_internal()
/third_party/elfutils/src/
Delfcmp.c438 const void *desc1 = data1->d_buf + desc_offset; in main() local
475 || memcmp (desc1, desc2, note1.n_descsz)) in main()
/third_party/openssl/apps/
Dreq.c68 const char *desc1, const char *desc2);
1400 const char *desc1, const char *desc2) in build_data() argument
1408 if (!join(buf, buf_size, value, "\n", desc1)) in build_data()

12