Searched refs:cur_entry (Results 1 – 6 of 6) sorted by relevance
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_cache.c | 152 struct pb_cache_entry *cur_entry; in pb_cache_reclaim_buffer() local 169 cur_entry = LIST_ENTRY(struct pb_cache_entry, cur, head); in pb_cache_reclaim_buffer() 171 if (!entry && (ret = pb_cache_is_buffer_compat(cur_entry, size, in pb_cache_reclaim_buffer() 173 entry = cur_entry; in pb_cache_reclaim_buffer() 174 else if (os_time_timeout(cur_entry->start, cur_entry->end, now)) in pb_cache_reclaim_buffer() 175 destroy_buffer_locked(cur_entry); in pb_cache_reclaim_buffer() 191 cur_entry = LIST_ENTRY(struct pb_cache_entry, cur, head); in pb_cache_reclaim_buffer() 192 ret = pb_cache_is_buffer_compat(cur_entry, size, alignment, usage); in pb_cache_reclaim_buffer() 195 entry = cur_entry; in pb_cache_reclaim_buffer()
|
/third_party/e2fsprogs/contrib/android/ |
D | basefs_allocator.c | 11 struct basefs_entry *cur_entry; member 208 allocator->cur_entry = NULL; in base_fs_alloc_load() 287 struct block_range_list *list = &allocator->cur_entry->blocks; in skip_blocks() 307 struct basefs_entry *e = allocator->cur_entry; in basefs_block_allocator() 366 allocator->cur_entry = ext2fs_hashmap_lookup(allocator->entries, in base_fs_alloc_set_target() 382 if (!allocator || !allocator->cur_entry || mode != S_IFREG) in base_fs_alloc_unset_target() 385 fs_free_blocks_range(fs, allocator, &allocator->cur_entry->blocks); in base_fs_alloc_unset_target() 386 delete_block_ranges(&allocator->cur_entry->blocks); in base_fs_alloc_unset_target()
|
/third_party/ffmpeg/libavformat/ |
D | segment.c | 123 SegmentListEntry cur_entry; member 230 if ((ret = av_reallocp(&seg->cur_entry.filename, size)) < 0) in set_segment_filename() 232 snprintf(seg->cur_entry.filename, size, "%s%s", in set_segment_filename() 386 memcpy(entry, &seg->cur_entry, sizeof(*entry)); in segment_end() 412 segment_list_print_entry(seg->list_pb, seg->list_type, &seg->cur_entry, s); in segment_end() 433 …tc.start += (int)((seg->cur_entry.end_time - seg->cur_entry.start_time) * av_q2d(rate));/* increme… in segment_end() 453 …st_tc.start += (int)((seg->cur_entry.end_time - seg->cur_entry.start_time) * av_q2d(st_rate)); … in segment_end() 668 av_freep(&seg->cur_entry.filename); in seg_free() 910 if (seg->cur_entry.last_duration == 0) in seg_write_packet() 911 seg->cur_entry.end_time = (double)pkt->pts * av_q2d(st->time_base); in seg_write_packet() [all …]
|
/third_party/mbedtls/library/ |
D | x509_crl.c | 235 mbedtls_x509_crl_entry *cur_entry = entry; in x509_get_entries() local 256 cur_entry->raw.tag = **p; in x509_get_entries() 263 cur_entry->raw.p = *p; in x509_get_entries() 264 cur_entry->raw.len = len2; in x509_get_entries() 267 if( ( ret = mbedtls_x509_get_serial( p, end2, &cur_entry->serial ) ) != 0 ) in x509_get_entries() 271 &cur_entry->revocation_date ) ) != 0 ) in x509_get_entries() 275 &cur_entry->entry_ext ) ) != 0 ) in x509_get_entries() 280 cur_entry->next = mbedtls_calloc( 1, sizeof( mbedtls_x509_crl_entry ) ); in x509_get_entries() 282 if( cur_entry->next == NULL ) in x509_get_entries() 285 cur_entry = cur_entry->next; in x509_get_entries()
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | matroskamux.c | 629 GList *cur_entry, *cur_chapter; in check_toc() local 643 cur_entry = gst_toc_get_entries (ref_toc); in check_toc() 644 while (cur_entry != NULL && *index < last_offset) { in check_toc() 661 cur_chapter = gst_toc_entry_get_sub_entries (cur_entry->data); in check_toc() 669 cur_entry = cur_entry->next; in check_toc() 672 fail_unless (cur_entry == NULL && *index == last_offset); in check_toc()
|
/third_party/gstreamer/gstplugins_good/gst/audioparsers/ |
D | gstflacparse.c | 1012 GstTocEntry *cur_entry = NULL, *prev_entry = NULL; in gst_flac_parse_handle_cuesheet() local 1056 prev_entry = cur_entry; in gst_flac_parse_handle_cuesheet() 1066 cur_entry = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_TRACK, id); in gst_flac_parse_handle_cuesheet() 1071 gst_toc_entry_set_start_stop_times (cur_entry, start, -1); in gst_flac_parse_handle_cuesheet() 1076 gst_toc_entry_set_tags (cur_entry, tags); in gst_flac_parse_handle_cuesheet() 1078 gst_toc_append_entry (toc, cur_entry); in gst_flac_parse_handle_cuesheet() 1090 gst_toc_entry_set_start_stop_times (cur_entry, start, stop); in gst_flac_parse_handle_cuesheet()
|