Searched refs:word_t (Results 1 – 1 of 1) sorted by relevance
| /xnu-8019.80.24/bsd/tests/ |
| H A D | copyio_tests.c | 374 #define copyin_atomic_test(data, word_t, copyin_fn, copyin_from_kernel_fn) … argument 376 …const word_t word_out = (word_t)0x123456789ABCDEF0UL; … 377 …word_t word_in = 0; … 383 …int cmp = memcmp(&word_in, &word_out, sizeof(word_t)); … 386 …for (unsigned int offset = 1; offset < sizeof(word_t); offset++) { … 410 #define copyout_atomic_test(data, word_t, copyout_fn, copyout_to_kernel_fn) … argument 412 …const word_t word_out = (word_t)0x123456789ABCDEF0UL; … 413 …bzero(data->kern_addr, sizeof(word_t)); … 418 …int cmp = memcmp(data->kern_addr, &word_out, sizeof(word_t)); … 421 …for (unsigned int offset = 1; offset < sizeof(word_t); offset++) { …
|