Lines Matching refs:vv
364 DWunion vv = {.ll = v}; in __divdi3() local
370 if (vv.s.high < 0) in __divdi3()
372 vv.ll = -vv.ll; in __divdi3()
374 w = __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) 0); in __divdi3()
396 const DWunion vv = {.ll = v}; in __muldi3() local
397 DWunion w = {.ll = __umulsidi3 (uu.s.low, vv.s.low)}; in __muldi3()
399 w.s.high += ((UWtype) uu.s.low * (UWtype) vv.s.high in __muldi3()
400 + (UWtype) uu.s.high * (UWtype) vv.s.low); in __muldi3()
410 DWunion vv = {.ll = v}; in __moddi3() local
416 if (vv.s.high < 0) in __moddi3()
417 vv.ll = -vv.ll; in __moddi3()
419 (void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w); in __moddi3()