/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | fractions.py | 68 def __new__(cls, numerator=0, denominator=None): argument 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) 114 elif isinstance(numerator, Decimal): 115 value = Fraction.from_decimal(numerator) 120 elif isinstance(numerator, basestring): 122 m = _RATIONAL_FORMAT.match(numerator) [all …]
|
D | numbers.py | 276 def numerator(self): member in Rational 292 return self.numerator / self.denominator 381 def numerator(self): member in Integral
|
/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/ |
D | uldivmod.c | 24 __aeabi_uidivmod(unsigned numerator, unsigned denominator) in __aeabi_uidivmod() argument 28 Return = __udivsi3 (numerator, denominator); in __aeabi_uidivmod() 29 Return |= LShiftU64 (__umodsi3 (numerator, denominator), 32); in __aeabi_uidivmod()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_abstract_numbers.py | 16 self.assertEqual(7, int(7).numerator) 26 self.assertEqual(7, long(7).numerator)
|
D | test_fractions.py | 107 return (r.numerator, r.denominator)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | numbers.py | 276 def numerator(self): member in Rational 292 return self.numerator / self.denominator 381 def numerator(self): member in Integral
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | floatobject.c | 1710 PyObject *numerator = NULL; in float_as_integer_ratio() local 1747 numerator = PyLong_FromDouble(float_part); in float_as_integer_ratio() 1748 if (numerator == NULL) goto error; in float_as_integer_ratio() 1758 INPLACE_UPDATE(numerator, in float_as_integer_ratio() 1759 long_methods->nb_multiply(numerator, py_exponent)); in float_as_integer_ratio() 1760 if (numerator == NULL) goto error; in float_as_integer_ratio() 1769 INPLACE_UPDATE(numerator, PyNumber_Int(numerator)); in float_as_integer_ratio() 1770 if (numerator == NULL) goto error; in float_as_integer_ratio() 1774 result_pair = PyTuple_Pack(2, numerator, denominator); in float_as_integer_ratio() 1780 Py_XDECREF(numerator); in float_as_integer_ratio()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | floatobject.c | 1695 PyObject *numerator = NULL; in float_as_integer_ratio() local 1732 numerator = PyLong_FromDouble(float_part); in float_as_integer_ratio() 1733 if (numerator == NULL) goto error; in float_as_integer_ratio() 1743 INPLACE_UPDATE(numerator, in float_as_integer_ratio() 1744 long_methods->nb_multiply(numerator, py_exponent)); in float_as_integer_ratio() 1745 if (numerator == NULL) goto error; in float_as_integer_ratio() 1754 INPLACE_UPDATE(numerator, PyNumber_Int(numerator)); in float_as_integer_ratio() 1755 if (numerator == NULL) goto error; in float_as_integer_ratio() 1759 result_pair = PyTuple_Pack(2, numerator, denominator); in float_as_integer_ratio() 1765 Py_XDECREF(numerator); in float_as_integer_ratio()
|
/device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/test/ |
D | mm_jpeg_test.c | 320 p_obj->input[i].size = size * (size_t)p_input->col_fmt.mult.numerator / in encode_init()
|
/device/google/crosshatch/sdm845/kernel-headers/linux/ |
D | videodev2.h | 136 __u32 numerator; member
|
/device/google/marlin/camera/QCamera2/stack/common/ |
D | cam_types.h | 1024 int32_t numerator; member
|
/device/google/bonito/sdm710/kernel-headers/linux/ |
D | videodev2.h | 136 __u32 numerator; member
|
/device/google/crosshatch/sdm845/original-kernel-headers/linux/ |
D | videodev2.h | 384 __u32 numerator; member
|
/device/google/marlin/camera/QCamera2/stack/mm-camera-interface/include/ |
D | cam_types.h | 1024 int32_t numerator; member
|
/device/google/bonito/sdm710/original-kernel-headers/linux/ |
D | videodev2.h | 384 __u32 numerator; member
|
/device/google/marlin/camera/QCamera2/HAL3/ |
D | QCamera3PostProc.cpp | 2344 exposure_val->num = exposure_comp * step.numerator; in getExifExposureValue()
|
D | QCamera3HWI.cpp | 7285 gCamCapability[cameraId]->base_gain_factor.numerator, in initStaticMetadata() 7392 gCamCapability[cameraId]->exp_compensation_step.numerator, in initStaticMetadata() 9880 transform_elem.numerator = in translateToHalMetadata() 9881 frame_settings.find(ANDROID_COLOR_CORRECTION_TRANSFORM).data.r[num].numerator; in translateToHalMetadata()
|