Searched refs:terml (Results 1 – 2 of 2) sorted by relevance
/arch/arm/vfp/ |
D | vfpdouble.c | 334 u64 termh, terml, remh, reml; in vfp_double_fsqrt() local 336 mul64to128(&termh, &terml, vdd.significand, vdd.significand); in vfp_double_fsqrt() 337 sub128(&remh, &reml, vdm.significand, 0, termh, terml); in vfp_double_fsqrt() 340 shift64left(&termh, &terml, vdd.significand); in vfp_double_fsqrt() 341 terml |= 1; in vfp_double_fsqrt() 342 add128(&remh, &reml, remh, reml, termh, terml); in vfp_double_fsqrt() 1074 u64 termh, terml, remh, reml; in vfp_double_fdiv() local 1075 mul64to128(&termh, &terml, vdm.significand, vdd.significand); in vfp_double_fdiv() 1076 sub128(&remh, &reml, vdn.significand, 0, termh, terml); in vfp_double_fdiv()
|
D | vfp.h | 115 u64 mh, ml, remh, reml, termh, terml, z; in vfp_estimate_div128to64() local 127 mul64to128(&termh, &terml, m, z); in vfp_estimate_div128to64() 128 sub128(&remh, &reml, nh, nl, termh, terml); in vfp_estimate_div128to64()
|