Lines Matching full:vv
365 DWunion vv = {.ll = v}; in __divdi3() local
371 if (vv.s.high < 0) in __divdi3()
373 vv.ll = -vv.ll; in __divdi3()
375 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); in __divdi3()
397 const DWunion vv = {.ll = v}; in __muldi3() local
398 DWunion w = {.ll = __umulsidi3 (uu.s.low, vv.s.low)}; in __muldi3()
400 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
401 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
411 DWunion vv = {.ll = v}; in __moddi3() local
417 if (vv.s.high < 0) in __moddi3()
418 vv.ll = -vv.ll; in __moddi3()
420 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); in __moddi3()