Home
last modified time | relevance | path

Searched refs:a_high (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
Ds390-vregs.exp91 set a_high 1
96 set a [expr ($a_high << 32) | $a_low]
147 proc hex128 {a_high a_low b_high b_low} {
148 set result [format "%x%08x%08x%08x" $a_high $a_low $b_high $b_low]
160 [expr $a_high * ($i + 1) * $a_high ] \
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dfixed-value.cc236 fixed_saturate2 (machine_mode mode, double_int a_high, double_int a_low, in fixed_saturate2() argument
251 if (a_high.ugt (max_r) in fixed_saturate2()
252 || (a_high == max_r && in fixed_saturate2()
275 if (a_high.sgt (max_r) in fixed_saturate2()
276 || (a_high == max_r && in fixed_saturate2()
284 else if (a_high.slt (min_r) in fixed_saturate2()
285 || (a_high == min_r && in fixed_saturate2()
416 double_int a_high, a_low, b_high, b_low; in do_fixed_multiply() local
422 a_high.low = a->data.high; in do_fixed_multiply()
423 a_high.high = 0; in do_fixed_multiply()
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgcc/
Dfixed-bit.c281 INTunion a_high, a_low, b_high, b_low; in FIXED_MULHELPER() local
294 a_high.s.low = aa.s.high; in FIXED_MULHELPER()
295 a_high.s.high = 0; in FIXED_MULHELPER()
306 high_low.ll = a_high.ll * b_low.ll; in FIXED_MULHELPER()
307 high_high.ll = a_high.ll * b_high.ll; in FIXED_MULHELPER()