Searched refs:precision (Results 1 - 18 of 18) sorted by relevance

/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgen_lookup.cpp13 double precision = 32768.0; variable
26 int Cr_R = (- 128 + i) * 1.596 * precision + 0.5;
27 int Cr_G = (- 128 + i) * -0.813 * precision + 0.5;
28 int Cb_G = (- 128 + i) * -0.392 * precision + 0.5;
29 int Cb_B = (- 128 + i) * 2.017 * precision + 0.5;
38 int Cr_R = (- 128 + i) * 1.596 * precision + 0.5;
39 int Cr_G = (- 128 + i) * -0.813 * precision + 0.5;
40 int Cb_G = (- 128 + i) * -0.392 * precision + 0.5;
41 int Cb_B = (- 128 + i) * 2.017 * precision + 0.5;
50 int Cr_R = (- 128 + i) * 1.596 * precision
[all...]
/haiku/src/tests/kits/app/bmessage/
H A DMessageBRectItemTest.h70 int precision = os.precision(); local
71 os.precision(1);
78 os.precision(precision);
H A DMessageBPointItemTest.h70 int precision = os.precision(); local
72 os.precision(precision);
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fphex.c222 int precision = info->prec; local
433 if (precision == -1)
434 precision = numend - numstr;
435 else if (precision < numend - numstr
436 && (numstr[precision] > '8'
438 && numstr[precision] < '0')
439 || (numstr[precision] == '8'
440 && (precision + 1 < numend - numstr
442 || (precision > 0
443 && ((numstr[precision
[all...]
H A Dvfprintf.c348 REF (precision), /* for '.' */ \
382 REF (precision), /* for '.' */ \
404 /* Step 2: after processing precision. */ \
629 /* Supply a default precision if none was given. */ \
632 /* We have to take care for the '0' flag. If a precision \
636 /* If the precision is 0 and the number is 0 nothing has to \
687 /* Supply a default precision if none was given. */ \
690 /* We have to take care for the '0' flag. If a precision \
694 /* If the precision is 0 and the number is 0 nothing has to \
1066 the length specified by the precision
[all...]
/haiku/src/system/kernel/lib/
H A Dkernel_vsprintf.cpp140 int precision, int flags)
177 if (i > precision)
178 precision = i;
179 size -= precision;
201 while (i < precision--)
213 It prints up to 3 fraction digits, and doesn't support any precision arguments.
280 int precision; local
326 /* get the precision */
328 precision = -1;
332 precision
139 number(Buffer& outBuffer, uint64 num, uint32 base, int size, int precision, int flags) argument
[all...]
/haiku/headers/private/interface/
H A DDecimalSpinner.h40 virtual void SetPrecision(uint32 precision) { fPrecision = precision; }; argument
/haiku/src/kits/locale/
H A DNumberFormat.cpp282 BNumberFormat::SetPrecision(int precision) argument
291 decimalFormatter->setMinimumFractionDigits(precision);
292 decimalFormatter->setMaximumFractionDigits(precision);
294 currencyFormatter->setMinimumFractionDigits(precision);
295 currencyFormatter->setMaximumFractionDigits(precision);
297 percentFormatter->setMinimumFractionDigits(precision);
298 percentFormatter->setMaximumFractionDigits(precision);
/haiku/src/libs/stdc++/legacy/
H A Diomanip.cc64 i.precision(n);
H A Diostream.cc699 int prec = precision();
740 int fpprec = 0; // 'Extra' (suppressed) floating precision.
810 int prec = precision();
/haiku/headers/os/locale/
H A DNumberFormat.h32 status_t SetPrecision(int precision);
/haiku/src/preferences/time/
H A Dntp.cpp70 int8 precision; /* in seconds of the nearest power of two */ member in struct:ntp_data
137 message.precision = -5; // 2^-5 ~ 32-64 Hz precision
/haiku/src/system/libroot/posix/musl/math/x86/
H A Dexpl.s2 # where hi+lo = log2e*x with 128bit precision
/haiku/src/system/libroot/posix/musl/math/x86_64/
H A Dexpl.s2 # where hi+lo = log2e*x with 128bit precision
/haiku/headers/posix/arch/riscv64/
H A Dfenv.h80 #error single precision floating point ABI not supported
/haiku/src/kits/interface/
H A DColumnTypes.cpp422 // we cannot use string_for_size due to the precision/cell width logic
448 int precision = 2; local
449 while (precision >= 0) {
451 fNumberFormat.SetPrecision(precision);
459 precision--;
/haiku/headers/posix/
H A Dstdlib.h72 extern char *fcvt(double value, int precision, int *_decimalPoint,
/haiku/headers/cpp/
H A Dstreambuf.h189 int precision() const { return _precision; } function in class:ios
190 int precision(int newp) { function in class:ios

Completed in 137 milliseconds