Home
last modified time | relevance | path

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

/external/neven/Embedded/common/src/b_BasicEm/
DMath.c49 uint32 rootL = 0; in bbs_sqrt32() local
57 case 15: rootL += ( ( rootL + 0x8000 ) * ( rootL + 0x8000 ) <= valA ) << 15; in bbs_sqrt32()
58 case 14: rootL += ( ( rootL + 0x4000 ) * ( rootL + 0x4000 ) <= valA ) << 14; in bbs_sqrt32()
59 case 13: rootL += ( ( rootL + 0x2000 ) * ( rootL + 0x2000 ) <= valA ) << 13; in bbs_sqrt32()
60 case 12: rootL += ( ( rootL + 0x1000 ) * ( rootL + 0x1000 ) <= valA ) << 12; in bbs_sqrt32()
61 case 11: rootL += ( ( rootL + 0x0800 ) * ( rootL + 0x0800 ) <= valA ) << 11; in bbs_sqrt32()
62 case 10: rootL += ( ( rootL + 0x0400 ) * ( rootL + 0x0400 ) <= valA ) << 10; in bbs_sqrt32()
63 case 9: rootL += ( ( rootL + 0x0200 ) * ( rootL + 0x0200 ) <= valA ) << 9; in bbs_sqrt32()
64 case 8: rootL += ( ( rootL + 0x0100 ) * ( rootL + 0x0100 ) <= valA ) << 8; in bbs_sqrt32()
65 case 7: rootL += ( ( rootL + 0x0080 ) * ( rootL + 0x0080 ) <= valA ) << 7; in bbs_sqrt32()
[all …]