Searched defs:numerator (Results 1 - 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
H A Duldivmod.c24 __aeabi_uidivmod(unsigned numerator, unsigned denominator) argument
28 Return = __udivsi3 (numerator, denominator);
29 Return |= LShiftU64 (__umodsi3 (numerator, denominator), 32);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dnumbers.py271 """.numerator and .denominator should be in lowest terms."""
276 def numerator(self): member in class:Rational
285 """float(self) = self.numerator / self.denominator
292 return self.numerator / self.denominator
381 def numerator(self): member in class:Integral
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dfractions.py33 (?P<num>\d*) # numerator (possibly empty)
49 be Rational. The numerator defaults to 0 and the denominator
68 def __new__(cls, numerator=0, denominator=None):
72 numerator/denominator pair, or a float.
102 if isinstance(numerator, Rational):
103 self._numerator = numerator.numerator
104 self._denominator = numerator.denominator
107 elif isinstance(numerator, float):
109 value = Fraction.from_float(numerator)
262 def numerator(a): member in class:Fraction
[all...]
H A Dnumbers.py271 """.numerator and .denominator should be in lowest terms."""
276 def numerator(self): member in class:Rational
285 """float(self) = self.numerator / self.denominator
292 return self.numerator / self.denominator
381 def numerator(self): member in class:Integral
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dfloatobject.c1710 PyObject *numerator = NULL; local
1747 numerator = PyLong_FromDouble(float_part);
1748 if (numerator == NULL) goto error;
1758 INPLACE_UPDATE(numerator,
1759 long_methods->nb_multiply(numerator, py_exponent));
1760 if (numerator == NULL) goto error;
1769 INPLACE_UPDATE(numerator, PyNumber_Int(numerator));
1770 if (numerator == NULL) goto error;
1774 result_pair = PyTuple_Pack(2, numerator, denominato
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfloatobject.c1695 PyObject *numerator = NULL; local
1732 numerator = PyLong_FromDouble(float_part);
1733 if (numerator == NULL) goto error;
1743 INPLACE_UPDATE(numerator,
1744 long_methods->nb_multiply(numerator, py_exponent));
1745 if (numerator == NULL) goto error;
1754 INPLACE_UPDATE(numerator, PyNumber_Int(numerator));
1755 if (numerator == NULL) goto error;
1759 result_pair = PyTuple_Pack(2, numerator, denominato
[all...]
/device/google/marlin/camera/QCamera2/stack/common/
H A Dcam_types.h1020 int32_t numerator; member in struct:__anon638
/device/google/marlin/camera/QCamera2/stack/mm-camera-interface/include/
H A Dcam_types.h1020 int32_t numerator; member in struct:__anon992
/device/huawei/angler/camera/QCamera2/stack/common/
H A Dcam_types.h919 int32_t numerator; member in struct:__anon1524
/device/lge/bullhead/camera/QCamera2/stack/common/
H A Dcam_types.h919 int32_t numerator; member in struct:__anon2076

Completed in 407 milliseconds