/third_party/flutter/flutter/packages/flutter/test/rendering/ |
D | slivers_layout_test.dart | 10 int layouts = 0; 16 layouts += 1; 35 expect(layouts, 0); 37 expect(layouts, 1); 41 expect(layouts, 1); 43 expect(layouts, 1); 47 expect(layouts, 1); 49 expect(layouts, 1); 53 expect(layouts, 1); 55 expect(layouts, 1); [all …]
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/ |
D | gstvkdescriptorset.c | 83 gst_vulkan_handle_unref (set->layouts[i]); in gst_vulkan_descriptor_set_free() 84 g_free (set->layouts); in gst_vulkan_descriptor_set_free() 97 GstVulkanHandle ** layouts) in gst_vulkan_descriptor_set_init() argument 104 set->layouts = g_new0 (GstVulkanHandle *, n_layouts); in gst_vulkan_descriptor_set_init() 106 set->layouts[i] = gst_vulkan_handle_ref (layouts[i]); in gst_vulkan_descriptor_set_init() 127 VkDescriptorSet set, guint n_layouts, GstVulkanHandle ** layouts) in gst_vulkan_descriptor_set_new_wrapped() argument 134 g_return_val_if_fail (layouts != NULL, NULL); in gst_vulkan_descriptor_set_new_wrapped() 137 gst_vulkan_descriptor_set_init (ret, pool, set, n_layouts, layouts); in gst_vulkan_descriptor_set_new_wrapped()
|
D | gstvkdescriptorcache.c | 42 GstVulkanHandle **layouts; member 59 gst_vulkan_handle_unref (priv->layouts[i]); in gst_vulkan_descriptor_cache_finalize() 60 g_free (priv->layouts); in gst_vulkan_descriptor_cache_finalize() 79 guint n_layouts, GstVulkanHandle ** layouts) in gst_vulkan_descriptor_cache_new() argument 93 priv->layouts = g_new0 (GstVulkanHandle *, n_layouts); in gst_vulkan_descriptor_cache_new() 95 priv->layouts[i] = gst_vulkan_handle_ref (layouts[i]); in gst_vulkan_descriptor_cache_new() 126 priv->layouts, error); in gst_vulkan_descriptor_cache_alloc_impl()
|
D | gstvkdescriptorpool.c | 160 GstVulkanHandle ** layouts, GError ** error) in descriptor_set_alloc() argument 171 vk_layouts[i] = (VkDescriptorSetLayout) layouts[i]->handle; in descriptor_set_alloc() 190 layouts); in descriptor_set_alloc() 207 guint n_layouts, GstVulkanHandle ** layouts, GError ** error) in gst_vulkan_descriptor_pool_create() argument 214 g_return_val_if_fail (layouts != NULL, NULL); in gst_vulkan_descriptor_pool_create() 231 cmd = descriptor_set_alloc (pool, n_layouts, layouts, error); in gst_vulkan_descriptor_pool_create()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | VulkanImageTest.cpp | 173 GLenum layouts[1] = {GL_NONE}; in TEST_P() local 174 glReleaseTexturesANGLE(1, textures, layouts); in TEST_P() 175 EXPECT_EQ(layouts[0], static_cast<GLenum>(GL_LAYOUT_TRANSFER_DST_EXT)); in TEST_P() 184 layouts[0] = GL_LAYOUT_TRANSFER_SRC_EXT; in TEST_P() 185 glAcquireTexturesANGLE(1, textures, layouts); in TEST_P() 228 GLenum layouts[1] = {GL_NONE}; in TEST_P() local 229 glReleaseTexturesANGLE(1, textures, layouts); in TEST_P() 230 EXPECT_EQ(layouts[0], static_cast<GLenum>(GL_LAYOUT_TRANSFER_DST_EXT)); in TEST_P() 237 layouts[0] = GL_LAYOUT_TRANSFER_SRC_EXT; in TEST_P() 238 glAcquireTexturesANGLE(1, textures, layouts); in TEST_P() [all …]
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | ANGLE_vulkan_image.txt | 49 const GLenum *layouts); 53 GLenum *layouts); 64 const GLenum *layouts); 69 described in table 4.4. However, the layouts do not necessarily correspond 77 GLenum *layouts); 78 will release ownership of textures. The current texture layouts will be
|
/third_party/ffmpeg/libavfilter/ |
D | aeval.c | 251 AVFilterChannelLayouts *layouts; in query_formats() local 261 layouts = ff_make_format64_list(chlayouts); in query_formats() 262 if (!layouts) in query_formats() 264 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats() 354 AVFilterChannelLayouts *layouts; in aeval_query_formats() local 364 layouts = ff_all_channel_counts(); in aeval_query_formats() 365 if ((ret = ff_channel_layouts_ref(layouts, &inlink->outcfg.channel_layouts)) < 0) in aeval_query_formats() 369 layouts = ff_all_channel_counts(); in aeval_query_formats() 370 if ((ret = ff_set_common_channel_layouts(ctx, layouts)) < 0) in aeval_query_formats() 374 layouts = NULL; in aeval_query_formats() [all …]
|
D | af_volumedetect.c | 44 AVFilterChannelLayouts *layouts; in query_formats() local 50 layouts = ff_all_channel_counts(); in query_formats() 51 if (!layouts) in query_formats() 53 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats()
|
D | af_agate.c | 193 AVFilterChannelLayouts *layouts; in query_formats() local 202 layouts = ff_all_channel_counts(); in query_formats() 203 if (!layouts) in query_formats() 205 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats() 351 AVFilterChannelLayouts *layouts = NULL; in scquery_formats() local 365 …if ((ret = ff_add_channel_layout(&layouts, ctx->inputs[0]->incfg.channel_layouts->channel_layouts[… in scquery_formats() 366 (ret = ff_channel_layouts_ref(layouts, &ctx->outputs[0]->incfg.channel_layouts)) < 0) in scquery_formats() 370 layouts = ff_all_channel_counts(); in scquery_formats() 371 if ((ret = ff_channel_layouts_ref(layouts, &ctx->inputs[i]->outcfg.channel_layouts)) < 0) in scquery_formats()
|
D | af_tremolo.c | 89 AVFilterChannelLayouts *layouts; in query_formats() local 96 layouts = ff_all_channel_counts(); in query_formats() 97 if (!layouts) in query_formats() 99 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats()
|
D | af_dcshift.c | 57 AVFilterChannelLayouts *layouts; in query_formats() local 64 layouts = ff_all_channel_counts(); in query_formats() 65 if (!layouts) in query_formats() 67 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats()
|
D | af_lv2.c | 481 AVFilterChannelLayouts *layouts; in query_formats() local 511 layouts = NULL; in query_formats() 512 ret = ff_add_channel_layout(&layouts, AV_CH_LAYOUT_STEREO); in query_formats() 515 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats() 523 layouts = NULL; in query_formats() 524 ret = ff_add_channel_layout(&layouts, inlayout); in query_formats() 527 ret = ff_channel_layouts_ref(layouts, &inlink->outcfg.channel_layouts); in query_formats() 532 ret = ff_channel_layouts_ref(layouts, &outlink->incfg.channel_layouts); in query_formats() 541 layouts = NULL; in query_formats() 542 ret = ff_add_channel_layout(&layouts, outlayout); in query_formats() [all …]
|
D | af_amerge.c | 80 AVFilterChannelLayouts *layouts; in query_formats() local 136 layouts = NULL; in query_formats() 137 if ((ret = ff_add_channel_layout(&layouts, inlayout[i])) < 0) in query_formats() 139 if ((ret = ff_channel_layouts_ref(layouts, &ctx->inputs[i]->outcfg.channel_layouts)) < 0) in query_formats() 142 layouts = NULL; in query_formats() 143 if ((ret = ff_add_channel_layout(&layouts, outlayout)) < 0) in query_formats() 145 if ((ret = ff_channel_layouts_ref(layouts, &ctx->outputs[0]->incfg.channel_layouts)) < 0) in query_formats()
|
/third_party/ffmpeg/libavformat/ |
D | mov_chan.c | 434 const enum MovChannelLayoutTag *layouts; member 500 const enum MovChannelLayoutTag *layouts = NULL; in ff_mov_get_channel_layout_tag() local 508 layouts = mov_codec_ch_layouts[i].layouts; in ff_mov_get_channel_layout_tag() 510 if (layouts) { in ff_mov_get_channel_layout_tag() 521 for (i = 0; layouts[i] != 0; i++) { in ff_mov_get_channel_layout_tag() 522 if ((layouts[i] & 0xFFFF) != channels) in ff_mov_get_channel_layout_tag() 525 if (layout_map[j].tag == layouts[i] && in ff_mov_get_channel_layout_tag() 532 tag = layouts[i]; in ff_mov_get_channel_layout_tag()
|
D | isom.c | 424 const MovChannelLayout *layouts; in ff_mov_write_chan() local 427 for (layouts = mov_channel_layout; layouts->channel_layout; layouts++) in ff_mov_write_chan() 428 if (channel_layout == layouts->channel_layout) { in ff_mov_write_chan() 429 layout_tag = layouts->layout_tag; in ff_mov_write_chan()
|
/third_party/ffmpeg/libavfilter/tests/ |
D | filtfmts.c | 51 AVFilterChannelLayouts *layouts; \ in print_formats() 59 layouts = filter_ctx->inout##puts[i]->outin##cfg.channel_layouts; \ in print_formats() 60 for (j = 0; j < layouts->nb_channel_layouts; j++) { \ in print_formats() 63 layouts->channel_layouts[j]); \ in print_formats()
|
/third_party/grpc/src/core/ext/upbdefs-generated/google/protobuf/ |
D | duration.upbdefs.c | 14 static const upb_msglayout *layouts[1] = { variable 37 layouts,
|
D | any.upbdefs.c | 14 static const upb_msglayout *layouts[1] = { variable 36 layouts,
|
D | timestamp.upbdefs.c | 14 static const upb_msglayout *layouts[1] = { variable 37 layouts,
|
D | empty.upbdefs.c | 14 static const upb_msglayout *layouts[1] = { variable 34 layouts,
|
/third_party/ffmpeg/libswresample/tests/ |
D | swresample.c | 112 static const uint64_t layouts[]={ variable 240 …g_tests[FF_ARRAY_ELEMS(rates) * FF_ARRAY_ELEMS(layouts) * FF_ARRAY_ELEMS(formats) * FF_ARRAY_ELEMS… in main() 284 … in_ch_layout = layouts[vector % FF_ARRAY_ELEMS(layouts)]; vector /= FF_ARRAY_ELEMS(layouts); in main() 285 … out_ch_layout = layouts[vector % FF_ARRAY_ELEMS(layouts)]; vector /= FF_ARRAY_ELEMS(layouts); in main()
|
/third_party/grpc/src/core/ext/upbdefs-generated/src/proto/grpc/gcp/ |
D | transport_security_common.upbdefs.c | 15 static const upb_msglayout *layouts[2] = { variable 49 layouts,
|
/third_party/grpc/src/core/ext/upbdefs-generated/envoy/annotations/ |
D | resource.upbdefs.c | 15 static const upb_msglayout *layouts[1] = { variable 38 layouts,
|
/third_party/grpc/src/core/ext/upbdefs-generated/src/proto/grpc/health/v1/ |
D | health.upbdefs.c | 15 static const upb_msglayout *layouts[2] = { variable 51 layouts,
|
/third_party/grpc/src/core/ext/upbdefs-generated/udpa/annotations/ |
D | status.upbdefs.c | 15 static const upb_msglayout *layouts[1] = { variable 46 layouts,
|