Home
last modified time | relevance | path

Searched refs:max_data_items (Results 1 – 13 of 13) sorted by relevance

/dports/multimedia/libv4l/linux-5.13-rc2/net/ceph/
H A Dmsgpool.c17 msg = ceph_msg_new2(pool->type, pool->front_len, pool->max_data_items, in msgpool_alloc()
39 int front_len, int max_data_items, int size, in ceph_msgpool_init() argument
45 pool->max_data_items = max_data_items; in ceph_msgpool_init()
60 int max_data_items) in ceph_msgpool_get() argument
65 max_data_items > pool->max_data_items) { in ceph_msgpool_get()
67 __func__, front_len, max_data_items, pool->name, in ceph_msgpool_get()
68 pool->front_len, pool->max_data_items); in ceph_msgpool_get()
72 return ceph_msg_new2(pool->type, front_len, max_data_items, in ceph_msgpool_get()
H A Dmessenger.c1822 BUG_ON(msg->num_data_items >= msg->max_data_items); in ceph_msg_data_add()
1905 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1934 if (max_data_items) { in ceph_msg_new2()
1935 m->data = kmalloc_array(max_data_items, sizeof(*m->data), in ceph_msg_new2()
1940 m->max_data_items = max_data_items; in ceph_msg_new2()
/dports/multimedia/v4l_compat/linux-5.13-rc2/net/ceph/
H A Dmsgpool.c17 msg = ceph_msg_new2(pool->type, pool->front_len, pool->max_data_items, in msgpool_alloc()
39 int front_len, int max_data_items, int size, in ceph_msgpool_init() argument
45 pool->max_data_items = max_data_items; in ceph_msgpool_init()
60 int max_data_items) in ceph_msgpool_get() argument
65 max_data_items > pool->max_data_items) { in ceph_msgpool_get()
67 __func__, front_len, max_data_items, pool->name, in ceph_msgpool_get()
68 pool->front_len, pool->max_data_items); in ceph_msgpool_get()
72 return ceph_msg_new2(pool->type, front_len, max_data_items, in ceph_msgpool_get()
H A Dmessenger.c1822 BUG_ON(msg->num_data_items >= msg->max_data_items); in ceph_msg_data_add()
1905 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1934 if (max_data_items) { in ceph_msg_new2()
1935 m->data = kmalloc_array(max_data_items, sizeof(*m->data), in ceph_msg_new2()
1940 m->max_data_items = max_data_items; in ceph_msg_new2()
/dports/multimedia/v4l-utils/linux-5.13-rc2/net/ceph/
H A Dmsgpool.c17 msg = ceph_msg_new2(pool->type, pool->front_len, pool->max_data_items, in msgpool_alloc()
39 int front_len, int max_data_items, int size, in ceph_msgpool_init() argument
45 pool->max_data_items = max_data_items; in ceph_msgpool_init()
60 int max_data_items) in ceph_msgpool_get() argument
65 max_data_items > pool->max_data_items) { in ceph_msgpool_get()
67 __func__, front_len, max_data_items, pool->name, in ceph_msgpool_get()
68 pool->front_len, pool->max_data_items); in ceph_msgpool_get()
72 return ceph_msg_new2(pool->type, front_len, max_data_items, in ceph_msgpool_get()
H A Dmessenger.c1822 BUG_ON(msg->num_data_items >= msg->max_data_items); in ceph_msg_data_add()
1905 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items, in ceph_msg_new2() argument
1934 if (max_data_items) { in ceph_msg_new2()
1935 m->data = kmalloc_array(max_data_items, sizeof(*m->data), in ceph_msg_new2()
1940 m->max_data_items = max_data_items; in ceph_msg_new2()
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/ceph/
H A Dmsgpool.h16 int max_data_items; member
20 int front_len, int max_data_items, int size,
24 int max_data_items);
H A Dmessenger.h246 int max_data_items; member
574 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items,
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/ceph/
H A Dmsgpool.h16 int max_data_items; member
20 int front_len, int max_data_items, int size,
24 int max_data_items);
H A Dmessenger.h246 int max_data_items; member
574 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items,
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/linux/ceph/
H A Dmsgpool.h16 int max_data_items; member
20 int front_len, int max_data_items, int size,
24 int max_data_items);
H A Dmessenger.h246 int max_data_items; member
574 struct ceph_msg *ceph_msg_new2(int type, int front_len, int max_data_items,
/dports/lang/mono/mono-5.10.1.57/mono/mini/interp/
H A Dtransform.c90 int max_data_items; member
718 if (td->max_data_items == td->n_data_items) { in get_data_item_index()
719 td->max_data_items = td->n_data_items == 0 ? 16 : 2 * td->max_data_items; in get_data_item_index()
720 td->data_items = g_realloc (td->data_items, td->max_data_items * sizeof(td->data_items [0])); in get_data_item_index()
1639 td->max_data_items = 0; in generate()