Searched refs:quo (Results 1 - 7 of 7) sorted by relevance

/external/libxaac/decoder/
H A Dixheaacd_imdct.c204 WORD32 quo, rem, preshift = 0; local
211 quo = fac_data[0] / 28;
213 pow10 = ixheaacd_pow10(quo);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc4196 INTERCEPTOR(double, remquo, double x, double y, int *quo) {
4198 COMMON_INTERCEPTOR_ENTER(ctx, remquo, x, y, quo);
4202 double res = REAL(remquo)(x, y, quo);
4203 if (quo) COMMON_INTERCEPTOR_WRITE_RANGE(ctx, quo, sizeof(*quo));
4206 INTERCEPTOR(float, remquof, float x, float y, int *quo) {
4208 COMMON_INTERCEPTOR_ENTER(ctx, remquof, x, y, quo);
4212 float res = REAL(remquof)(x, y, quo);
4213 if (quo) COMMON_INTERCEPTOR_WRITE_RANG
[all...]
/external/python/cpython3/Objects/
H A Dlongobject.c4922 PyLongObject *quo = NULL, *rem = NULL; local
4954 if (long_divrem((PyLongObject*)a, (PyLongObject*)b, &quo, &rem) < 0)
4972 quo_is_odd = Py_SIZE(quo) != 0 && ((quo->ob_digit[0] & 1) != 0);
4976 temp = long_sub(quo, (PyLongObject *)one);
4978 temp = long_add(quo, (PyLongObject *)one);
4979 Py_DECREF(quo);
4980 quo = (PyLongObject *)temp;
4981 if (quo == NULL)
4999 PyTuple_SET_ITEM(result, 0, (PyObject *)quo);
[all...]
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1770 int quo; local
1771 double res = remquo(29.0, 3.0, &quo);
1773 EXPECT_NOT_POISONED(quo);
1777 int quo; local
1778 float res = remquof(29.0, 3.0, &quo);
1780 EXPECT_NOT_POISONED(quo);
1784 int quo; local
1785 long double res = remquof(29.0, 3.0, &quo);
1787 EXPECT_NOT_POISONED(quo);
/external/python/cpython2/Modules/
H A Ddatetimemodule.c131 int quo; local
134 quo = x / y;
135 *r = x - quo * y;
137 --quo;
141 return quo;
/external/clang/lib/Headers/
H A Dopencl-c.h9144 * pointed to by quo.
9147 float __ovld remquo(float x, float y, int *quo);
9148 float2 __ovld remquo(float2 x, float2 y, int2 *quo);
9149 float3 __ovld remquo(float3 x, float3 y, int3 *quo);
9150 float4 __ovld remquo(float4 x, float4 y, int4 *quo);
9151 float8 __ovld remquo(float8 x, float8 y, int8 *quo);
9152 float16 __ovld remquo(float16 x, float16 y, int16 *quo);
9154 double __ovld remquo(double x, double y, int *quo);
9155 double2 __ovld remquo(double2 x, double2 y, int2 *quo);
9156 double3 __ovld remquo(double3 x, double3 y, int3 *quo);
[all...]
/external/python/cpython3/Modules/
H A D_datetimemodule.c153 int quo; local
156 quo = x / y;
157 *r = x - quo * y;
159 --quo;
163 return quo;

Completed in 485 milliseconds