Searched defs:abs (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
H A DXabs.c2 The abs, labs, and llabs functions compute the absolute value of an integer j.
5 The abs, labs, and llabs, functions return the absolute value of their
21 abs(int j) function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dfloatobject.c440 unsigned long abs = (unsigned long)(jj < 0 ? -jj : jj); local
441 if (abs >> 48) {
835 /* v**inf is: 0.0 if abs(v) < 1; 1.0 if abs(v) == 1; inf if
836 * abs(v) > 1 (including case where v infinite)
838 * v**-inf is: inf if abs(v) < 1; 1.0 if abs(v) == 1; 0.0 if
839 * abs(v) > 1 (including case where v infinite)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Ddecimal.py585 self._int = str(abs(value))
691 n, d = abs(f).as_integer_ratio()
1188 # OK, now abs(op1) > abs(op2)
1200 # Now, op1 > abs(op2) > 0
1474 Remainder nearest to 0- abs(remainder-near) <= other/2
1513 # expdiff >= prec+1 => abs(self/other) > 10**prec
1516 # expdiff <= -2 => abs(self/other) < 0.1
1530 # abs(remainder) <= abs(othe
3929 def abs(self, a): member in class:Context
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfloatobject.c439 unsigned long abs = (unsigned long)(jj < 0 ? -jj : jj); local
440 if (abs >> 48) {
834 /* v**inf is: 0.0 if abs(v) < 1; 1.0 if abs(v) == 1; inf if
835 * abs(v) > 1 (including case where v infinite)
837 * v**-inf is: inf if abs(v) < 1; 1.0 if abs(v) == 1; 0.0 if
838 * abs(v) > 1 (including case where v infinite)

Completed in 100 milliseconds