tag | line | file | source code |
op_c | 562 | arch/alpha/math-emu/ieee-math.c | add_kernel_ieee (EXTENDED *op_a, EXTENDED *op_b, EXTENDED *op_c) |
op_c | 572 | arch/alpha/math-emu/ieee-math.c | op_c->e = op_b->e; |
op_c | 579 | arch/alpha/math-emu/ieee-math.c | op_c->e = op_a->e; |
op_c | 591 | arch/alpha/math-emu/ieee-math.c | op_c->f[1] = 0; |
op_c | 592 | arch/alpha/math-emu/ieee-math.c | op_c->s = fc >> 63; |
op_c | 593 | arch/alpha/math-emu/ieee-math.c | if (op_c->s) { |
op_c | 596 | arch/alpha/math-emu/ieee-math.c | op_c->f[0] = fc; |
op_c | 597 | arch/alpha/math-emu/ieee-math.c | normalize(op_c); |
op_c | 910 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 943 | arch/alpha/math-emu/ieee-math.c | add_kernel_ieee(&op_a, &op_b, &op_c); |
op_c | 946 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s && op_b.s; |
op_c | 947 | arch/alpha/math-emu/ieee-math.c | return round_s_ieee(f, &op_c, c); |
op_c | 959 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 991 | arch/alpha/math-emu/ieee-math.c | add_kernel_ieee(&op_a, &op_b, &op_c); |
op_c | 994 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s && op_b.s; |
op_c | 996 | arch/alpha/math-emu/ieee-math.c | return round_t_ieee(f, &op_c, c); |
op_c | 1008 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 1041 | arch/alpha/math-emu/ieee-math.c | add_kernel_ieee(&op_a, &op_b, &op_c); |
op_c | 1044 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s && op_b.s; |
op_c | 1046 | arch/alpha/math-emu/ieee-math.c | return round_s_ieee(f, &op_c, c); |
op_c | 1058 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 1091 | arch/alpha/math-emu/ieee-math.c | add_kernel_ieee(&op_a, &op_b, &op_c); |
op_c | 1094 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s && op_b.s; |
op_c | 1096 | arch/alpha/math-emu/ieee-math.c | return round_t_ieee(f, &op_c, c); |
op_c | 1108 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 1145 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s ^ op_b.s; |
op_c | 1146 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e + op_b.e; |
op_c | 1147 | arch/alpha/math-emu/ieee-math.c | mul64(op_a.f[0], op_b.f[0], op_c.f); |
op_c | 1149 | arch/alpha/math-emu/ieee-math.c | normalize(&op_c); |
op_c | 1150 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 55; /* drop the 55 original bits. */ |
op_c | 1152 | arch/alpha/math-emu/ieee-math.c | return round_s_ieee(f, &op_c, c); |
op_c | 1164 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 1202 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s ^ op_b.s; |
op_c | 1203 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e + op_b.e; |
op_c | 1204 | arch/alpha/math-emu/ieee-math.c | mul64(op_a.f[0], op_b.f[0], op_c.f); |
op_c | 1206 | arch/alpha/math-emu/ieee-math.c | normalize(&op_c); |
op_c | 1207 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 55; /* drop the 55 original bits. */ |
op_c | 1209 | arch/alpha/math-emu/ieee-math.c | return round_t_ieee(f, &op_c, c); |
op_c | 1221 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 1264 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s ^ op_b.s; |
op_c | 1265 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e - op_b.e; |
op_c | 1269 | arch/alpha/math-emu/ieee-math.c | div128(op_a.f, op_b.f, op_c.f); |
op_c | 1272 | arch/alpha/math-emu/ieee-math.c | op_c.f[0] |= STICKY_S; |
op_c | 1273 | arch/alpha/math-emu/ieee-math.c | normalize(&op_c); |
op_c | 1274 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 9; /* remove excess exp from original shift */ |
op_c | 1275 | arch/alpha/math-emu/ieee-math.c | return round_s_ieee(f, &op_c, c); |
op_c | 1287 | arch/alpha/math-emu/ieee-math.c | EXTENDED op_a, op_b, op_c; |
op_c | 1331 | arch/alpha/math-emu/ieee-math.c | op_c.s = op_a.s ^ op_b.s; |
op_c | 1332 | arch/alpha/math-emu/ieee-math.c | op_c.e = op_a.e - op_b.e; |
op_c | 1336 | arch/alpha/math-emu/ieee-math.c | div128(op_a.f, op_b.f, op_c.f); |
op_c | 1339 | arch/alpha/math-emu/ieee-math.c | op_c.f[0] |= STICKY_T; |
op_c | 1340 | arch/alpha/math-emu/ieee-math.c | normalize(&op_c); |
op_c | 1341 | arch/alpha/math-emu/ieee-math.c | op_c.e -= 9; /* remove excess exp from original shift */ |
op_c | 1342 | arch/alpha/math-emu/ieee-math.c | return round_t_ieee(f, &op_c, c); |