Lines Matching refs:p
54 ElfW(auxv_t) *p; in test_cache_shape()
61 p = find_auxv_entry(AT_L1I_CACHESIZE, buffer); in test_cache_shape()
62 if (p) { in test_cache_shape()
64 print_size("L1I ", (uint32_t)p->a_un.a_val); in test_cache_shape()
67 p = find_auxv_entry(AT_L1I_CACHEGEOMETRY, buffer); in test_cache_shape()
68 if (p) { in test_cache_shape()
70 print_geo("L1I ", (uint32_t)p->a_un.a_val); in test_cache_shape()
73 p = find_auxv_entry(AT_L1D_CACHESIZE, buffer); in test_cache_shape()
74 if (p) { in test_cache_shape()
76 print_size("L1D ", (uint32_t)p->a_un.a_val); in test_cache_shape()
79 p = find_auxv_entry(AT_L1D_CACHEGEOMETRY, buffer); in test_cache_shape()
80 if (p) { in test_cache_shape()
82 print_geo("L1D ", (uint32_t)p->a_un.a_val); in test_cache_shape()
85 p = find_auxv_entry(AT_L2_CACHESIZE, buffer); in test_cache_shape()
86 if (p) { in test_cache_shape()
88 print_size("L2 ", (uint32_t)p->a_un.a_val); in test_cache_shape()
91 p = find_auxv_entry(AT_L2_CACHEGEOMETRY, buffer); in test_cache_shape()
92 if (p) { in test_cache_shape()
94 print_geo("L2 ", (uint32_t)p->a_un.a_val); in test_cache_shape()
97 p = find_auxv_entry(AT_L3_CACHESIZE, buffer); in test_cache_shape()
98 if (p) { in test_cache_shape()
100 print_size("L3 ", (uint32_t)p->a_un.a_val); in test_cache_shape()
103 p = find_auxv_entry(AT_L3_CACHEGEOMETRY, buffer); in test_cache_shape()
104 if (p) { in test_cache_shape()
106 print_geo("L3 ", (uint32_t)p->a_un.a_val); in test_cache_shape()