/src/lib/libc/arch/sparc/gen/ |
divrem.m4 | 47 * Input: dividend and divisor in %o0 and %o1 respectively. 64 * R the remainder so far, initially the dividend 71 * Current estimate for non-large dividend is 73 * A large dividend is one greater than 2^(31-TOPBITS) and takes a 83 define(dividend, `%o0') macro 133 orcc divisor, dividend, %g0 ! either negative? 136 `xor divisor, dividend, SIGN', 137 `mov dividend, SIGN') ! compute sign in any case 140 tst dividend 141 ! divisor is definitely negative; dividend might also be negativ [all...] |
/src/sys/external/bsd/compiler_rt/dist/test/Unit/ |
muldc3_test.c | 54 double _Complex dividend; local in function:test__muldc3 57 __real__ dividend = a; local in function:test__muldc3 58 __imag__ dividend = b; local in function:test__muldc3 62 switch (classify(dividend))
|
multc3_test.c | 57 long double _Complex dividend; local in function:test__multc3 60 __real__ dividend = a; local in function:test__multc3 61 __imag__ dividend = b; local in function:test__multc3 65 switch (classify(dividend))
|
mulxc3_test.c | 57 long double _Complex dividend; local in function:test__mulxc3 60 __real__ dividend = a; local in function:test__mulxc3 61 __imag__ dividend = b; local in function:test__mulxc3 65 switch (classify(dividend))
|
divdc3_test.c | 54 double _Complex dividend; local in function:test__divdc3 57 __real__ dividend = a; local in function:test__divdc3 58 __imag__ dividend = b; local in function:test__divdc3 62 switch (classify(dividend))
|
divsc3_test.c | 54 float _Complex dividend; local in function:test__divsc3 57 __real__ dividend = a; local in function:test__divsc3 58 __imag__ dividend = b; local in function:test__divsc3 62 switch (classify(dividend))
|
divtc3_test.c | 58 long double _Complex dividend; local in function:test__divtc3 61 __real__ dividend = a; local in function:test__divtc3 62 __imag__ dividend = b; local in function:test__divtc3 66 switch (classify(dividend))
|
divxc3_test.c | 57 long double _Complex dividend; local in function:test__divxc3 60 __real__ dividend = a; local in function:test__divxc3 61 __imag__ dividend = b; local in function:test__divxc3 65 switch (classify(dividend))
|
mulsc3_test.c | 54 float _Complex dividend; local in function:test__mulsc3 57 __real__ dividend = a; local in function:test__mulsc3 58 __imag__ dividend = b; local in function:test__mulsc3 62 switch (classify(dividend))
|
/src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ |
muldc3_test.c | 55 double _Complex dividend; local in function:test__muldc3 58 __real__ dividend = a; local in function:test__muldc3 59 __imag__ dividend = b; local in function:test__muldc3 63 switch (classify(dividend))
|
multc3_test.c | 58 long double _Complex dividend; local in function:test__multc3 61 __real__ dividend = a; local in function:test__multc3 62 __imag__ dividend = b; local in function:test__multc3 66 switch (classify(dividend))
|
mulxc3_test.c | 57 long double _Complex dividend; local in function:test__mulxc3 60 __real__ dividend = a; local in function:test__mulxc3 61 __imag__ dividend = b; local in function:test__mulxc3 65 switch (classify(dividend))
|
divdc3_test.c | 55 double _Complex dividend; local in function:test__divdc3 58 __real__ dividend = a; local in function:test__divdc3 59 __imag__ dividend = b; local in function:test__divdc3 63 switch (classify(dividend))
|
divsc3_test.c | 55 float _Complex dividend; local in function:test__divsc3 58 __real__ dividend = a; local in function:test__divsc3 59 __imag__ dividend = b; local in function:test__divsc3 63 switch (classify(dividend))
|
divtc3_test.c | 57 long double _Complex dividend; local in function:test__divtc3 60 __real__ dividend = a; local in function:test__divtc3 61 __imag__ dividend = b; local in function:test__divtc3 65 switch (classify(dividend))
|
divxc3_test.c | 57 long double _Complex dividend; local in function:test__divxc3 60 __real__ dividend = a; local in function:test__divxc3 61 __imag__ dividend = b; local in function:test__divxc3 65 switch (classify(dividend))
|
mulsc3_test.c | 55 float _Complex dividend; local in function:test__mulsc3 58 __real__ dividend = a; local in function:test__mulsc3 59 __imag__ dividend = b; local in function:test__mulsc3 63 switch (classify(dividend))
|
/src/sys/lib/libkern/arch/sparc/ |
divrem.m4 | 47 * Input: dividend and divisor in %o0 and %o1 respectively. 64 * R the remainder so far, initially the dividend 71 * Current estimate for non-large dividend is 73 * A large dividend is one greater than 2^(31-TOPBITS) and takes a 83 define(dividend, `%o0') macro 133 orcc divisor, dividend, %g0 ! either negative? 136 `xor divisor, dividend, SIGN', 137 `mov dividend, SIGN') ! compute sign in any case 140 tst dividend 141 ! divisor is definitely negative; dividend might also be negativ [all...] |
/src/sys/lib/libkern/arch/sparc64/ |
divrem.m4 | 51 * Input: dividend and divisor in %o0 and %o1 respectively. 68 * R the remainder so far, initially the dividend 75 * Current estimate for non-large dividend is 77 * A large dividend is one greater than 2^(31-TOPBITS) and takes a 87 define(dividend, `%o0') macro 134 orcc divisor, dividend, %g0 ! either negative? 137 `xor divisor, dividend, SIGN', 138 `mov dividend, SIGN') ! compute sign in any case 141 tst dividend 142 ! divisor is definitely negative; dividend might also be negativ [all...] |
/src/sys/dev/i2c/ |
dbcool.c | 2164 int32_t limit, dividend; local in function:dbcool_set_fan_limits 2172 dividend = 11250 * 60; 2174 dividend = 90000 * 60; 2175 limit = limit / dividend;
|