Home
last modified time | relevance | path

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

/optee_os-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/
A Ds_shiftRightJamM.c54 uint32_t wordJam, wordCount, *ptr; in softfloat_shiftRightJamM() local
58 wordCount = count>>5; in softfloat_shiftRightJamM()
59 if ( wordCount ) { in softfloat_shiftRightJamM()
60 if ( size_words < wordCount ) wordCount = size_words; in softfloat_shiftRightJamM()
62 i = wordCount; in softfloat_shiftRightJamM()
70 if ( wordCount < size_words ) { in softfloat_shiftRightJamM()
75 size_words - wordCount, in softfloat_shiftRightJamM()
80 if ( ! wordCount ) goto wordJam; in softfloat_shiftRightJamM()
84 for ( i = size_words - wordCount; i; --i ) { in softfloat_shiftRightJamM()
94 --wordCount; in softfloat_shiftRightJamM()
[all …]
A Ds_shiftLeftM.c54 uint32_t wordCount; in softfloat_shiftLeftM() local
59 wordCount = count>>5; in softfloat_shiftLeftM()
60 if ( wordCount < size_words ) { in softfloat_shiftLeftM()
65 size_words - wordCount, in softfloat_shiftLeftM()
70 if ( ! wordCount ) return; in softfloat_shiftLeftM()
72 aPtr += indexWordHi( size_words - wordCount ); in softfloat_shiftLeftM()
74 for ( i = size_words - wordCount; i; --i ) { in softfloat_shiftLeftM()
80 zPtr += indexMultiwordLo( size_words, wordCount ); in softfloat_shiftLeftM()
82 wordCount = size_words; in softfloat_shiftLeftM()
86 --wordCount; in softfloat_shiftLeftM()
[all …]
A Ds_shiftRightM.c54 uint32_t wordCount; in softfloat_shiftRightM() local
59 wordCount = count>>5; in softfloat_shiftRightM()
60 if ( wordCount < size_words ) { in softfloat_shiftRightM()
65 size_words - wordCount, in softfloat_shiftRightM()
70 if ( ! wordCount ) return; in softfloat_shiftRightM()
72 aPtr += indexWordLo( size_words - wordCount ); in softfloat_shiftRightM()
74 for ( i = size_words - wordCount; i; --i ) { in softfloat_shiftRightM()
80 zPtr += indexMultiwordHi( size_words, wordCount ); in softfloat_shiftRightM()
82 wordCount = size_words; in softfloat_shiftRightM()
86 --wordCount; in softfloat_shiftRightM()
[all …]
A Ds_shiftRightJam256M.c78 uint_fast32_t wordCount; in softfloat_shiftRightJam256M() local
83 wordCount = count>>6; in softfloat_shiftRightJam256M()
84 if ( wordCount ) { in softfloat_shiftRightJam256M()
85 if ( 4 < wordCount ) wordCount = 4; in softfloat_shiftRightJam256M()
87 i = wordCount; in softfloat_shiftRightJam256M()
95 if ( wordCount < 4 ) { in softfloat_shiftRightJam256M()
100 4 - wordCount, in softfloat_shiftRightJam256M()
105 if ( ! wordCount ) goto wordJam; in softfloat_shiftRightJam256M()
109 for ( i = 4 - wordCount; i; --i ) { in softfloat_shiftRightJam256M()
119 --wordCount; in softfloat_shiftRightJam256M()
[all …]

Completed in 5 milliseconds