Lines Matching refs:u_memchr32
297 findPtr = u_memchr32(dataTable[i][j], 0, dataSize);
299 log_err("u_memchr32 can't find NULL in the string\n");
309 findPtr = u_memchr32(dataTable[i][j], 0x005F, dataSize);
311 log_err("u_memchr32 can't find '_' in the string\n");
313 findPtr = u_memchr32(dataTable[i][j], 0xFFFD, dataSize);
335 if(u_memchr32(s, 0xd841, 9)!=(s+3) || u_memchr32(s, 0xdc02, 9)!=(s+5)) {
336 log_err("error: u_memchr32(surrogate) finds a partial supplementary code point\n");
727 first!=u_memchr32(s, nul, LENGTHOF(s)) ||
759 first!=u_memchr32(s+1, a, 9) ||
783 NULL!=u_memchr32(s+1, b, 9) ||
805 NULL!=u_memchr32(s+1, ill, 9) ||
818 first!=u_memchr32(s+1, lead, 9) ||
843 first!=u_memchr32(s+1, trail, 9) ||
867 first!=u_memchr32(s+1, supp, 9) ||
886 NULL!=u_memchr32(s+1, supp, 1) ||
902 NULL!=u_memchr32(s+1, supp2, 9) ||
1068 result=u_memchr32(temp, (UChar32)0x20402, 7);
1070 log_err("There is an error in u_memchr32() Expected match at position 5 Got %ld (pointer 0x%lx)\n", result-temp, result);
1072 result=u_memchr32(temp, (UChar32)0x20402, 6);
1074 log_err("There is an error in u_memchr32() Expected no match Got %ld (pointer 0x%lx)\n", result-temp, result);
1076 result=u_memchr32(temp, (UChar32)0x20402, 1);
1078 log_err("There is an error in u_memchr32() Expected no match Got %ld (pointer 0x%lx)\n", result-temp, result);
1080 result=u_memchr32(temp, (UChar32)0xfc00, 8);
1082 log_err("There is an error in u_memchr32() Expected match at position 7 Got %ld (pointer 0x%lx)\n", result-temp, result);