Home
last modified time | relevance | path

Searched refs:start_id (Results 1 – 25 of 45) sorted by relevance

12

/external/perfetto/src/trace_processor/dynamic/
Dconnected_flow_generator.cc88 BFS& Start(SliceId start_id) { in Start() argument
89 slices_to_visit_.push({start_id, VisitType::START}); in Start()
90 known_slices_.insert(start_id); in Start()
211 SliceId start_id{static_cast<uint32_t>(it->value.AsLong())}; in ComputeTable() local
213 if (!slice.id().IndexOf(start_id)) { in ComputeTable()
222 bfs.Start(start_id).VisitAll(VISIT_INCOMING_AND_OUTGOING, in ComputeTable()
226 bfs.Start(start_id).VisitAll(VISIT_OUTGOING, VISIT_DESCENDANTS); in ComputeTable()
229 bfs.Start(start_id).VisitAll(VISIT_INCOMING, VISIT_ANCESTORS); in ComputeTable()
240 start_ids->Append(start_id.value); in ComputeTable()
Ddescendant_slice_generator.cc60 uint32_t start_id = static_cast<uint32_t>(it->value.AsLong()); in ComputeTable() local
61 auto descendants = GetDescendantSlices(slice, SliceId(start_id)); in ComputeTable()
70 start_ids->Append(start_id); in ComputeTable()
98 SliceId start_id) { in GetDescendantSlices() argument
99 auto start_row = slice.id().IndexOf(start_id); in GetDescendantSlices()
Dancestor_generator.cc111 auto start_id = static_cast<uint32_t>(it->value.AsLong()); in ComputeTable() local
115 SliceId(start_id)); in ComputeTable()
119 CallsiteId(start_id)); in ComputeTable()
Dexperimental_annotated_stack_generator.cc136 auto start_id = static_cast<uint32_t>(constraint_it->value.AsLong()); in ComputeTable() local
138 cs_table.id().IndexOf(CallsiteId(start_id)); in ComputeTable()
264 start_id_vals->Append(start_id); in ComputeTable()
Ddescendant_slice_generator.h50 SliceId start_id);
/external/ltp/testcases/network/virt/
Dvirt_lib.sh31 i) start_id=$2 ;;
167 local max=$(($start_id + $NS_TIMES - 1))
172 for i in $(seq $start_id $max); do
178 for i in $(seq $start_id $max); do
355 start_id="${start_id:-1}"
365 start_id="${start_id:-1}"
370 start_id=$(($start_id + $NS_TIMES))
Dvxlan02.sh15 start_id=16700000
25 virt_add_delete_test "id $start_id group $mult_addr"
Dvxlan01.sh14 start_id=16700000
Dgeneve02.sh10 start_id=16700000
Dgeneve01.sh13 start_id=16700000
Dvxlan04.sh16 start_id=16700000
Dvxlan03.sh20 start_id=16700000
/external/rust/crates/aho-corasick/src/
Dnfa.rs51 start_id: S, field
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() localVariable
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()
627 start_id: usize_to_state_id(2)?, in new()
682 let mut prev = self.nfa.start_id; in build_trie()
[all …]
Ddfa.rs51 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, field
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.to_usize()]; in shuffle_match_states()
586 self.start_id = S::from_usize(self.start_id.to_usize() * alpha_len); in premultiply()
[all …]
/external/perfetto/test/trace_processor/dynamic/
Dannotated_callstack.sql21 on (eac.start_id == ps.callsite_id)
24 order by eac.start_id asc, eac.depth asc;
/external/tensorflow/tensorflow/core/kernels/
Dsdca_internal.cc406 int start_id = -1; in CreateSparseFeatureRepresentation() local
409 start_id = end_id; in CreateSparseFeatureRepresentation()
416 if (start_id < example_indices.size() && in CreateSparseFeatureRepresentation()
417 example_indices(start_id) == example_id) { in CreateSparseFeatureRepresentation()
419 &(feature_indices(start_id)), end_id - start_id)); in CreateSparseFeatureRepresentation()
424 &(feature_weights(start_id)), end_id - start_id)); in CreateSparseFeatureRepresentation()
427 if (end_id - start_id > 0) { in CreateSparseFeatureRepresentation()
/external/freetype/src/sfnt/
Dttcmap.c1819 FT_UInt32 n, start, end, start_id, count, last = 0; in FT_CALLBACK_DEF() local
1829 start_id = TT_NEXT_ULONG( p ); in FT_CALLBACK_DEF()
1844 start_id >= TT_VALID_GLYPH_COUNT( valid ) - d ) in FT_CALLBACK_DEF()
1900 FT_UInt32 start, end, start_id; in tt_cmap8_char_index() local
1907 start_id = TT_NEXT_ULONG( p ); in tt_cmap8_char_index()
1914 if ( start_id > 0xFFFFFFFFUL - ( char_code - start ) ) in tt_cmap8_char_index()
1917 result = (FT_UInt)( start_id + ( char_code - start ) ); in tt_cmap8_char_index()
1936 FT_UInt32 start, end, start_id; in tt_cmap8_char_next() local
1950 start_id = TT_NEXT_ULONG( p ); in tt_cmap8_char_next()
1959 if ( start_id > 0xFFFFFFFFUL - ( char_code - start ) ) in tt_cmap8_char_next()
[all …]
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.h284 lldb::user_id_t start_id,
289 lldb::user_id_t start_id,
299 lldb::user_id_t start_id,
/external/webrtc/modules/rtp_rtcp/source/
Drtp_rtcp_impl2.cc546 uint16_t start_id = 0; in SendNACK() local
559 start_id = i + 1; in SendNACK()
563 nack_length = size - start_id; in SendNACK()
571 nack_last_seq_number_sent_ = nack_list[start_id + nack_length - 1]; in SendNACK()
574 &nack_list[start_id]); in SendNACK()
Drtp_rtcp_impl.cc642 uint16_t start_id = 0; in SendNACK() local
655 start_id = i + 1; in SendNACK()
659 nack_length = size - start_id; in SendNACK()
667 nack_last_seq_number_sent_ = nack_list[start_id + nack_length - 1]; in SendNACK()
670 &nack_list[start_id]); in SendNACK()
/external/perfetto/test/trace_processor/profiling/
Dperf_sample.sql23 on (eac.start_id == ps.callsite_id)
/external/strace/tests-m32/
Dbpf.c780 .start_id = 0xdeadbeef
782 .size = offsetofend(struct BPF_PROG_GET_NEXT_ID_struct, start_id),
787 .start_id = 0xdeadbeef
800 .start_id = 0xbadc0ded,
808 .start_id = 0xbadc0ded,
/external/strace/tests/
Dbpf.c780 .start_id = 0xdeadbeef
782 .size = offsetofend(struct BPF_PROG_GET_NEXT_ID_struct, start_id),
787 .start_id = 0xdeadbeef
800 .start_id = 0xbadc0ded,
808 .start_id = 0xbadc0ded,
/external/strace/tests-mx32/
Dbpf.c780 .start_id = 0xdeadbeef
782 .size = offsetofend(struct BPF_PROG_GET_NEXT_ID_struct, start_id),
787 .start_id = 0xdeadbeef
800 .start_id = 0xbadc0ded,
808 .start_id = 0xbadc0ded,
/external/strace/
Dbpf_attr_check.c398 static_assert(SoM(struct BPF_PROG_GET_NEXT_ID_struct, start_id) == SoM(union bpf_attr, start_id),
400 …_assert(offsetof(struct BPF_PROG_GET_NEXT_ID_struct, start_id) == offsetof(union bpf_attr, start_i…

12