OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sigfigs
(Results
1 - 4
of
4
) sorted by null
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
hdtoa.c
126
static const int
sigfigs
= (DBL_MANT_DIG + 3) / 4;
local
163
bufsize = (
sigfigs
> ndigits) ?
sigfigs
: ndigits;
176
for (s = s0 + bufsize - 1; s > s0 +
sigfigs
- 1; s--)
178
for (; s > s0 +
sigfigs
- (DBL_FRACLBITS / 4) - 1 && s > s0; s--) {
197
for (ndigits =
sigfigs
; s0[ndigits - 1] == 0; ndigits--)
201
if (
sigfigs
> ndigits && s0[ndigits] != 0)
223
static const int
sigfigs
= (LDBL_MANT_DIG + 3) / 4;
local
260
bufsize = (
sigfigs
> ndigits) ?
sigfigs
: ndigits
[
all
...]
/external/libpcap/pcap/
pcap.h
127
bpf_u_int32
sigfigs
; /* accuracy of timestamps */
member in struct:pcap_file_header
/external/webrtc/webrtc/test/
rtp_file_reader.cc
410
uint32_t
sigfigs
; // Accuracy of timestamps.
local
414
TRY_PCAP(Read(&
sigfigs
, false));
/ndk/sources/android/support/src/stdio/
strtod.c
3103
static const int
sigfigs
= (DBL_MANT_DIG + 3) \/ 4;
local
[
all
...]
Completed in 181 milliseconds