Home
last modified time | relevance | path

Searched refs:wordB (Results 1 – 11 of 11) sorted by relevance

/optee_os-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/
A Df128M_eq_signaling.c59 uint32_t wordA, wordB, uiA96, uiB96; in f128M_eq_signaling() local
70 wordB = bWPtr[indexWord( 4, 2 )]; in f128M_eq_signaling()
71 if ( wordA != wordB ) return false; in f128M_eq_signaling()
79 mashWord = wordA | wordB; in f128M_eq_signaling()
81 wordB = bWPtr[indexWord( 4, 1 )]; in f128M_eq_signaling()
82 if ( wordA != wordB ) return false; in f128M_eq_signaling()
83 mashWord |= wordA | wordB; in f128M_eq_signaling()
85 wordB = bWPtr[indexWord( 4, 0 )]; in f128M_eq_signaling()
87 (wordA == wordB) in f128M_eq_signaling()
88 && (! possibleOppositeZeros || ((mashWord | wordA | wordB) == 0)); in f128M_eq_signaling()
A Df128M_eq.c59 uint32_t wordA, wordB, uiA96, uiB96; in f128M_eq() local
66 wordB = bWPtr[indexWord( 4, 2 )]; in f128M_eq()
67 if ( wordA != wordB ) goto false_checkSigNaNs; in f128M_eq()
75 mashWord = wordA | wordB; in f128M_eq()
77 wordB = bWPtr[indexWord( 4, 1 )]; in f128M_eq()
78 if ( wordA != wordB ) goto false_checkSigNaNs; in f128M_eq()
79 mashWord |= wordA | wordB; in f128M_eq()
81 wordB = bWPtr[indexWord( 4, 0 )]; in f128M_eq()
82 if ( wordA != wordB ) goto false_checkSigNaNs; in f128M_eq()
83 if ( possibleOppositeZeros && ((mashWord | wordA | wordB) != 0) ) { in f128M_eq()
A Ds_mul128MTo256M.c48 uint32_t *lastZPtr, wordB; in softfloat_mul128MTo256M() local
56 wordB = *bPtr; in softfloat_mul128MTo256M()
57 dwordProd = (uint64_t) aPtr[indexWord( 4, 0 )] * wordB; in softfloat_mul128MTo256M()
59 dwordProd = (uint64_t) aPtr[indexWord( 4, 1 )] * wordB + (dwordProd>>32); in softfloat_mul128MTo256M()
61 dwordProd = (uint64_t) aPtr[indexWord( 4, 2 )] * wordB + (dwordProd>>32); in softfloat_mul128MTo256M()
63 dwordProd = (uint64_t) aPtr[indexWord( 4, 3 )] * wordB + (dwordProd>>32); in softfloat_mul128MTo256M()
69 wordB = *bPtr; in softfloat_mul128MTo256M()
70 dwordProd = (uint64_t) aPtr[indexWord( 4, 0 )] * wordB; in softfloat_mul128MTo256M()
75 (uint64_t) aPtr[indexWord( 4, 1 )] * wordB + (dwordProd>>32); in softfloat_mul128MTo256M()
82 (uint64_t) aPtr[indexWord( 4, 2 )] * wordB + (dwordProd>>32); in softfloat_mul128MTo256M()
[all …]
A Df128M_lt.c60 uint32_t wordA, wordB; in f128M_lt() local
76 wordB = bWPtr[indexWord( 4, 2 )]; in f128M_lt()
77 if ( wordA | wordB ) return true; in f128M_lt()
79 wordB = bWPtr[indexWord( 4, 1 )]; in f128M_lt()
80 if ( wordA | wordB ) return true; in f128M_lt()
82 wordB = bWPtr[indexWord( 4, 0 )]; in f128M_lt()
83 return ((wordA | wordB) != 0); in f128M_lt()
A Df128M_le.c60 uint32_t wordA, wordB; in f128M_le() local
76 wordB = bWPtr[indexWord( 4, 2 )]; in f128M_le()
77 if ( wordA | wordB ) return false; in f128M_le()
79 wordB = bWPtr[indexWord( 4, 1 )]; in f128M_le()
80 if ( wordA | wordB ) return false; in f128M_le()
82 wordB = bWPtr[indexWord( 4, 0 )]; in f128M_le()
83 return ((wordA | wordB) == 0); in f128M_le()
A Df128M_le_quiet.c61 uint32_t wordA, wordB; in f128M_le_quiet() local
79 wordB = bWPtr[indexWord( 4, 2 )]; in f128M_le_quiet()
80 if ( wordA | wordB ) return false; in f128M_le_quiet()
82 wordB = bWPtr[indexWord( 4, 1 )]; in f128M_le_quiet()
83 if ( wordA | wordB ) return false; in f128M_le_quiet()
85 wordB = bWPtr[indexWord( 4, 0 )]; in f128M_le_quiet()
86 return ((wordA | wordB) == 0); in f128M_le_quiet()
A Df128M_lt_quiet.c61 uint32_t wordA, wordB; in f128M_lt_quiet() local
79 wordB = bWPtr[indexWord( 4, 2 )]; in f128M_lt_quiet()
80 if ( wordA | wordB ) return true; in f128M_lt_quiet()
82 wordB = bWPtr[indexWord( 4, 1 )]; in f128M_lt_quiet()
83 if ( wordA | wordB ) return true; in f128M_lt_quiet()
85 wordB = bWPtr[indexWord( 4, 0 )]; in f128M_lt_quiet()
86 return ((wordA | wordB) != 0); in f128M_lt_quiet()
A Ds_sub256M.c50 uint64_t wordA, wordB; in softfloat_sub256M() local
56 wordB = bPtr[index]; in softfloat_sub256M()
57 zPtr[index] = wordA - wordB - borrow; in softfloat_sub256M()
59 borrow = borrow ? (wordA <= wordB) : (wordA < wordB); in softfloat_sub256M()
A Ds_subM.c54 uint32_t wordA, wordB; in softfloat_subM() local
61 wordB = bPtr[index]; in softfloat_subM()
62 zPtr[index] = wordA - wordB - borrow; in softfloat_subM()
64 borrow = borrow ? (wordA <= wordB) : (wordA < wordB); in softfloat_subM()
A Ds_compare128M.c47 uint32_t wordA, wordB; in softfloat_compare128M() local
53 wordB = bPtr[index]; in softfloat_compare128M()
54 if ( wordA != wordB ) return (wordA < wordB) ? -1 : 1; in softfloat_compare128M()
A Ds_compare96M.c47 uint32_t wordA, wordB; in softfloat_compare96M() local
53 wordB = bPtr[index]; in softfloat_compare96M()
54 if ( wordA != wordB ) return (wordA < wordB) ? -1 : 1; in softfloat_compare96M()

Completed in 8 milliseconds