Lines Matching defs:count
1112 uint16_t i, count=0;
1120 if(count<13){
1122 if(offset != movedOffset[count]){
1123 log_err("ERROR: UTF8_APPEND_CHAR_UNSAFE failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
1124 count, movedOffset[count], offset);
1127 if(uprv_memcmp(str, result[count], size) !=0){
1128 log_err("ERROR: UTF8_APPEND_CHAR_UNSAFE failed for count=%d. \nExpected:", count);
1129 printUChars(result[count], size);
1136 if(offset != movedOffset[count]){
1137 log_err("ERROR: UTF8_APPEND_CHAR_SAFE failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
1138 count, movedOffset[count], offset);
1141 if(uprv_memcmp(str, result[count], size) !=0){
1142 log_err("ERROR: UTF8_APPEND_CHAR_SAFE failed for count=%d. \nExpected:", count);
1143 printUChars(result[count], size);
1157 if(offset != movedOffset[count]){
1158 log_err("ERROR: utf8_appendCharSafeBody() failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
1159 count, movedOffset[count], offset);
1162 if(uprv_memcmp(str, result[count], size) !=0){
1163 log_err("ERROR: utf8_appendCharSafeBody() failed for count=%d. \nExpected:", count);
1164 printUChars(result[count], size);
1171 count++;