/tools/perf/util/ |
D | block-range.c | 202 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 …]
|
D | auxtrace.h | 395 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()
|
D | evlist.h | 279 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()
|
D | symbol.c | 82 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/ |
D | acpidbg.c | 45 (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/ |
D | trace.c | 32 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()
|
D | trace.h | 28 void *tail; member
|
/tools/testing/selftests/intel_pstate/ |
D | run.sh | 53 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/ |
D | kvm-recheck-rcu.sh | 36 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…
|
D | kvm-test-1-run.sh | 233 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/^\[ *//' …
|
D | cpus2use.sh | 26 idlecpus=`mpstat | tail -1 | \
|
D | kvm-recheck-lock.sh | 35 ncs=`grep "Writes: Total:" $i/console.log 2> /dev/null | tail -1 | sed -e 's/^.* Total: //' -e 's/…
|
D | parse-torture.sh | 52 …nerrs=`grep --binary-files=text '!!!' $file | tail -1 | awk '{for (i=NF-8;i<=NF;i++) sum+=$i; } EN…
|
/tools/virtio/ringtest/ |
D | run-on-all.sh | 7 HOST_AFFINITY=$(echo "${CPUS_ONLINE}"|tail -n 1)
|
/tools/scripts/ |
D | Makefile.arch | 44 LP64 := $(shell echo __LP64__ | ${CC} ${CFLAGS} -E -x c - | tail -n 1)
|
/tools/perf/jvmti/ |
D | Makefile | 42 JDIR=$(shell alternatives --display java | tail -1 | cut -d' ' -f 5 | sed 's%/jre/bin/java.%%g')
|
/tools/perf/ |
D | builtin-record.c | 617 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/ |
D | perf-record.txt | 438 --tail-synthesize:: 458 Implies --tail-synthesize.
|