/third_party/littlefs/scripts/ |
D | coverage.py | 179 for name, (old_hits, old_count) in olds.items(): 182 old_hits, old_count, 184 new_hits-old_hits, new_count-old_count, 186 - (old_hits/old_count if old_count else 1.0))) 219 old_hits, old_count, argument 224 '%d/%d' % (old_hits, old_count) 225 if old_count else '-', 226 '%.1f%%' % (100*old_hits/old_count) 227 if old_count else '-', 249 old_hits, old_count, [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | cbs_sei.c | 77 int old_count = list->nb_messages_allocated; in ff_cbs_sei_list_add() local 79 av_assert0(list->nb_messages <= old_count); in ff_cbs_sei_list_add() 80 if (list->nb_messages + 1 > old_count) { in ff_cbs_sei_list_add() 81 int new_count = 2 * old_count + 1; in ff_cbs_sei_list_add() 92 memset(list->messages + old_count, 0, in ff_cbs_sei_list_add() 93 (new_count - old_count) * sizeof(*list->messages)); in ff_cbs_sei_list_add()
|
/third_party/mesa3d/src/util/ |
D | ralloc.h | 216 #define rerzalloc(ctx, ptr, type, old_count, new_count) \ argument 217 ((type *) rerzalloc_array_size(ctx, ptr, sizeof(type), old_count, new_count)) 281 unsigned old_count, unsigned new_count);
|
D | ralloc.c | 241 unsigned old_count, unsigned new_count) in rerzalloc_array_size() argument 246 return rerzalloc_size(ctx, ptr, size * old_count, size * new_count); in rerzalloc_array_size()
|
/third_party/freetype/src/pfr/ |
D | pfrgload.c | 742 FT_UInt n, old_count, count; in pfr_glyph_load_rec() local 747 old_count = glyph->num_subs; in pfr_glyph_load_rec() 757 count = glyph->num_subs - old_count; in pfr_glyph_load_rec() 773 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec() 783 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec()
|
/third_party/flutter/skia/third_party/externals/freetype/src/pfr/ |
D | pfrgload.c | 742 FT_UInt n, old_count, count; in pfr_glyph_load_rec() local 747 old_count = glyph->num_subs; in pfr_glyph_load_rec() 757 count = glyph->num_subs - old_count; in pfr_glyph_load_rec() 773 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec() 783 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec()
|
/third_party/skia/third_party/externals/freetype/src/pfr/ |
D | pfrgload.c | 742 FT_UInt n, old_count, count; in pfr_glyph_load_rec() local 747 old_count = glyph->num_subs; in pfr_glyph_load_rec() 757 count = glyph->num_subs - old_count; in pfr_glyph_load_rec() 773 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec() 783 subglyph = glyph->subs + old_count + n; in pfr_glyph_load_rec()
|
/third_party/python/Lib/test/support/ |
D | threading_helper.py | 85 old_count = _thread._count() 93 if count <= old_count:
|
/third_party/gstreamer/gstplugins_good/gst/equalizer/ |
D | gstiirequalizer.c | 633 guint old_count, i; in gst_iir_equalizer_compute_frequencies() local 647 old_count = equ->freq_band_count; in gst_iir_equalizer_compute_frequencies() 649 GST_DEBUG ("bands %u -> %u", old_count, new_count); in gst_iir_equalizer_compute_frequencies() 651 if (old_count < new_count) { in gst_iir_equalizer_compute_frequencies() 654 for (i = old_count; i < new_count; i++) { in gst_iir_equalizer_compute_frequencies() 667 for (i = new_count; i < old_count; i++) { in gst_iir_equalizer_compute_frequencies()
|
/third_party/toybox/kconfig/ |
D | expr.c | 196 int res, old_count; in expr_eq() local 212 old_count = trans_count; in expr_eq() 218 trans_count = old_count; in expr_eq()
|
/third_party/node/src/ |
D | cares_wrap.cc | 904 int type, status, old_count; in Parse() local 991 old_count = ret->Length(); in Parse() 996 for (uint32_t i = old_count; i < ret->Length(); i++) { in Parse() 1019 old_count = ret->Length(); in Parse() 1023 for (uint32_t i = old_count; i < ret->Length(); i++) { in Parse()
|
/third_party/vulkan-loader/loader/ |
D | loader.c | 5657 uint32_t old_count = inst->phys_dev_count_tramp; in setup_loader_tramp_phys_devs() local 5669 int32_t *old_to_new_index = (int32_t *)loader_stack_alloc(sizeof(int32_t) * old_count); in setup_loader_tramp_phys_devs() 5676 for (uint32_t cur_idx = 0; cur_idx < old_count; ++cur_idx) { in setup_loader_tramp_phys_devs() 5684 for (uint32_t cur_idx = 0; cur_idx < old_count; ++cur_idx) { in setup_loader_tramp_phys_devs() 5698 if (found_count == phys_dev_count && 0 != old_count && old_count == new_count) { in setup_loader_tramp_phys_devs() 5700 for (uint32_t cur_idx = 0; cur_idx < old_count; ++cur_idx) { in setup_loader_tramp_phys_devs() 5731 for (uint32_t cur_idx = 0; cur_idx < old_count; ++cur_idx) { in setup_loader_tramp_phys_devs() 5764 for (uint32_t cur_idx = 0; cur_idx < old_count; ++cur_idx) { in setup_loader_tramp_phys_devs()
|