Searched defs:prec (Results 1 - 9 of 9) sorted by relevance

/device/google/contexthub/firmware/lib/libm/
H A Dkf_rem_pio2.c56 int __kernel_rem_pio2f(float *x, float *y, int e0, int nx, int prec, const __int32_t *ipio2) argument
58 int __kernel_rem_pio2f(x,y,e0,nx,prec,ipio2)
59 float x[], y[]; int e0,nx,prec; __int32_t ipio2[];
66 jk = init_jk[prec];
175 switch(prec) {
/device/linaro/bootloader/edk2/StdLib/LibC/Math/
H A Dk_rem_pio2.c19 * __kernel_rem_pio2(x,y,e0,nx,prec,ipio2)
20 * double x[],y[]; int e0,nx,prec; int ipio2[];
68 * prec an integer indicating the precision:
157 __kernel_rem_pio2(double *x, double *y, int e0, int nx, int prec, const int32_t *ipio2) argument
163 jk = init_jk[prec];
271 switch(prec) {
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
H A Dvsnprintf_ss.c129 int prec; /* precision from format (%.3d), or -1 */ local
134 int dprec; /* a copy of prec if [diouxX], 0 otherwise */
174 prec = -1;
211 prec = n < 0 ? -1 : n;
219 prec = n < 0 ? -1 : n;
320 if (prec >= 0) {
323 * NUL in the first `prec' characters, and
326 char *p = memchr(cp, 0, (size_t)prec);
330 if (size > prec)
331 size = prec;
[all...]
H A Dvfwprintf.c416 * string representation. ``prec'' specifies the maximum number of bytes
417 * to output. If ``prec'' is greater than or equal to zero, we can't assume
421 __mbsconv(char *mbsarg, int prec) argument
436 if (prec >= 0) {
444 while (nchars != (size_t)prec) {
489 * string representation. If not -1, prec specifies the maximum number of
494 __wcsconv(wchar_t *wcsarg, int prec) argument
504 if (prec < 0) {
516 if (prec < 128)
517 nbytes = prec;
622 int prec; /* precision from format; <0 for N/A */ local
[all...]
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DGLClientState.cpp774 int GLClientState::compareTexId(const void* pid, const void* prec) argument
777 const TextureRec* rec = (const TextureRec*)prec;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dstringobject.c3959 formatfloat(PyObject *v, int flags, int prec, int type) argument
3972 if (prec < 0)
3973 prec = 6;
3975 p = PyOS_double_to_string(x, type, prec,
3996 * There will be at least prec digits, zero-filled on the left if
4000 * prec minimum number of digits; 0-fill on left if needed
4007 _PyString_FormatLong(PyObject *val, int flags, int prec, int type, argument
4096 if (prec > numdigits) {
4098 numnondigits + prec);
4107 for (i = 0; i < prec
4132 formatint(char *buf, size_t buflen, int flags, int prec, int type, PyObject *v) argument
4282 int prec = -1; local
[all...]
H A Dunicodeobject.c8147 formatfloat(PyObject *v, int flags, int prec, int type) argument
8157 if (prec < 0)
8158 prec = 6;
8160 p = PyOS_double_to_string(x, type, prec,
8170 formatlong(PyObject *val, int flags, int prec, int type) argument
8177 str = _PyString_FormatLong(val, flags, prec, type, &buf, &len);
8196 int prec,
8200 /* fmt = '%#.' + `prec` + 'l' + `type`
8219 if (prec < 0)
8220 prec
8193 formatint(Py_UNICODE *buf, size_t buflen, int flags, int prec, int type, PyObject *v) argument
8398 int prec = -1; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dstringobject.c3939 formatfloat(PyObject *v, int flags, int prec, int type) argument
3952 if (prec < 0)
3953 prec = 6;
3955 p = PyOS_double_to_string(x, type, prec,
3976 * There will be at least prec digits, zero-filled on the left if
3980 * prec minimum number of digits; 0-fill on left if needed
3987 _PyString_FormatLong(PyObject *val, int flags, int prec, int type, argument
4076 if (prec > numdigits) {
4078 numnondigits + prec);
4087 for (i = 0; i < prec
4112 formatint(char *buf, size_t buflen, int flags, int prec, int type, PyObject *v) argument
4262 int prec = -1; local
[all...]
H A Dunicodeobject.c8043 formatfloat(PyObject *v, int flags, int prec, int type) argument
8053 if (prec < 0)
8054 prec = 6;
8056 p = PyOS_double_to_string(x, type, prec,
8066 formatlong(PyObject *val, int flags, int prec, int type) argument
8073 str = _PyString_FormatLong(val, flags, prec, type, &buf, &len);
8092 int prec,
8096 /* fmt = '%#.' + `prec` + 'l' + `type`
8115 if (prec < 0)
8116 prec
8089 formatint(Py_UNICODE *buf, size_t buflen, int flags, int prec, int type, PyObject *v) argument
8294 int prec = -1; local
[all...]

Completed in 152 milliseconds