Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 18 of 18) sorted by relevance

/tools/perf/util/
Dblock-range.c202 struct block_range *tail = malloc(sizeof(struct block_range)); in block_range__create() local
203 if (!tail) in block_range__create()
206 *tail = (struct block_range){ in block_range__create()
222 rb_link_right_of_node(&tail->node, &entry->node); in block_range__create()
223 rb_insert_color(&tail->node, &block_ranges.root); in block_range__create()
247 struct block_range *tail; in block_range__create() local
249 tail = malloc(sizeof(struct block_range)); in block_range__create()
250 if (!tail) in block_range__create()
253 *tail = (struct block_range){ in block_range__create()
260 rb_link_right_of_node(&tail->node, &entry->node); in block_range__create()
[all …]
Dauxtrace.h395 static inline void auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail) in auxtrace_mmap__write_tail() argument
405 pc->aux_tail = tail; in auxtrace_mmap__write_tail()
409 } while (!__sync_bool_compare_and_swap(&pc->aux_tail, old_tail, tail)); in auxtrace_mmap__write_tail()
Devlist.h279 static inline void perf_mmap__write_tail(struct perf_mmap *md, u64 tail) in perf_mmap__write_tail() argument
287 pc->data_tail = tail; in perf_mmap__write_tail()
Dsymbol.c82 const char *tail = str; in prefix_underscores_count() local
84 while (*tail == '_') in prefix_underscores_count()
85 tail++; in prefix_underscores_count()
87 return tail - str; in prefix_underscores_count()
/tools/power/acpi/tools/acpidbg/
Dacpidbg.c45 (CIRC_CNT((circ)->head, (circ)->tail, ACPI_AML_BUF_SIZE))
47 (CIRC_CNT_TO_END((circ)->head, (circ)->tail, ACPI_AML_BUF_SIZE))
49 (CIRC_SPACE((circ)->head, (circ)->tail, ACPI_AML_BUF_SIZE))
51 (CIRC_SPACE_TO_END((circ)->head, (circ)->tail, ACPI_AML_BUF_SIZE))
81 .tail = 0,
86 .tail = 0,
231 p = &crc->buf[crc->tail]; in acpi_aml_write()
237 crc->tail = (crc->tail + len) & (ACPI_AML_BUF_SIZE - 1); in acpi_aml_write()
246 p = &crc->buf[crc->tail]; in acpi_aml_write_batch_log()
254 crc->tail = (crc->tail + len) & (ACPI_AML_BUF_SIZE - 1); in acpi_aml_write_batch_log()
/tools/testing/selftests/powerpc/pmu/ebb/
Dtrace.c32 tb->tail = tb->data; in trace_buffer_allocate()
66 p = tb->tail; in trace_alloc()
67 newtail = tb->tail + bytes; in trace_alloc()
71 tb->tail = newtail; in trace_alloc()
277 printf(" tail %p\n", tb->tail); in trace_buffer_print()
287 while (trace_check_bounds(tb, p) && p < tb->tail) { in trace_buffer_print()
Dtrace.h28 void *tail; member
/tools/testing/selftests/intel_pstate/
Drun.sh53 cat /proc/cpuinfo | grep MHz | sort -u | tail -1 > /tmp/result.$1
79 _min_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $1 } ')
81 _max_freq=$(cpupower frequency-info -l | tail -1 | awk ' { print $2 } ')
/tools/testing/selftests/rcutorture/bin/
Dkvm-recheck-rcu.sh36 ngps=`grep ver: $i/console.log 2> /dev/null | tail -1 | sed -e 's/^.* ver: //' -e 's/ .*$//'`
52 …nclosecalls=`grep --binary-files=text 'torture: Reader Batch' $i/console.log | tail -1 | awk '{for…
Dkvm-test-1-run.sh233 oldline="`tail $resdir/console.log`"
244 newline="`tail $resdir/console.log`"
249 …last_ts="`tail $resdir/console.log | grep '^\[ *[0-9]\+\.[0-9]\+]' | tail -1 | sed -e 's/^\[ *//' …
Dcpus2use.sh26 idlecpus=`mpstat | tail -1 | \
Dkvm-recheck-lock.sh35 ncs=`grep "Writes: Total:" $i/console.log 2> /dev/null | tail -1 | sed -e 's/^.* Total: //' -e 's/…
Dparse-torture.sh52 …nerrs=`grep --binary-files=text '!!!' $file | tail -1 | awk '{for (i=NF-8;i<=NF;i++) sum+=$i; } EN…
/tools/virtio/ringtest/
Drun-on-all.sh7 HOST_AFFINITY=$(echo "${CPUS_ONLINE}"|tail -n 1)
/tools/scripts/
DMakefile.arch44 LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
/tools/perf/jvmti/
DMakefile42 JDIR=$(shell alternatives --display java | tail -1 | cut -d' ' -f 5 | sed 's%/jre/bin/java.%%g')
/tools/perf/
Dbuiltin-record.c617 static int record__synthesize_workload(struct record *rec, bool tail) in record__synthesize_workload() argument
624 if (rec->opts.tail_synthesize != tail) in record__synthesize_workload()
637 static int record__synthesize(struct record *rec, bool tail);
740 static int record__synthesize(struct record *rec, bool tail) in record__synthesize() argument
750 if (rec->opts.tail_synthesize != tail) in record__synthesize()
/tools/perf/Documentation/
Dperf-record.txt438 --tail-synthesize::
458 Implies --tail-synthesize.