/third_party/rust/crates/aho-corasick/src/ |
H A D | nfa.rs | 51 start_id: S, 167 self.state(self.start_id) in start() 171 let id = self.start_id; in start_mut() 186 let start_id = self.start_id; in copy_empty_matches() 187 self.copy_matches(start_id, dst); in copy_empty_matches() 196 fail: if self.anchored { dead_id() } else { self.start_id }, in add_dense_state() 209 fail: if self.anchored { dead_id() } else { self.start_id }, in add_sparse_state() 233 self.start_id in start_state() 616 start_id in new() [all...] |
H A D | dfa.rs | 51 self.repr().start_id in start_state() 168 self.repr().start_id in start_state() 227 self.repr().start_id in start_state() 288 self.repr().start_id in start_state() 355 self.repr().start_id in start_state() 403 start_id: S, 523 let mut first_non_match = self.start_id.to_usize(); in shuffle_match_states() 559 if swaps[self.start_id.to_usize()] != fail_id() { in shuffle_match_states() 560 self.start_id = swaps[self.start_id in shuffle_match_states() [all...] |
/third_party/ltp/testcases/network/virt/ |
H A D | virt_lib.sh | 38 i) start_id=$2 ;; 171 local max=$(($start_id + $NS_TIMES - 1)) 176 for i in $(seq $start_id $max); do 182 for i in $(seq $start_id $max); do 341 start_id="${start_id:-1}" 351 start_id="${start_id:-1}" 356 start_id=$(($start_id [all...] |
H A D | vxlan02.sh | 16 start_id=16700000 23 virt_add_delete_test "id $start_id group $mult_addr"
|
H A D | geneve01.sh | 16 start_id=16700000
|
H A D | geneve02.sh | 16 start_id=16700000
|
H A D | vxlan03.sh | 20 start_id=16700000
|
H A D | vxlan04.sh | 16 start_id=16700000
|
/third_party/node/deps/uv/src/ |
H A D | timer.c | 51 /* Compare start_id when both have the same timeout. start_id is in timer_less_than() 54 return a->start_id < b->start_id; in timer_less_than() 86 /* start_id is the second index to be compared in timer_less_than() */ in uv_timer_start() 87 handle->start_id = handle->loop->timer_counter++; in uv_timer_start()
|
/third_party/libuv/src/ |
H A D | timer.c | 54 /* Compare start_id when both have the same timeout. start_id is in timer_less_than() 57 return a->start_id < b->start_id; in timer_less_than() 89 /* start_id is the second index to be compared in timer_less_than() */ in uv_timer_start() 90 handle->start_id = handle->loop->timer_counter++; in uv_timer_start()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | ttcmap.c | 1829 FT_UInt32 n, start, end, start_id, count, last = 0; in FT_CALLBACK_DEF() local 1839 start_id = TT_NEXT_ULONG( p ); in FT_CALLBACK_DEF() 1852 /* start_id + end - start >= TT_VALID_GLYPH_COUNT( valid ) ? */ in FT_CALLBACK_DEF() 1854 start_id >= TT_VALID_GLYPH_COUNT( valid ) - d ) in FT_CALLBACK_DEF() 1910 FT_UInt32 start, end, start_id; in FT_CALLBACK_DEF() local 1917 start_id = TT_NEXT_ULONG( p ); in FT_CALLBACK_DEF() 1924 if ( start_id > 0xFFFFFFFFUL - ( char_code - start ) ) in FT_CALLBACK_DEF() 1927 result = (FT_UInt)( start_id + ( char_code - start ) ); in FT_CALLBACK_DEF() 1946 FT_UInt32 start, end, start_id; in FT_CALLBACK_DEF() local 1960 start_id in FT_CALLBACK_DEF() 2296 FT_ULong n, start, end, start_id, last = 0; FT_CALLBACK_DEF() local 2338 FT_ULong start, end, start_id, char_code; tt_cmap12_next() local 2404 FT_UInt32 start, end, start_id; tt_cmap12_char_map_binary() local [all...] |
/third_party/libbpf/src/ |
H A D | bpf.h | 464 LIBBPF_API int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id); 465 LIBBPF_API int bpf_map_get_next_id(__u32 start_id, __u32 *next_id); 466 LIBBPF_API int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id); 467 LIBBPF_API int bpf_link_get_next_id(__u32 start_id, __u32 *next_id);
|
H A D | btf.c | 106 int start_id; member 432 pr_warn("BTF type [%d] is malformed\n", btf->start_id + btf->nr_types); in btf_parse_type_sec() 616 return btf->start_id + btf->nr_types; in btf__type_cnt() 629 if (type_id < btf->start_id) in btf_type_by_id() 631 return btf->types_data + btf->type_offs[type_id - btf->start_id]; in btf_type_by_id() 636 if (type_id >= btf->start_id + btf->nr_types) in btf__type_by_id() 915 static __s32 btf_find_by_name_kind(const struct btf *btf, int start_id, in btf_find_by_name_kind() argument 923 for (i = start_id; i < nr_types; i++) { in btf_find_by_name_kind() 940 return btf_find_by_name_kind(btf, btf->start_id, type_name, kind); in btf__find_by_name_kind_own() 988 btf->start_id in btf_new_empty() [all...] |
H A D | bpf.c | 1004 static int bpf_obj_get_next_id(__u32 start_id, __u32 *next_id, int cmd) in bpf_obj_get_next_id() argument 1011 attr.start_id = start_id; in bpf_obj_get_next_id() 1020 int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id) in bpf_prog_get_next_id() argument 1022 return bpf_obj_get_next_id(start_id, next_id, BPF_PROG_GET_NEXT_ID); in bpf_prog_get_next_id() 1025 int bpf_map_get_next_id(__u32 start_id, __u32 *next_id) in bpf_map_get_next_id() argument 1027 return bpf_obj_get_next_id(start_id, next_id, BPF_MAP_GET_NEXT_ID); in bpf_map_get_next_id() 1030 int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id) in bpf_btf_get_next_id() argument 1032 return bpf_obj_get_next_id(start_id, next_id, BPF_BTF_GET_NEXT_ID); in bpf_btf_get_next_id() 1035 int bpf_link_get_next_id(__u32 start_id, __u3 argument [all...] |
H A D | linker.c | 2237 int i, j, n, start_id, id; in linker_append_btf() local 2243 start_id = btf__type_cnt(linker->btf); in linker_append_btf() 2306 for (i = start_id; i < n; i++) { in linker_append_btf()
|
/third_party/libuv/include/uv/ |
H A D | unix.h | 335 uint64_t start_id;
|
H A D | win.h | 558 uint64_t start_id; \
|
/third_party/node/deps/uv/include/uv/ |
H A D | unix.h | 335 uint64_t start_id;
|
H A D | win.h | 554 uint64_t start_id; \
|
/third_party/ltp/include/lapi/ |
H A D | bpf.h | 274 uint32_t start_id; member
|
/third_party/ffmpeg/libavcodec/ |
H A D | mediacodec_wrapper.c | 191 jmethodID start_id; member 240 { "android/media/MediaCodec", "start", "()V", FF_JNI_METHOD, offsetof(struct JNIAMediaCodecFields, start_id), 1 }, 1385 (*env)->CallVoidMethod(env, codec->object, codec->jfields.start_id); in ff_AMediaCodec_start()
|
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-ir.h | 734 DCHECK_LT(start_id(), id); in mark_use() 747 LiveRange live_range() const { return {start_id(), end_id_}; } in live_range() 795 NodeIdT start_id() const { return id(); } in start_id() function in v8::internal::maglev::ValueNode
|
/third_party/libbpf/include/uapi/linux/ |
H A D | bpf.h | 375 * Looks for the eBPF program with an id greater than *start_id* 377 * remain with ids higher than *start_id*, returns -1 and sets 388 * Looks for the eBPF map with an id greater than *start_id* 390 * remain with ids higher than *start_id*, returns -1 and sets 602 * Looks for the BTF object with an id greater than *start_id* 604 * remain with ids higher than *start_id*, returns -1 and sets 783 * Looks for the eBPF link with an id greater than *start_id* 785 * remain with ids higher than *start_id*, returns -1 and sets 1530 __u32 start_id; member
|