Lines Matching refs:BUFSZ
55 #define BUFSZ 34 macro
103 uint8_t *x = kalloc_data(BUFSZ, Z_WAITOK); in test_heap_underflow()
107 t->datasz = BUFSZ; in test_heap_underflow()
116 uint8_t *x = kalloc_data(BUFSZ, Z_WAITOK); in test_heap_overflow()
120 t->datasz = BUFSZ; in test_heap_overflow()
122 x[BUFSZ] = 0x11; in test_heap_overflow()
143 kfree_data(ptr, BUFSZ); in test_heap_inval_free()
152 uint8_t *x = kalloc_data(BUFSZ, Z_WAITOK); in test_heap_double_free()
156 kfree_data(x, BUFSZ); in test_heap_double_free()
159 kfree_data(x, BUFSZ); in test_heap_double_free()
169 uint8_t *x = kalloc_data(BUFSZ, Z_WAITOK); in test_heap_small_free()
173 t->datasz = BUFSZ; in test_heap_small_free()
177 kfree_data(x, BUFSZ - 2); in test_heap_small_free()