Searched refs:remainder (Results 101 - 111 of 111) sorted by relevance

12345

/freebsd-current/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsainit.c2284 bit32 remainder = memSize & 127; local
2287 if (remainder > 0)
2289 memSize += (128 - remainder);
2392 bit32 remainder = memSize & 127; local
2395 if (remainder > 0)
2397 memSize += (128 - remainder);
/freebsd-current/sys/dev/hyperv/netvsc/
H A Dif_hn.c3367 int remainder, space; local
3371 remainder = len;
3377 if (space > remainder)
3378 space = remainder;
3382 remainder -= space;
3384 while (remainder > 0) {
3392 n->m_len = min(MJUMPAGESIZE, remainder);
3395 remainder -= n->m_len;
/freebsd-current/sys/dev/usb/wlan/
H A Dif_rum.c1361 int remainder; local
1391 remainder = (16 * len) % 22;
1392 if (remainder != 0 && remainder < 7)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h461 /// width without remainder.
465 /// starting at the least significant bit with the remainder zero.
477 /// the least significant bit with the remainder zero.
487 /// the remainder zero.
497 /// the remainder zero. If true, \p MaskIdx will specify the index of the
951 /// Unsigned remainder operation.
953 /// Perform an unsigned remainder operation on this APInt with RHS being the
957 /// \returns a new APInt value containing the remainder result
961 /// Function for signed remainder operation.
963 /// Signed remainder operatio
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A D__clang_hip_math.h993 double remainder(double __x, double __y) { function
H A Dopencl-c.h8101 float __ovld __cnfn remainder(float, float);
8102 float2 __ovld __cnfn remainder(float2, float2);
8103 float3 __ovld __cnfn remainder(float3, float3);
8104 float4 __ovld __cnfn remainder(float4, float4);
8105 float8 __ovld __cnfn remainder(float8, float8);
8106 float16 __ovld __cnfn remainder(float16, float16);
8108 double __ovld __cnfn remainder(double, double);
8109 double2 __ovld __cnfn remainder(double2, double2);
8110 double3 __ovld __cnfn remainder(double3, double3);
8111 double4 __ovld __cnfn remainder(double
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp2091 /* Normalized remainder. */
2092 IEEEFloat::opStatus IEEEFloat::remainder(const IEEEFloat &rhs) {
2119 // To calculate the remainder we use the following scheme.
2121 // The remainder is defained as follows:
2123 // remainder = numer - rquot * denom = x - r * p
2139 // remainder.
4860 APFloat::opStatus DoubleAPFloat::remainder(const DoubleAPFloat &RHS) {
4864 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()));
/freebsd-current/lib/libc++/
H A DMakefile900 MAT_HEADERS+= remainder.h
/freebsd-current/sys/tools/
H A Dmakesyscalls.lua607 -- Dump any remainder
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp1684 return Name == "remainder" || Name == "remainderf" ||
2659 if (APFloat::opStatus::opOK == V.remainder(Op2->getValueAPF()))
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp2495 MUTATE_LDBL(remainder)

Completed in 269 milliseconds

12345