Home
last modified time | relevance | path

Searched refs:__value (Results 1 – 6 of 6) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Dmbtowc_r.c545 ch = state->__value.__wchb[0]; in __utf8_mbtowc()
564 state->__value.__wchb[0] = ch; in __utf8_mbtowc()
577 if (state->__value.__wchb[0] < 0xc2) in __utf8_mbtowc()
584 *pwc = (wchar_t)((state->__value.__wchb[0] & 0x1f) << 6) in __utf8_mbtowc()
592 state->__value.__wchb[0] = ch; in __utf8_mbtowc()
599 ch = (state->__count == 1) ? t[i++] : state->__value.__wchb[1]; in __utf8_mbtowc()
600 if (state->__value.__wchb[0] == 0xe0 && ch < 0xa0) in __utf8_mbtowc()
611 state->__value.__wchb[1] = ch; in __utf8_mbtowc()
625 tmp = (wchar_t)((state->__value.__wchb[0] & 0x0f) << 12) in __utf8_mbtowc()
626 | (wchar_t)((state->__value.__wchb[1] & 0x3f) << 6) in __utf8_mbtowc()
[all …]
Dwcsnrtombs.c103 wint_t wch = ps->__value.__wch; in _wcsnrtombs_l()
132 ps->__value.__wch = wch; in _wcsnrtombs_l()
Dwctomb_r.c62 tmp = ((uint32_t) state->__value.__wchb[0] << 16 | (uint32_t) state->__value.__wchb[1] << 8) in __utf8_wctomb()
92 state->__value.__wchb[0] = (tmp >> 16) & 0xff; in __utf8_wctomb()
93 state->__value.__wchb[1] = (tmp >> 8) & 0xff; in __utf8_wctomb()
103 tmp = ((uint32_t) state->__value.__wchb[0] << 16) in __utf8_wctomb()
104 | (state->__value.__wchb[1] << 8) in __utf8_wctomb()
/picolibc-latest/newlib/libc/include/sys/
D_types.h212 } __value; /* Value so far. */ member
Dtime.h68 int getitimer (int __which, struct itimerval *__value);
71 int setitimer (int __which, const struct itimerval *__restrict __value,
/picolibc-latest/newlib/libc/include/
Dstdlib.h261 int setenv (const char *__string, const char *__value, int __overwrite);