Searched refs:BUF_SIZE (Results 1 – 2 of 2) sorted by relevance
/tools/vm/ |
D | page_owner_sort.c | 82 #define BUF_SIZE (128 * 1024) macro 110 buf = malloc(BUF_SIZE); in main() 117 ret = read_block(buf, BUF_SIZE, fin); in main()
|
/tools/perf/util/ |
D | evsel.c | 1332 #define BUF_SIZE 1024 macro 1334 #define p_hex(val) snprintf(buf, BUF_SIZE, "%#"PRIx64, (uint64_t)(val)) 1335 #define p_unsigned(val) snprintf(buf, BUF_SIZE, "%"PRIu64, (uint64_t)(val)) 1336 #define p_signed(val) snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)(val)) 1337 #define p_sample_type(val) __p_sample_type(buf, BUF_SIZE, val) 1338 #define p_branch_sample_type(val) __p_branch_sample_type(buf, BUF_SIZE, val) 1339 #define p_read_format(val) __p_read_format(buf, BUF_SIZE, val) 1354 char buf[BUF_SIZE]; in perf_event_attr__fprintf()
|