Home
last modified time | relevance | path

Searched refs:hx (Results 1 – 4 of 4) sorted by relevance

/arch/sh/kernel/cpu/sh2a/
Dfpu.c97 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument
103 ix = hx & 0x7fffffff; in denormal_mulf()
106 return ((hx ^ hy) & 0x80000000); in denormal_mulf()
125 ix |= (hx ^ hy) & 0x80000000; in denormal_mulf()
164 static long long denormal_muld(long long hx, long long hy) in denormal_muld() argument
170 ix = hx & 0x7fffffffffffffffLL; in denormal_muld()
173 return ((hx ^ hy) & 0x8000000000000000LL); in denormal_muld()
198 ix |= (hx ^ hy) & 0x8000000000000000LL; in denormal_muld()
255 static int denormal_addf(int hx, int hy) in denormal_addf() argument
260 if ((hx ^ hy) & 0x80000000) { in denormal_addf()
[all …]
/arch/sh/kernel/cpu/sh4/
Dfpu.c248 unsigned int hx, hy; in ieee_fpe_handler() local
252 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler()
258 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler()
263 llx = ((long long)hx << 32) in ieee_fpe_handler()
271 && (!prec && ((hx & 0x7fffffff) < 0x00800000 in ieee_fpe_handler()
274 hx = float32_mul(hx, hy); in ieee_fpe_handler()
275 tsk->thread.xstate->hardfpu.fp_regs[n] = hx; in ieee_fpe_handler()
286 unsigned int hx, hy; in ieee_fpe_handler() local
290 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler()
296 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler()
[all …]
/arch/mn10300/kernel/
Dgdb-stub.c1267 char hx; in gdbstub() local
1274 hx = hex_asc_hi(excep >> 8); in gdbstub()
1275 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1276 hx = hex_asc_lo(excep >> 8); in gdbstub()
1277 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1278 hx = hex_asc_hi(excep); in gdbstub()
1279 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1280 hx = hex_asc_lo(excep); in gdbstub()
1281 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1292 hx = hex_asc_hi(bcberr >> 24); in gdbstub()
[all …]
/arch/frv/kernel/
Dgdb-stub.c1493 char hx; in gdbstub() local
1499 hx = hex_asc_hi(brr >> 24); in gdbstub()
1500 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1501 hx = hex_asc_lo(brr >> 24); in gdbstub()
1502 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1503 hx = hex_asc_hi(brr >> 16); in gdbstub()
1504 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1505 hx = hex_asc_lo(brr >> 16); in gdbstub()
1506 ptr = hex_byte_pack(ptr, hx); in gdbstub()
1507 hx = hex_asc_hi(brr >> 8); in gdbstub()
[all …]