OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shgetc
(Results
1 - 5
of
5
) sorted by null
/ndk/sources/android/support/src/wcstox/
intscan.c
28
#include "
shgetc
.h"
64
while (isspace((c=
shgetc
(f))));
67
c =
shgetc
(f);
70
c =
shgetc
(f);
72
c =
shgetc
(f);
93
for (x=0; c-'0'<10U && x<=UINT_MAX/10-1; c=
shgetc
(f))
95
for (y=x; c-'0'<10U && y<=ULLONG_MAX/10 && 10*y<=ULLONG_MAX-(c-'0'); c=
shgetc
(f))
100
for (x=0; val[c]<base && x<=UINT_MAX/32; c=
shgetc
(f))
102
for (y=x; val[c]<base && y<=ULLONG_MAX>>bs; c=
shgetc
(f))
105
for (x=0; val[c]<base && x<=UINT_MAX/36-1; c=
shgetc
(f)
[
all
...]
shgetc.h
14
// EOF being returned when
shgetc
() is being called past the real end
27
int
shgetc
(struct fake_file_t *);
29
// Back-track one character, must not be called more times than
shgetc
()
35
// that can be retrieved through
shgetc
(), but this is not necessary here.
floatscan.c
33
#include "
shgetc
.h"
56
// type to match our custom fake_file_t from
shgetc
.h
67
c =
shgetc
(f);
70
c =
shgetc
(f);
77
for (x=0; c-'0'<10U && x<INT_MAX/10; c =
shgetc
(f))
79
for (y=x; c-'0'<10U && y<LLONG_MAX/100; c =
shgetc
(f))
81
for (; c-'0'<10U; c =
shgetc
(f));
110
for (; c=='0'; c =
shgetc
(f)) gotdig=1;
113
for (c =
shgetc
(f); c=='0'; c =
shgetc
(f)) gotdig=1, lrp--
[
all
...]
shgetc.c
1
#include "
shgetc
.h"
12
int
shgetc
(struct fake_file_t *f) {
function
/ndk/sources/android/support/
Android.mk
125
src/wcstox/
shgetc
.c \
Completed in 53 milliseconds