Home
last modified time | relevance | path

Searched refs:seqs (Results 1 - 11 of 11) sorted by relevance

/third_party/libwebsockets/lib/drivers/led/
H A Dled-seq.c87 if (chs->seqs[LLSI_CURR].seq) in lws_seq_sample()
88 chs->seqs[LLSI_CURR].last = chs->seqs[LLSI_CURR].seq-> in lws_seq_sample()
89 func(chs->seqs[LLSI_CURR].ph); in lws_seq_sample()
91 if (chs->seqs[LLSI_TRANS].seq) { in lws_seq_sample()
97 chs->seqs[LLSI_TRANS].last = chs->seqs[LLSI_TRANS].seq-> in lws_seq_sample()
98 func(chs->seqs[LLSI_TRANS].ph); in lws_seq_sample()
100 if (chs->seqs[LLSI_NEXT].seq) in lws_seq_sample()
101 chs->seqs[LLSI_NEX in lws_seq_sample()
[all...]
/third_party/rust/crates/regex/regex-syntax/src/
H A Dutf8.rs269 /// fn matches(seqs: &[Utf8Sequence], bytes: &[u8]) -> bool {
270 /// for range in seqs {
279 /// let seqs: Vec<_> = Utf8Sequences::new('\u{0}', '\u{FFFF}').collect();
282 /// assert!(matches(&seqs, &[0x61]));
284 /// assert!(matches(&seqs, &[0xE2, 0x98, 0x83]));
286 /// assert!(!matches(&seqs, &[0xF0, 0x90, 0x8D, 0x88]));
290 /// assert!(!matches(&seqs, &[0xED, 0xA0, 0x80]));
292 /// assert!(!matches(&seqs, &[0xFF, 0xFF]));
500 let seqs: Vec<_> = Utf8Sequences::new(c, c).collect(); in single_codepoint_one_sequence()
501 assert_eq!(seqs in single_codepoint_one_sequence()
[all...]
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-wrover-kit/main/
H A Dlws-minimal-esp32.c137 static const lws_led_sequence_def_t *seqs[] = { variable
151 lws_led_transition(lls, "blue", seqs[flip & 3], in smd_cb()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/main/
H A Dlws-minimal-esp32.c104 static const lws_led_sequence_def_t *seqs[] = { variable
118 lws_led_transition(lls, "alert", seqs[flip & 3], in smd_cb()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-heltec-wb32/main/
H A Dlws-minimal-esp32.c107 static const lws_led_sequence_def_t *seqs[] = { variable
121 lws_led_transition(lls, "alert", seqs[flip & 3], in smd_cb()
/third_party/python/Parser/
H A Daction_helpers.c85 _get_flattened_seq_size(asdl_seq *seqs) in _get_flattened_seq_size() argument
88 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) { in _get_flattened_seq_size()
89 asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i); in _get_flattened_seq_size()
97 _PyPegen_seq_flatten(Parser *p, asdl_seq *seqs) in _PyPegen_seq_flatten() argument
99 Py_ssize_t flattened_seq_size = _get_flattened_seq_size(seqs); in _PyPegen_seq_flatten()
108 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) { in _PyPegen_seq_flatten()
109 asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i); in _PyPegen_seq_flatten()
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-led.h75 lws_led_state_ch_t seqs[3]; member
/third_party/python/Lib/test/
H A Dtest_heapq.py190 seqs = []
192 seqs.append(sorted(seq, key=key, reverse=reverse))
194 list(self.module.merge(*seqs, key=key, reverse=reverse)))
H A Dtest_random.py82 seqs = [list(range(n)) for n in range(10)]
86 for (seq, shuffled_seq) in zip(seqs, shuffled_seqs):
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_conn.h399 /* seqs contains sequence number of Connection ID whose
401 uint64_t seqs[NGTCP2_MAX_DCID_POOL_SIZE * 2]; member
H A Dngtcp2_conn.c13341 sizeof(conn->dcid.retire_unacked.seqs) / in ngtcp2_conn_track_retired_dcid_seq()
13342 sizeof(conn->dcid.retire_unacked.seqs[0])) { in ngtcp2_conn_track_retired_dcid_seq()
13348 if (conn->dcid.retire_unacked.seqs[i] == seq) { in ngtcp2_conn_track_retired_dcid_seq()
13353 conn->dcid.retire_unacked.seqs[conn->dcid.retire_unacked.len++] = seq; in ngtcp2_conn_track_retired_dcid_seq()
13362 if (conn->dcid.retire_unacked.seqs[i] != seq) { in ngtcp2_conn_untrack_retired_dcid_seq()
13367 conn->dcid.retire_unacked.seqs[i] = in ngtcp2_conn_untrack_retired_dcid_seq()
13368 conn->dcid.retire_unacked.seqs[conn->dcid.retire_unacked.len - 1]; in ngtcp2_conn_untrack_retired_dcid_seq()

Completed in 25 milliseconds