Searched refs:cw (Results 1 – 2 of 2) sorted by relevance
/picolibc-latest/newlib/libm/machine/x86/ |
D | fenv.c | 83 unsigned short cw, old_cw; in feenableexcept() local 95 cw = old_cw & ~excepts; in feenableexcept() 99 __asm__ volatile ("fldcw %0" :: "m" (cw)); in feenableexcept() 119 unsigned short cw, old_cw; in fedisableexcept() local 131 cw = old_cw | excepts; in fedisableexcept() 135 __asm__ volatile ("fldcw %0" :: "m" (cw)); in fedisableexcept() 151 unsigned short cw; in fegetexcept() local 154 __asm__ volatile ("fnstcw %0" : "=m" (cw) : ); in fegetexcept() 157 return (~cw) & FE_ALL_EXCEPT; in fegetexcept() 383 unsigned short cw; in fegetround() local [all …]
|
/picolibc-latest/test/libc-testsuite/ |
D | sscanf.c | 75 wchar_t aw[100], bw[100], cw[100]; in test_sscanf() local 91 (void) cw; in test_sscanf() 154 memset(cw, 0, sizeof(cw)); in test_sscanf() 155 … TEST(i, sscanf("㌰ello, ✕orld\n", "%6lc %5lc%lc", aw, bw, cw), 3, "only %d fields, expected %d"); in test_sscanf() 158 TEST_WS(cw, L"\n", L""); in test_sscanf() 202 memset(cw, 0, sizeof(cw)); in test_sscanf() 203 …TEST(i, swscanf(L"㌰ello, ✕orld\n", L"%6lc %5lc%lc", aw, bw, cw), 3, "only %d fields, expected %d"); in test_sscanf() 206 TEST_WS(cw, L"\n", L""); in test_sscanf()
|