Searched refs:word_t (Results 1 – 1 of 1) sorted by relevance
| /xnu-11417.140.69/bsd/tests/ |
| H A D | copyio_tests.c | 375 #define copyin_atomic_test(data, word_t, copyin_fn, copyin_from_kernel_fn) … argument 377 …const word_t word_out = (word_t)0x123456789ABCDEF0UL; … 378 …word_t word_in = 0; … 384 …int cmp = memcmp(&word_in, &word_out, sizeof(word_t)); … 387 …for (unsigned int offset = 1; offset < sizeof(word_t); offset++) { … 411 #define copyout_atomic_test(data, word_t, copyout_fn, copyout_to_kernel_fn) … argument 413 …const word_t word_out = (word_t)0x123456789ABCDEF0UL; … 414 …bzero(data->kern_addr, sizeof(word_t)); … 419 …int cmp = memcmp(data->kern_addr, &word_out, sizeof(word_t)); … 422 …for (unsigned int offset = 1; offset < sizeof(word_t); offset++) { …
|