Searched refs:loc (Results 201 - 207 of 207) sorted by path

123456789

/linux-master/tools/perf/util/
H A Dparse-events.h195 struct parse_events_terms *head_config, void *loc);
215 bool auto_merge_stats, void *loc);
224 struct list_head **listp, void *loc);
H A Dparse-events.y23 void parse_events_error(YYLTYPE *loc, void *parse_state, void *scanner, char const *msg);
848 void parse_events_error(YYLTYPE *loc, void *parse_state,
852 parse_events_evlist_error(parse_state, loc->last_column, "parser error");
H A Dstring.c316 const char *loc = strchr(haystack, needle); local
321 while (loc) {
322 loc = strchr(loc + 1, needle);
330 loc = strchr(haystack, needle);
333 while (loc) {
335 memcpy(to, from, 1 + loc - from);
336 to += loc - from;
337 from = loc + 1;
344 loc
[all...]
/linux-master/tools/testing/ktest/
H A Dktest.pl3347 foreach my $loc (@locations) {
3348 doprint "loc = $loc\n";
3349 $config_bisect_exec = $loc;
/linux-master/tools/testing/selftests/bpf/progs/
H A Dstrobemeta.h278 static void *calc_location(struct strobe_value_loc *loc, void *tls_base) argument
292 if (loc->tls_mode <= TLS_LOCAL_EXEC) {
295 void *addr = tls_base + loc->offset;
298 return (void *)((loc->tls_mode + 1) * (int64_t)addr);
304 * - loc->offset is pointing to a GOT entry containing fixed offset
308 * - loc->offset is pointing to a beginning of double GOT entries;
321 (void *)loc->offset);
/linux-master/tools/testing/selftests/net/
H A Drtnetlink.sh193 loc=10.0.0.1
196 run_cmd ip tunnel add $gredev mode gre remote $rem local $loc ttl 1
/linux-master/tools/testing/selftests/user_events/
H A Dftrace_test.c429 int loc, bytes; local
446 io[1].iov_base = &loc;
447 io[1].iov_len = sizeof(loc);
465 loc = DYN_LOC(0, bytes);
471 loc = DYN_LOC(1024, bytes);
476 loc = DYN_LOC(1, bytes);
481 loc = DYN_LOC(0, bytes + 1024);
486 loc = DYN_LOC(0, bytes + 1);
492 loc = DYN_LOC(0, bytes);

Completed in 392 milliseconds

123456789