/src/tests/lib/libc/locale/ |
t_mbrtoc32.c | 46 char32_t c32; local in function:ATF_TC_BODY 53 ATF_CHECK_EQ_MSG((n = mbrtoc32(&c32, NULL, 0, &ps)), 0, "n=%zu", n);
|
/src/lib/libc/locale/ |
mbrtoc8.c | 117 char32_t c32; local in function:mbrtoc8_l 168 len = mbrtoc32_l(&c32, s, n, &S->mbs, loc); 190 switch (c32) { 193 *pc8 = c32; 198 *pc8 = 0xc0 | __SHIFTOUT(c32, __BITS(10,6)); 199 S->buf[2] = 0x80 | __SHIFTOUT(c32, __BITS(5,0)); 204 *pc8 = 0xe0 | __SHIFTOUT(c32, __BITS(15,12)); 205 S->buf[1] = 0x80 | __SHIFTOUT(c32, __BITS(11,6)); 206 S->buf[2] = 0x80 | __SHIFTOUT(c32, __BITS(5,0)); 211 *pc8 = 0xf0 | __SHIFTOUT(c32, __BITS(20,18)) [all...] |
mbrtoc16.c | 117 char32_t c32; local in function:mbrtoc16_l 170 len = mbrtoc32_l(&c32, s, n, &S->mbs, loc); 193 if (c32 <= 0xffff) { 195 *pc16 = c32; 198 c32 -= 0x10000; 199 const char16_t w1 = 0xd800 | __SHIFTOUT(c32, __BITS(19,10)); 200 const char16_t w2 = 0xdc00 | __SHIFTOUT(c32, __BITS(9,0));
|
c16rtomb.c | 111 char32_t c32; local in function:c16rtomb_l 166 c32 = 0; 180 c32 = __SHIFTIN(__SHIFTOUT(w1, __BITS(9,0)), __BITS(19,10)) | 182 c32 += 0x10000; 205 c32 = c16; 211 return c32rtomb_l(s, c32, &S->mbs, loc);
|
mbrtoc32.c | 30 * mbrtoc32(&c32, s, n, ps) 33 * multibyte string s, and store it at c32, using multibyte 114 char32_t c32; local in function:mbrtoc32_l 220 c32 = le32dec(utf32le); 228 if (c32 >= 0xd800 && c32 <= 0xdfff) { 238 *pc32 = c32; 244 if (c32 == 0)
|
c8rtomb.c | 144 char32_t c32; local in function:c8rtomb_l 188 c32 = 0; 197 c32 = __SHIFTOUT(S->state_c32, __BITS(23,0)); 202 state = utf8_decode_step(state, c8, &c32); 217 __SHIFTIN(c32, __BITS(23,0)); 226 return c32rtomb_l(s, c32, &S->mbs, loc);
|
/src/tests/usr.bin/xlint/lint1/ |
queries.c | 68 c32_t c32; variable in typeref:typename:c32_t 244 c32 = (c32_t)c32; 245 c32 = (c32_t)c64; 246 c32 = (c64_t)c32; 248 c32 = (c64_t)c64; 250 c64 = (c32_t)c32; 253 c64 = (c64_t)c32; 261 c32 = (f32_t)f32 [all...] |
/src/sys/compat/netbsd32/ |
netbsd32_drm.c | 283 client32to64(struct drm_client *c64, const drm_client32_t *c32) 285 c64->idx = c32->idx; 286 c64->auth = c32->auth; 287 c64->pid = c32->pid; 288 c64->uid = c32->uid; 293 client64to32(drm_client32_t *c32, const struct drm_client *c64) 295 c32->idx = c64->idx; 296 c32->auth = c64->auth; 297 c32->pid = c64->pid; 298 c32->uid = c64->uid 304 drm_client32_t c32; local in function:compat_drm_getclient [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_ioc32.c | 265 drm_client32_t c32; local in function:compat_drm_getclient 270 if (copy_from_user(&c32, argp, sizeof(c32))) 273 client.idx = c32.idx; 279 c32.idx = client.idx; 280 c32.auth = client.auth; 281 c32.pid = client.pid; 282 c32.uid = client.uid; 283 c32.magic = client.magic; 284 c32.iocs = client.iocs [all...] |