Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vrsqrtf.S214 ! ax1 = *(int*)(px + stridex);
261 ! if ( ax1 >= 0x7f800000 )
265 ! if ( ax1 < 0x00800000 )
280 ! ax1 = *(int*)&res;
281 ! iexp0 = ax1 >> 24;
285 ! si0 = (ax1 >> 13) & 0x7f0;
289 ! iax1 = ax1 & 0x7ffe0000;
290 ! iax1 = ax1 - iax1;
305 ! iexp1 = ax1 >> 24;
317 ! si1 = ax1 >> 13;
[all …]
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vrsqrtf.c416 int iax1, ax1, si1, iexp1; in __vrsqrtf_n() local
424 ax1 = *(int*)px; in __vrsqrtf_n()
431 iexp1 = ax1 >> 24; in __vrsqrtf_n()
442 si1 = (ax1 >> 13) & 0x7f0; in __vrsqrtf_n()
452 iax1 = ax1 & 0x7ffe0000; in __vrsqrtf_n()
455 iax1 = ax1 - iax1; in __vrsqrtf_n()
H A D__vpowf.c580 unsigned ax1; in __vpowf_n() local
591 ax1 = ((int*)px)[0]; in __vpowf_n()
596 exp1 = ((ax1 & 0x7fffffff) >> 23) - 127; in __vpowf_n()
599 ax1 &= 0x007fffff; in __vpowf_n()
602 i1 = (ax1 + 0x8000) & 0xffff0000; in __vpowf_n()
608 i1 = ax1 - i1; in __vpowf_n()
H A D__vpow.c687 double ax1 = 0.0L, x1 = 0.0L, s_h1, ux1; in __vpow() local
757 u1 = x1 - ax1; in __vpow()
782 s_l1 = (x1 - (ux1 - ax1)); in __vpow()
1016 u0 = x1 - ax1; in __vpow()
1023 s_l0 = (x1 - (ux1 - ax1)); in __vpow()