Searched defs:DIVU (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/main/none/tests/mips64/
H A Darithmetic_instruction.c9 DDIV, DDIVU, DIV, DIVU, enumerator in enum:__anon33128
166 case DIVU:
/external/valgrind/main/coregrind/
H A Dm_main.c3408 dividend is less than the divisor, one execution of DIVU is all that
3421 (unsigned long long for DIVU and long long for DIVS. They are
3426 In practice, these would be replaced with uses of the machine's DIVU
3429 static UInt DIVU ( ULong u, UInt v ) function
3451 return DIVU(u, v) // just do one division.
3456 q1 = DIVU(u1, v) // First quotient digit.
3459 q0 = DIVU((k << 32) + u0, v) // 2nd quot. digit.
3469 q1 = DIVU(u1, v1) // Get quotient from
/external/pcre/dist/sljit/
H A DsljitNativeMIPS_common.c126 #define DIVU (HI(0) | LO(27)) macro
1080 FAIL_IF(push_inst(compiler, (op == SLJIT_UDIV ? DIVU : DIV) | S(SLJIT_R0) | T(SLJIT_R1), MOVABLE_INS));
1084 FAIL_IF(push_inst(compiler, (op == SLJIT_UDIV ? DIVU : DIV) | S(SLJIT_R0) | T(SLJIT_R1), MOVABLE_INS));

Completed in 220 milliseconds