HomeSort by: relevance | last modified time | path
    Searched defs:carries (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgcc/
libgcc2.c 411 const UWtype carries = (UWtype) uu.s.high << bm;
414 w.s.low = ((UWtype) uu.s.low >> b) | carries;
439 const UWtype carries = (UWtype) uu.s.low >> bm;
442 w.s.high = ((UWtype) uu.s.high << b) | carries;
468 const UWtype carries = (UWtype) uu.s.high << bm;
471 w.s.low = ((UWtype) uu.s.low >> b) | carries;
400 const UWtype carries = (UWtype) uu.s.high << bm; local
428 const UWtype carries = (UWtype) uu.s.low >> bm; local
457 const UWtype carries = (UWtype) uu.s.high << bm; local
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcc2.c 411 const UWtype carries = (UWtype) uu.s.high << bm;
414 w.s.low = ((UWtype) uu.s.low >> b) | carries;
439 const UWtype carries = (UWtype) uu.s.low >> bm;
442 w.s.high = ((UWtype) uu.s.high << b) | carries;
468 const UWtype carries = (UWtype) uu.s.high << bm;
471 w.s.low = ((UWtype) uu.s.low >> b) | carries;
400 const UWtype carries = (UWtype) uu.s.high << bm; local
428 const UWtype carries = (UWtype) uu.s.low >> bm; local
457 const UWtype carries = (UWtype) uu.s.high << bm; local
  /src/external/gpl3/gcc.old/dist/gcc/
optabs.cc 517 rtx tmp, carries;
527 carries = outof_input;
540 carries = expand_binop (word_mode, reverse_unsigned_shift,
557 if (tmp == 0 || carries == 0)
559 carries = expand_binop (word_mode, reverse_unsigned_shift,
560 carries, tmp, 0, unsignedp, methods);
561 if (carries == 0)
572 if (!force_expand_binop (word_mode, ior_optab, tmp, carries,
1965 /* These can be done a word at a time by propagating carries. */
513 rtx tmp, carries; local
  /src/external/gpl3/gcc/dist/gcc/
optabs.cc 517 rtx tmp, carries;
527 carries = outof_input;
540 carries = simplify_expand_binop (word_mode, reverse_unsigned_shift,
543 if (carries == const0_rtx)
555 if (tmp == 0 || carries == 0)
557 if (carries != const0_rtx && tmp != const0_rtx)
558 carries = simplify_expand_binop (word_mode, reverse_unsigned_shift,
559 carries, tmp, 0, unsignedp, methods);
560 if (carries == 0)
574 if (!force_expand_binop (word_mode, ior_optab, tmp, carries,
513 rtx tmp, carries; local
    [all...]

Completed in 54 milliseconds