Home
last modified time | relevance | path

Searched refs:n_params_alloc (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgstelementfactory.c393 guint n_params_alloc = 16; in gst_element_factory_property_valist_to_array() local
407 names_array = g_new0 (const gchar *, n_params_alloc); in gst_element_factory_property_valist_to_array()
408 values_array = g_new0 (GValue, n_params_alloc); in gst_element_factory_property_valist_to_array()
418 if (G_UNLIKELY (n_params == n_params_alloc)) { in gst_element_factory_property_valist_to_array()
419 n_params_alloc *= 2u; in gst_element_factory_property_valist_to_array()
421 g_realloc (names_array, sizeof (const gchar *) * n_params_alloc); in gst_element_factory_property_valist_to_array()
422 values_array = g_realloc (values_array, sizeof (GValue) * n_params_alloc); in gst_element_factory_property_valist_to_array()
424 sizeof (GValue) * (n_params_alloc - n_params)); in gst_element_factory_property_valist_to_array()
/third_party/glib/gobject/
Dgobject.c2227 guint n_params_alloc = G_N_ELEMENTS (params_stack); in g_object_new_valist() local
2241 if (G_UNLIKELY (n_params == n_params_alloc)) in g_object_new_valist()
2245 if (n_params_alloc == G_N_ELEMENTS (params_stack)) in g_object_new_valist()
2247 n_params_alloc = G_N_ELEMENTS (params_stack) * 2u; in g_object_new_valist()
2248 params = g_new (GObjectConstructParam, n_params_alloc); in g_object_new_valist()
2249 values = g_new (GValue, n_params_alloc); in g_object_new_valist()
2255 n_params_alloc *= 2u; in g_object_new_valist()
2256 params = g_realloc (params, sizeof (GObjectConstructParam) * n_params_alloc); in g_object_new_valist()
2257 values = g_realloc (values, sizeof (GValue) * n_params_alloc); in g_object_new_valist()
2287 if (G_UNLIKELY (n_params_alloc != G_N_ELEMENTS (params_stack))) in g_object_new_valist()