Home
last modified time | relevance | path

Searched refs:partWordZ (Results 1 – 5 of 5) sorted by relevance

/optee_os/lib/libutils/isoc/arch/arm/softfloat/source/
A Ds_shortShiftRightJamM.c54 uint32_t partWordZ, wordA; in softfloat_shortShiftRightJamM() local
60 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM()
61 if ( partWordZ<<count != wordA ) partWordZ |= 1; in softfloat_shortShiftRightJamM()
64 zPtr[index] = wordA<<(negCount & 31) | partWordZ; in softfloat_shortShiftRightJamM()
66 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM()
68 zPtr[index] = partWordZ; in softfloat_shortShiftRightJamM()
A Ds_shiftRightJam256M.c55 uint64_t partWordZ, wordA; in softfloat_shortShiftRightJamM() local
61 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM()
62 if ( partWordZ<<count != wordA ) partWordZ |= 1; in softfloat_shortShiftRightJamM()
65 zPtr[index] = wordA<<(negCount & 63) | partWordZ; in softfloat_shortShiftRightJamM()
67 partWordZ = wordA>>count; in softfloat_shortShiftRightJamM()
69 zPtr[index] = partWordZ; in softfloat_shortShiftRightJamM()
A Ds_shortShiftRightExtendM.c54 uint32_t partWordZ, wordA; in softfloat_shortShiftRightExtendM() local
60 partWordZ = 0; in softfloat_shortShiftRightExtendM()
63 *zPtr = wordA<<(negCount & 31) | partWordZ; in softfloat_shortShiftRightExtendM()
65 partWordZ = wordA>>count; in softfloat_shortShiftRightExtendM()
69 *zPtr = partWordZ; in softfloat_shortShiftRightExtendM()
A Ds_shortShiftLeftM.c54 uint32_t partWordZ, wordA; in softfloat_shortShiftLeftM() local
59 partWordZ = aPtr[index]<<count; in softfloat_shortShiftLeftM()
62 zPtr[index] = partWordZ | wordA>>(negCount & 31); in softfloat_shortShiftLeftM()
64 partWordZ = wordA<<count; in softfloat_shortShiftLeftM()
66 zPtr[index] = partWordZ; in softfloat_shortShiftLeftM()
A Ds_shortShiftRightM.c54 uint32_t partWordZ, wordA; in softfloat_shortShiftRightM() local
59 partWordZ = aPtr[index]>>count; in softfloat_shortShiftRightM()
62 zPtr[index] = wordA<<(negCount & 31) | partWordZ; in softfloat_shortShiftRightM()
64 partWordZ = wordA>>count; in softfloat_shortShiftRightM()
66 zPtr[index] = partWordZ; in softfloat_shortShiftRightM()

Completed in 4 milliseconds