Home
last modified time | relevance | path

Searched refs:window_start (Results 1 – 10 of 10) sorted by relevance

/external/libsrtp2/crypto/replay/
Drdb.c65 rdb->window_start = 0; in srtp_rdb_init()
75 if (p_index >= rdb->window_start + rdb_bits_in_bitmask) { in srtp_rdb_check()
80 if (p_index < rdb->window_start) { in srtp_rdb_check()
85 if (v128_get_bit(&rdb->bitmask, (p_index - rdb->window_start)) == 1) { in srtp_rdb_check()
105 if (p_index < rdb->window_start) in srtp_rdb_add_index()
108 delta = (p_index - rdb->window_start); in srtp_rdb_add_index()
119 rdb->window_start += delta; in srtp_rdb_add_index()
127 if (rdb->window_start >= 0x7fffffff) { in srtp_rdb_increment()
130 ++rdb->window_start; in srtp_rdb_increment()
136 return rdb->window_start; in srtp_rdb_get_value()
/external/adhd/cras/src/server/rust/src/
Drate_estimator.rs82 window_start: Option<Duration>, field
110 window_start: None, in try_new()
125 self.window_start = None; in reset_rate()
157 let start = match self.window_start { in update_estimated_rate()
159 self.window_start = Some(now); in update_estimated_rate()
182 self.window_start = Some(now); in update_estimated_rate()
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/sched/sched_reset_all_window_stats/
Dformat9 field:u64 window_start; offset:8; size:8; signed:0;
16 …nt fmt: "time_taken %llu window_start %llu window_size %llu reason %s old_val %u new_val %u", REC-…
/external/icing/icing/result/
Dsnippet-retriever.cc284 CharacterIterator window_start, in RetrieveMatch()
291 window_start.utf32_index() - 1 - window_start_min_exclusive_utf32; in RetrieveMatch()
306 window_start.utf32_index() - 1 - extra_window_space; in RetrieveMatch()
308 window_start, in RetrieveMatch()
313 snippet_match.set_window_byte_position(window_start.utf8_index()); in RetrieveMatch()
314 snippet_match.set_window_utf16_position(window_start.utf16_index()); in RetrieveMatch()
316 window_start.utf8_index()); in RetrieveMatch()
318 window_start.utf16_index()); in RetrieveMatch()
/external/libsrtp2/test/
Dreplay_driver.c87 printf("rdb: {%u, %s}\n", rdb->window_start, in print_rdb()
228 rdb.window_start = 0x7ffffffe; in test_rdb_db()
/external/perfetto/test/trace_processor/span_join/
Dslice_span_join_b118665515.sql20 update window_8 set window_start=81473010031230, window_dur=19684693341, quantum=10000000 where row…
/external/libsrtp2/crypto/include/
Drdb.h63 uint32_t window_start; /* packet index of the first bit in bitmask */ member
/external/webrtc/modules/audio_processing/aec3/
Dresidual_echo_estimator.cc92 size_t window_start; in GetRenderIndexesToAnalyze() local
94 window_start = in GetRenderIndexesToAnalyze()
99 *idx_start = spectrum_buffer.OffsetIndex(spectrum_buffer.read, window_start); in GetRenderIndexesToAnalyze()
/external/perfetto/test/trace_processor/parsing/
Db120487929.sql50 window_start=(select min(ts) from sched),
/external/rust/crates/regex/src/literal/
Dimp.rs716 let window_start = window_end - (self.pattern.len() - 1); in check_match() localVariable
718 if self.pattern[i] != haystack[window_start + i] { in check_match()