• Home
  • Raw
  • Download

Lines Matching refs:utf32_buf

151 	UTF32 utf32_buf[2], utf32_result[2];  in test02()  local
161 utf32_buf[0] = i; utf32_buf[1] = 0; in test02()
167 utf32SourceStart = utf32_buf; utf32TargetStart = utf32_result; in test02()
174 …result = ConvertUTF32toUTF16((const UTF32 **) &utf32SourceStart, &(utf32_buf[1]), &utf16TargetStar… in test02()
178 …default: fprintf(stderr, "Test02A fatal error: result %d for input %08x\n", result, utf32_buf[0]);… in test02()
188 i, utf32_buf[0], utf16_buf[0], utf16_buf[1], result); in test02()
205 …default: fprintf(stderr, "Test02B fatal error: result %d for input %08x\n", result, utf32_buf[0]);… in test02()
213 i, utf32_buf[0], utf16_buf[0], utf16_buf[1], utf8_buf, result); in test02()
229 i, utf32_buf[0], utf16_buf[0], utf16_buf[1], utf8_buf, result); in test02()
239 utf32SourceStart = utf32_buf; utf32TargetStart = utf32_result; in test02()
248 …default: fprintf(stderr, "Test02C fatal error: result %d for input %08x\n", result, utf32_buf[0]);… in test02()
256 i, utf32_buf[0], utf8_buf, utf16_buf[0], utf16_buf[1], result); in test02()
262 utf32_buf[0], utf16_buf[0], utf16_buf[1], utf16_result[0], utf16_result[1]); in test02()
278 …default: fprintf(stderr, "Test02D fatal error: result %d for input %08x\n", result, utf32_buf[0]);… in test02()
286 i, utf32_buf[0], utf16_buf[0], utf16_buf[1], utf32_result[0], result); in test02()
293 if (utf32_buf[0] != utf32_result[0]) { in test02()
294 … %d: utf32 input %08x; trip output %08x (utf_16buf is %04x,%04x)\n", i, utf32_buf[0], utf32_result… in test02()
313 UTF32 utf32_buf[2], utf32_result[2]; in test03() local
324 utf32_buf[0] = i; utf32_buf[1] = 0; in test03()
328 utf32SourceStart = utf32_buf; utf32TargetStart = utf32_result; in test03()
334 …result = ConvertUTF32toUTF8((const UTF32 **) &utf32SourceStart, &(utf32_buf[1]), & utf8TargetStart… in test03()
336 …default: fprintf(stderr, "Test03A fatal error: result %d for input %08x\n", result, utf32_buf[0]);… in test03()
344 i, utf32_buf[0], utf8_buf, result); in test03()
353 i, utf32_buf[0], utf8_buf, result); in test03()
363 utf32SourceStart = utf32_buf; utf32TargetStart = utf32_result; in test03()
371 …default: fprintf(stderr, "Test03B fatal error: result %d for input %08x\n", result, utf32_buf[0]);… in test03()
379 i, utf32_buf[0], utf8_buf, utf32_result[0], result); in test03()
386 if (utf32_buf[0] != utf32_result[0]) { in test03()
387 …printf("Test03C for %d: utf32 input %08x; utf8 buf %s; trip output %08x\n", i, utf32_buf[0], utf8_… in test03()
403 UTF32 utf32_buf[2]; in test04() local
412 utf32_buf[0] = i; utf32_buf[1] = 0; in test04()
415 utf32SourceStart = utf32_buf; in test04()
421 …result = ConvertUTF32toUTF8((const UTF32 **) &utf32SourceStart, &(utf32_buf[1]), & utf8TargetStart… in test04()
423 fprintf(stderr, "Test04A fatal error: result %d for input %08x\n", result, utf32_buf[0]); exit(1); in test04()