Lines Matching refs:address
45 const uint32_t *address, /* FPU instruction address. */
49 if (((uintptr_t)address & 0x3) != 0)
54 * If this is a 32-bit program, chop the address accordingly.
60 caddr32_t address32 = (caddr32_t)(uintptr_t)address;
61 address = (uint32_t *)(uintptr_t)address32;
64 if (fuword32(address, pvalue) == -1) {
65 pfpsd->fp_trapaddr = (caddr_t)address;
74 const uint64_t *address, /* FPU data address. */
78 if (((uintptr_t)address & 0x7) != 0)
83 * If this is a 32-bit program, chop the address accordingly.
89 caddr32_t address32 = (caddr32_t)(uintptr_t)address;
90 address = (uint64_t *)(uintptr_t)address32;
93 if (fuword64(address, pvalue) == -1) {
94 pfpsd->fp_trapaddr = (caddr_t)address;
103 const uint32_t *address, /* FPU data address. */
107 if (((uintptr_t)address & 0x3) != 0)
112 * If this is a 32-bit program, chop the address accordingly.
118 caddr32_t address32 = (caddr32_t)(uintptr_t)address;
119 address = (uint32_t *)(uintptr_t)address32;
122 if (fuword32(address, pvalue) == -1) {
123 pfpsd->fp_trapaddr = (caddr_t)address;
132 uint64_t *address, /* FPU data address. */
136 if (((uintptr_t)address & 0x7) != 0)
141 * If this is a 32-bit program, chop the address accordingly.
147 caddr32_t address32 = (caddr32_t)(uintptr_t)address;
148 address = (uint64_t *)(uintptr_t)address32;
151 if (suword64(address, value) == -1) {
152 pfpsd->fp_trapaddr = (caddr_t)address;
161 uint32_t *address, /* FPU data address. */
165 if (((uintptr_t)address & 0x3) != 0)
170 * If this is a 32-bit program, chop the address accordingly.
176 caddr32_t address32 = (caddr32_t)(uintptr_t)address;
177 address = (uint32_t *)(uintptr_t)address32;
180 if (suword32(address, value) == -1) {
181 pfpsd->fp_trapaddr = (caddr_t)address;
216 * If this is a 32-bit program, chop the address
276 * If this is a 32-bit program, chop the address