Home
last modified time | relevance | path

Searched refs:next_size (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/virtio/vulkan/
Dvn_cs.c188 const uint32_t next_size = cur_size ? cur_size * 2 : min_size; in next_array_size() local
189 return next_size > cur_size ? next_size : 0; in next_array_size()
195 size_t next_size = cur_size ? cur_size * 2 : min_size; in next_buffer_size() local
196 while (next_size < need) { in next_buffer_size()
197 next_size *= 2; in next_buffer_size()
198 if (!next_size) in next_buffer_size()
201 return next_size; in next_buffer_size()
/third_party/gstreamer/gstplugins_bad/gst/debugutils/
Dgstchopmydata.c227 chopmydata->next_size = 0; in gst_chop_my_data_change_state()
268 chopmydata->next_size = begin * chopmydata->step_size; in get_next_size()
272 chopmydata->next_size = in get_next_size()
282 if (chopmydata->next_size == 0) { in gst_chop_my_data_process()
286 while (gst_adapter_available (chopmydata->adapter) >= chopmydata->next_size) { in gst_chop_my_data_process()
288 gst_adapter_take_buffer (chopmydata->adapter, chopmydata->next_size); in gst_chop_my_data_process()
293 chopmydata->next_size = 0; in gst_chop_my_data_process()
Dgstchopmydata.h53 int next_size; member
/third_party/ffmpeg/libavformat/
Drtpdec_qcelp.c46 int next_size; member
103 data->next_size = len; in store_packet()
161 data->next_size); in return_stored_frame()
162 data->next_size = 0; in return_stored_frame()
194 return data->next_size > 0; in return_stored_frame()
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dpicture_enc.c189 uint64_t next_size; in WebPMemoryWrite() local
193 next_size = (uint64_t)w->size + data_size; in WebPMemoryWrite()
194 if (next_size > w->max_size) { in WebPMemoryWrite()
197 if (next_max_size < next_size) next_max_size = next_size; in WebPMemoryWrite()
/third_party/skia/third_party/externals/libwebp/src/enc/
Dpicture_enc.c189 uint64_t next_size; in WebPMemoryWrite() local
193 next_size = (uint64_t)w->size + data_size; in WebPMemoryWrite()
194 if (next_size > w->max_size) { in WebPMemoryWrite()
197 if (next_max_size < next_size) next_max_size = next_size; in WebPMemoryWrite()
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/rtmp/
Drtmpconnection.c679 guint32 chunk_stream_id, header_size, next_size; in gst_rtmp_connection_do_read() local
699 next_size = gst_rtmp_chunk_stream_parse_payload (cstream, in gst_rtmp_connection_do_read()
702 if (input_bytes->len < header_size + next_size) { in gst_rtmp_connection_do_read()
703 needed_bytes = header_size + next_size; in gst_rtmp_connection_do_read()
707 memcpy (data, input_bytes->data + header_size, next_size); in gst_rtmp_connection_do_read()
708 gst_rtmp_connection_take_input_bytes (sc, header_size + next_size, NULL); in gst_rtmp_connection_do_read()
710 next_size = gst_rtmp_chunk_stream_wrote_payload (cstream, in gst_rtmp_connection_do_read()
713 if (next_size == 0) { in gst_rtmp_connection_do_read()
/third_party/rust/crates/nix/src/
Dfcntl.rs353 Some(next_size) => try_size = next_size,