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

/seL4-camkes-master/projects/musllibc/src/internal/
H A Dshgetc.c3 void __shlim(FILE *f, off_t lim) argument
5 f->shlim = lim;
7 if (lim && f->shcnt > lim)
8 f->shend = f->rpos + lim;
H A Dshgetc.h7 #define shlim(f, lim) __shlim((f), (lim))
H A Dintscan.c26 unsigned long long __intscan(FILE *f, unsigned base, int pok, unsigned long long lim) argument
85 y = lim;
86 if (lim&1) neg = 0;
90 if (y>=lim) {
91 if (!(lim&1) && !neg) {
93 return lim-1;
94 } else if (y>lim) {
96 return lim;
/seL4-camkes-master/projects/musllibc/src/stdlib/
H A Dstrtol.c9 static unsigned long long strtox(const char *s, char **p, int base, unsigned long long lim) argument
21 unsigned long long y = __intscan(&f, base, 1, lim);
H A Dwcstol.c32 static unsigned long long wcstox(const wchar_t *s, wchar_t **p, int base, unsigned long long lim) argument
46 unsigned long long y = __intscan(&f, base, 1, lim);
/seL4-camkes-master/projects/musllibc/src/conf/
H A Dsysconf.c175 struct rlimit lim; local
176 getrlimit(values[name]&16383, &lim);
177 return lim.rlim_cur > LONG_MAX ? LONG_MAX : lim.rlim_cur;
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/src/
H A Ddump.c73 const char *pos, *end, *lim; local
80 lim = str + len;
87 while(end < lim)
89 end = utf8_iterate(pos, lim - pos, &codepoint);

Completed in 90 milliseconds