Home
last modified time | relevance | path

Searched refs:divident (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dmodsi3.S26 @ int __modsi3(int divident, int divisor)
H A Ddivsi3.S30 @ int __divsi3(int divident, int divisor)
H A Ddivmodsi4.S27 @ int __divmodsi4(int divident, int divisor, int *remainder)
H A Dumodsi3.S20 @ unsigned int __umodsi3(unsigned int divident, unsigned int divisor)
H A Dudivmodsi4.S20 @ unsigned int __udivmodsi4(unsigned int divident, unsigned int divisor,
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_flags.inc46 "if the allocation size is not a divident of the granule size")
/freebsd/contrib/libsamplerate/
H A Dsrc_sinc.c159 int_div_ceil (int divident, int divisor) /* == (int) ceil ((float) divident / divisor) */ in int_div_ceil() argument
160 { assert (divident >= 0 && divisor > 0) ; /* For positive numbers only */ in int_div_ceil()
161 return (divident + (divisor - 1)) / divisor ; in int_div_ceil()