Lines Matching refs:uaddr
44 test_ufetch(void * const uaddr, struct ufetchstore_test_args * const args) in test_ufetch() argument
50 args->fetchstore_error = ufetch_8(uaddr, &args->val8); in test_ufetch()
53 args->fetchstore_error = ufetch_16(uaddr, &args->val16); in test_ufetch()
56 args->fetchstore_error = ufetch_32(uaddr, &args->val32); in test_ufetch()
60 args->fetchstore_error = ufetch_64(uaddr, &args->val64); in test_ufetch()
71 test_ustore(void * const uaddr, struct ufetchstore_test_args * const args) in test_ustore() argument
77 args->fetchstore_error = ustore_8(uaddr, args->val8); in test_ustore()
80 args->fetchstore_error = ustore_16(uaddr, args->val16); in test_ustore()
83 args->fetchstore_error = ustore_32(uaddr, args->val32); in test_ustore()
87 args->fetchstore_error = ustore_64(uaddr, args->val64); in test_ustore()
98 test_ucas(void * const uaddr, struct ufetchstore_test_args * const args) in test_ucas() argument
104 args->fetchstore_error = ucas_32(uaddr, in test_ucas()
109 args->fetchstore_error = ucas_64(uaddr, in test_ucas()
146 void *uaddr = (void *)(uintptr_t)args.uaddr64; in do_ufetchstore_test() local
150 error = test_ufetch(uaddr, &args); in do_ufetchstore_test()
154 error = test_ustore(uaddr, &args); in do_ufetchstore_test()
158 error = test_ucas(uaddr, &args); in do_ufetchstore_test()