Lines Matching refs:result
30 size_t result = c32rtomb(NULL, L'\0', NULL);
31 if (result != 1U) {
35 result = c32rtomb(NULL, L'h', NULL);
36 if (result != 1U) {
51 size_t result = c32rtomb(bytes, L'\0', NULL);
52 if (result != 1U) {
63 result = c32rtomb(bytes, L'h', NULL);
64 if (result != 1U) {
89 size_t result = c32rtomb(bytes, L'h', NULL);
90 if (result != 1U) {
98 result = c32rtomb(bytes, 0x00a2, NULL);
99 if (result != 2U) {
110 result = c32rtomb(bytes, 0x20ac, NULL);
111 if (result != 3U) {
125 result = c32rtomb(bytes, 0x24b62, NULL);
126 if (result != 4U) {
152 size_t result = c32rtomb(bytes, 0xffffffff, NULL);
153 if (result != (size_t)-1) {