Searched refs:wordCount (Results 1 – 4 of 4) sorted by relevance
| /optee_os/lib/libutils/isoc/arch/arm/softfloat/source/ |
| H A D | s_shiftRightJamM.c | 54 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() 61 ptr = (uint32_t *) (aPtr + indexMultiwordLo( size_words, wordCount )); in softfloat_shiftRightJamM() 62 i = wordCount; in softfloat_shiftRightJamM() 70 if ( wordCount < size_words ) { in softfloat_shiftRightJamM() 71 aPtr += indexMultiwordHiBut( size_words, wordCount ); in softfloat_shiftRightJamM() 75 size_words - wordCount, in softfloat_shiftRightJamM() 78 zPtr + indexMultiwordLoBut( size_words, wordCount ) in softfloat_shiftRightJamM() [all …]
|
| H A D | s_shiftRightJam256M.c | 78 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() 86 ptr = (uint64_t *) (aPtr + indexMultiwordLo( 4, wordCount )); in softfloat_shiftRightJam256M() 87 i = wordCount; in softfloat_shiftRightJam256M() 95 if ( wordCount < 4 ) { in softfloat_shiftRightJam256M() 96 aPtr += indexMultiwordHiBut( 4, wordCount ); in softfloat_shiftRightJam256M() 100 4 - wordCount, in softfloat_shiftRightJam256M() 103 zPtr + indexMultiwordLoBut( 4, wordCount ) in softfloat_shiftRightJam256M() [all …]
|
| H A D | s_shiftLeftM.c | 54 uint32_t wordCount; in softfloat_shiftLeftM() local 59 wordCount = count>>5; in softfloat_shiftLeftM() 60 if ( wordCount < size_words ) { in softfloat_shiftLeftM() 61 aPtr += indexMultiwordLoBut( size_words, wordCount ); in softfloat_shiftLeftM() 65 size_words - wordCount, in softfloat_shiftLeftM() 68 zPtr + indexMultiwordHiBut( 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() [all …]
|
| H A D | s_shiftRightM.c | 54 uint32_t wordCount; in softfloat_shiftRightM() local 59 wordCount = count>>5; in softfloat_shiftRightM() 60 if ( wordCount < size_words ) { in softfloat_shiftRightM() 61 aPtr += indexMultiwordHiBut( size_words, wordCount ); in softfloat_shiftRightM() 65 size_words - wordCount, in softfloat_shiftRightM() 68 zPtr + indexMultiwordLoBut( 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() [all …]
|