Home
last modified time | relevance | path

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

/picolibc-3.5.0-3.4.0/newlib/libc/stdlib/
Dmbtowc_r.c555 ch = state->__value.__wchb[0]; in __utf8_mbtowc()
574 state->__value.__wchb[0] = ch; in __utf8_mbtowc()
587 if (state->__value.__wchb[0] < 0xc2) in __utf8_mbtowc()
594 *pwc = (wchar_t)((state->__value.__wchb[0] & 0x1f) << 6) in __utf8_mbtowc()
602 state->__value.__wchb[0] = ch; in __utf8_mbtowc()
609 ch = (state->__count == 1) ? t[i++] : state->__value.__wchb[1]; in __utf8_mbtowc()
610 if (state->__value.__wchb[0] == 0xe0 && ch < 0xa0) in __utf8_mbtowc()
621 state->__value.__wchb[1] = ch; in __utf8_mbtowc()
635 tmp = (wchar_t)((state->__value.__wchb[0] & 0x0f) << 12) in __utf8_mbtowc()
636 | (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.c65 tmp = ((uint32_t) state->__value.__wchb[0] << 16 | (uint32_t) state->__value.__wchb[1] << 8) in __utf8_wctomb()
95 state->__value.__wchb[0] = (tmp >> 16) & 0xff; in __utf8_wctomb()
96 state->__value.__wchb[1] = (tmp >> 8) & 0xff; in __utf8_wctomb()
106 tmp = ((uint32_t) state->__value.__wchb[0] << 16) in __utf8_wctomb()
107 | (state->__value.__wchb[1] << 8) in __utf8_wctomb()
/picolibc-3.5.0-3.4.0/newlib/libc/include/sys/
D_types.h217 } __value; /* Value so far. */ member
Dtime.h427 int getitimer (int __which, struct itimerval *__value);
428 int setitimer (int __which, const struct itimerval *__restrict __value,
/picolibc-3.5.0-3.4.0/newlib/libc/include/
Dstdlib.h236 int setenv (const char *__string, const char *__value, int __overwrite);