示例#1
0
 bool operator()( const float64_t& lhs, const float64_t& rhs )const {
    return f64_lt(lhs, rhs);
 }
示例#2
0
uint64_t helper_flt_d(CPURISCVState *env, uint64_t frs1, uint64_t frs2)
{
    frs1 = f64_lt(frs1, frs2);
    set_fp_exceptions;
    return frs1;
}
示例#3
0
文件: double.c 项目: Tilka/epsilon
int __aeabi_dcmplt(aeabi_double_t a, aeabi_double_t b) {
  return f64_lt(f64(a), f64(b));
}