Home
last modified time | relevance | path

Searched refs:drop (Results 1 - 25 of 246) sorted by relevance

12345678910

/third_party/ffmpeg/libavfilter/
H A Dtrim.c128 int drop; in trim_filter_frame() local
130 /* drop everything if EOF has already been returned */ in trim_filter_frame()
137 drop = 1; in trim_filter_frame()
139 drop = 0; in trim_filter_frame()
142 drop = 0; in trim_filter_frame()
143 if (drop) in trim_filter_frame()
144 goto drop; in trim_filter_frame()
151 drop = 1; in trim_filter_frame()
154 drop = 0; in trim_filter_frame()
157 drop in trim_filter_frame()
226 int drop; atrim_filter_frame() local
[all...]
H A Dvf_freezeframes.c78 int drop = ctx->inputs[0]->frame_count_out >= s->first && in activate() local
85 if (drop && s->replace_frame) { in activate()
100 } else if (!drop) { in activate()
121 if (!drop || (drop && s->replace_frame)) in activate()
/third_party/zlib/contrib/infback9/
H A Dinftree9.c40 unsigned drop; /* code bits to drop for sub-table */ in inflate_table9() local
141 with length len. That code is converted to an index by dropping drop in inflate_table9()
142 bits off of the bottom. For codes where len is less than drop + curr, in inflate_table9()
143 those top drop + curr - len bits are incremented through all values to in inflate_table9()
149 new sub-table should be started. drop is zero when the root table is in inflate_table9()
150 being filled, and drop is root when sub-tables are being filled. in inflate_table9()
194 drop = 0; /* current bits to drop from code for index */ in inflate_table9()
207 this.bits = (unsigned char)(len - drop); in inflate_table9()
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dinftrees.c45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
203 drop = 0; /* current bits to drop from code for index */
216 here.bits = (unsigned char)(len - drop);
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dinftrees.c45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
203 drop = 0; /* current bits to drop from code for index */
216 here.bits = (unsigned char)(len - drop);
[all...]
/third_party/node/deps/zlib/
H A Dinftrees.c40 unsigned drop; /* code bits to drop for sub-table */ in inflate_table() local
147 with length len. That code is converted to an index by dropping drop in inflate_table()
148 bits off of the bottom. For codes where len is less than drop + curr, in inflate_table()
149 those top drop + curr - len bits are incremented through all values to in inflate_table()
155 new sub-table should be started. drop is zero when the root table is in inflate_table()
156 being filled, and drop is root when sub-tables are being filled. in inflate_table()
198 drop = 0; /* current bits to drop from code for index */ in inflate_table()
211 here.bits = (unsigned char)(len - drop); in inflate_table()
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dinftrees.c45 unsigned drop; /* code bits to drop for sub-table */ local
152 with length len. That code is converted to an index by dropping drop
153 bits off of the bottom. For codes where len is less than drop + curr,
154 those top drop + curr - len bits are incremented through all values to
160 new sub-table should be started. drop is zero when the root table is
161 being filled, and drop is root when sub-tables are being filled.
203 drop = 0; /* current bits to drop from code for index */
216 here.bits = (unsigned char)(len - drop);
[all...]
/third_party/zlib/
H A Dinftrees.c40 unsigned drop; /* code bits to drop for sub-table */ in inflate_table() local
147 with length len. That code is converted to an index by dropping drop in inflate_table()
148 bits off of the bottom. For codes where len is less than drop + curr, in inflate_table()
149 those top drop + curr - len bits are incremented through all values to in inflate_table()
155 new sub-table should be started. drop is zero when the root table is in inflate_table()
156 being filled, and drop is root when sub-tables are being filled. in inflate_table()
198 drop = 0; /* current bits to drop from code for index */ in inflate_table()
211 here.bits = (unsigned char)(len - drop); in inflate_table()
[all...]
/third_party/rust/crates/rustix/tests/fs/
H A Dflock.rs12 drop(f); in test_flock()
13 drop(g); in test_flock()
21 drop(f); in test_flock()
22 drop(g); in test_flock()
32 drop(f); in test_flock()
33 drop(g); in test_flock()
/third_party/lwip/test/unit/ip4/
H A Dtest_ip4.c90 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
97 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
104 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
111 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
118 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
125 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
132 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
139 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
146 fail_unless(lwip_stats.ip_frag.drop == 0); in START_TEST()
/third_party/rust/crates/nix/src/sys/ptrace/
H A Dlinux.rs242 Errno::result(res).map(drop) in setregs()
288 Errno::result(res).map(drop) in setoptions()
330 .map(drop) // ignore the useless return value in traceme()
345 .map(drop) // ignore the useless return value in syscall()
366 .map(drop) in sysemu()
382 .map(drop) // ignore the useless return value in attach()
399 .map(drop) // ignore the useless return value in seize()
414 .map(drop) in detach()
428 ptrace_other(Request::PTRACE_CONT, pid, ptr::null_mut(), data).map(drop) in cont()
446 .map(drop) in interrupt()
[all...]
H A Dbsd.rs85 .map(drop) in traceme()
94 ptrace_other(Request::PT_ATTACH, pid, ptr::null_mut(), 0).map(drop) in attach()
108 ptrace_other(Request::PT_DETACH, pid, ptr::null_mut(), data).map(drop) in detach()
124 .map(drop) in cont()
133 ptrace_other(Request::PT_KILL, pid, 0 as AddressType, 0).map(drop) in kill()
173 ptrace_other(Request::PT_STEP, pid, ptr::null_mut(), data).map(drop) in step()
194 unsafe { ptrace_other(Request::PT_WRITE_D, pid, addr, data).map(drop) } in write()
/third_party/ffmpeg/libavutil/
H A Dtimecode.c56 int drop = !!(tc->flags & AV_TIMECODE_FLAG_DROPFRAME); in av_timecode_get_smpte_from_framenum() local
60 if (drop) in av_timecode_get_smpte_from_framenum()
66 return av_timecode_get_smpte(tc->rate, drop, hh, mm, ss, ff); in av_timecode_get_smpte_from_framenum()
69 uint32_t av_timecode_get_smpte(AVRational rate, int drop, int hh, int mm, int ss, int ff) in av_timecode_get_smpte() argument
90 tc |= drop << 30; in av_timecode_get_smpte()
106 int drop = tc->flags & AV_TIMECODE_FLAG_DROPFRAME; in av_timecode_make_string() local
110 if (drop) in av_timecode_make_string()
125 hh, mm, ss, drop ? ';' : ':', ff_len, ff); in av_timecode_make_string()
144 unsigned drop = tcsmpte & 1<<30 && !prevent_df; // 1-bit drop i in av_timecode_make_smpte_tc_string2() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dnoise_bsf.c103 av_log(ctx, AV_LOG_WARNING, "Both drop '%s' and dropamount=%d set. Ignoring dropamount.\n", in noise_init()
112 av_log(ctx, AV_LOG_ERROR, "Error in parsing expr for drop: %s\n", s->drop_str); in noise_init()
129 int i, ret, amount, drop = 0; in noise() local
164 drop = 0; in noise()
166 drop = !(s->state % FFABS((int)res)); in noise()
168 drop = !!res; in noise()
172 drop = !(s->state % s->dropamount); in noise()
175 av_log(ctx, AV_LOG_VERBOSE, "Stream #%d packet %d pts %"PRId64" - amount %d drop %d\n", in noise()
176 pkt->stream_index, (unsigned int)s->var_values[VAR_N], pkt->pts, amount, drop); in noise()
178 if (drop) { in noise()
[all...]
/third_party/lwip/src/core/ipv6/
H A Dip6.c427 IP6_STATS_INC(ip6.drop);
450 IP6_STATS_INC(ip6.drop);
463 IP6_STATS_INC(ip6.drop);
472 IP6_STATS_INC(ip6.drop);
486 IP6_STATS_INC(ip6.drop);
497 IP6_STATS_INC(ip6.drop);
590 IP6_STATS_INC(ip6.drop);
613 /* free (drop) packet pbufs */
616 IP6_STATS_INC(ip6.drop);
633 /* free (drop) packe
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-subset-cff-common.hh653 /* mark hint ops and arguments for drop */ in subset()
668 drop_hints_param_t drop; in subset() local
669 if (drop_hints_in_str (parsed_charstrings[i], param, drop)) in subset()
672 if (drop.vsindex_dropped) in subset()
768 const subr_subset_param_t &param, drop_hints_param_t &drop) in drop_hints_in_subr()
770 drop.ends_in_hint = false; in drop_hints_in_subr()
771 bool has_hint = drop_hints_in_str (subrs[subr_num], param, drop); in drop_hints_in_subr()
774 * then this entire subroutine must be a hint. drop its call. */ in drop_hints_in_subr()
775 if (drop.ends_in_hint) in drop_hints_in_subr()
781 drop in drop_hints_in_subr()
[all...]
/third_party/rust/crates/foreign-types/foreign-types/src/
H A Dlib.rs44 //! fn drop(&mut self) {
94 //! fn drop = foo_sys::FOO_free;
150 //! fn drop = foo_sys::FOO_free;
159 //! fn drop = foo_sys::BAR_free;
197 /// fn drop = openssl_sys::SSL_free;
212 fn drop = $drop:expr; in drop() functions
240 fn drop(&mut self) { in drop() functions
241 unsafe { $drop(self.0) } in drop()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dmacros.rs138 fn drop = $drop:expr; in drop() functions
150 fn drop = $drop; in drop() functions
169 fn drop = $drop:expr; in drop() functions
198 fn drop(&mut self) { in drop() functions
199 unsafe { $drop(self.0) } in drop()
/third_party/rust/crates/nix/src/
H A Dkmod.rs55 Errno::result(res).map(drop) in init_module()
96 Errno::result(res).map(drop) in finit_module()
127 Errno::result(res).map(drop) in delete_module()
/third_party/rust/crates/nix/src/sys/
H A Dmman.rs376 Errno::result(libc::mlock(addr, length)).map(drop) in mlock()
389 Errno::result(libc::munlock(addr, length)).map(drop) in munlock()
399 unsafe { Errno::result(libc::mlockall(flags.bits())) }.map(drop) in mlockall()
409 unsafe { Errno::result(libc::munlockall()) }.map(drop) in munlockall()
489 Errno::result(libc::munmap(addr, len)).map(drop) in munmap()
505 Errno::result(libc::madvise(addr, length, advise as i32)).map(drop) in madvise()
539 Errno::result(libc::mprotect(addr, length, prot.bits())).map(drop) in mprotect()
555 Errno::result(libc::msync(addr, length, flags.bits())).map(drop) in msync()
598 Errno::result(ret).map(drop) in shm_unlink()
H A Dstat.rs183 Errno::result(res).map(drop) in mknod()
210 Errno::result(res).map(drop) in mknodat()
300 Errno::result(res).map(drop) in fchmod()
347 Errno::result(res).map(drop) in fchmodat()
370 Errno::result(res).map(drop) in utimes()
402 Errno::result(res).map(drop) in lutimes()
415 Errno::result(res).map(drop) in futimens()
465 Errno::result(res).map(drop) in utimensat()
479 Errno::result(res).map(drop) in mkdirat()
/third_party/rust/crates/syn/benches/
H A Drust.rs35 TokenStream::from_str(content).map(drop).map_err(drop) in bench()
41 syn::parse_file(content).map(drop).map_err(drop) in bench()
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscp.c435 int drop; in merge_run() local
453 /* Using this run, we can now drop smaller runs */ in merge_run()
454 drop = 0; in merge_run()
457 /* Compute how many clusters we can drop */ in merge_run()
458 while ((drop < alctx->rl_count) in merge_run()
459 && (alctx->rl[drop].length <= excess)) { in merge_run()
460 excess -= alctx->rl[drop].length; in merge_run()
461 drop++; in merge_run()
464 while (((k + drop) < alctx->rl_count) in merge_run()
465 && (alctx->rl[k + drop] in merge_run()
[all...]
/third_party/skia/third_party/externals/brotli/research/
H A Ddurchschlag.cc119 MetaSlot& drop = slots[shortcut[i]]; in buildCandidatesList() local
120 drop.mark--; in buildCandidatesList()
121 if (drop.mark == 0) { in buildCandidatesList()
122 score -= drop.score; in buildCandidatesList()
151 MetaSlot& drop = slots[shortcut[i]]; in buildCandidatesList() local
152 drop.mark--; in buildCandidatesList()
153 if (drop.mark == 0) { in buildCandidatesList()
154 score -= drop.score; in buildCandidatesList()
212 MetaSlot& drop = slots[shortcut[i]]; in rebuildCandidatesList() local
213 drop in rebuildCandidatesList()
[all...]
/third_party/rust/crates/rustix/tests/net/
H A Dconnect_bind_send.rs22 drop(sender); in net_v4_connect_any()
61 drop(sender); in net_v6_connect_any()
97 drop(sender); in net_v4_connect()
140 drop(sender); in net_v6_connect()
172 drop(sender); in net_v4_bind_any()
211 drop(sender); in net_v6_bind_any()
247 drop(sender); in net_v4_sendto()
292 drop(sender); in net_v6_sendto()
327 drop(sender); in net_v4_sendto_any()
369 drop(sende in net_v6_sendto_any()
[all...]

Completed in 14 milliseconds

12345678910