Lines Matching full:temp
103 UChar temp[512];
121 temp[0] = 0;
122 temp[7] = 0xA4; /* Mark the end */
123 u_memcpy(temp,dataTable[i][j], 7);
125 if(temp[7] != 0xA4)
127 if(u_memcmp(temp, dataTable[i][j], 7)!=0)
149 temp[7] = 0;
150 u_memcpy(temp,nullTemp, 7);
151 if(u_memcmp(temp, nullTemp, 7)!=0 || temp[7]!=0)
157 temp[i] = (UChar)i;
159 u_memmove(temp + 1, temp, 7);
160 if(temp[0] != 0) {
164 if(temp[i] != (i - 1)) {
176 temp[0] = 0;
177 u_strcpy(temp,dataTable[i][j]);
179 if(u_strcmp(temp,dataTable[i][j])!=0)
190 u_uastrcpy(temp, "");
191 u_strcpy(temp,dataTable[i][j]);
192 u_strcat(temp,dataTable[i+1][j]);
193 if(u_strcmp(temp,dataTable[i+2][j])!=0)
213 u_uastrcpy(temp,"");
215 if(u_strcmp(u_strncat(temp,dataTable[i+2][j],k),dataTable[i][j])!=0)
224 u_strncpy(temp, dataTable[i][j],k);
225 temp[k] = 0xa4;
227 if(u_strncmp(temp, dataTable[i][j],k)!=0)
230 if(temp[k] != 0xa4)
233 u_memset(temp, 0x3F, (sizeof(temp) / sizeof(UChar)) - 1);
234 u_uastrncpy(temp, raw[i][j], k-1);
235 if(u_strncmp(temp, dataTable[i][j],k-1)!=0)
238 if(temp[k-1] != 0x3F)
241 u_memset(temp, 0x3F, (sizeof(temp) / sizeof(UChar)) - 1);
242 u_uastrncpy(temp, raw[i][j], k+1);
243 if(u_strcmp(temp, dataTable[i][j])!=0)
246 if(temp[k] != 0)
249 u_memset(temp, 0x3F, (sizeof(temp) / sizeof(UChar)) - 1);
250 u_uastrncpy(temp, raw[i][j], k);
251 if(u_strncmp(temp, dataTable[i][j], k)!=0)
254 if(temp[k] != 0x3F)
351 u_uastrcpy(temp, tokString);
354 ptr = u_strtok_r(temp, delimBuf, &state);
399 u_uastrcpy(temp, tokString);
402 if (ptr == NULL || u_strcmp(ptr, temp) != 0) {
967 UChar temp[40];
976 u_uastrcpy(temp, "abc");
977 if(u_strcmp(temp, uchars) != 0) {
978 log_err("There is an error in u_uastrcpy() Expected %s Got %s\n", austrdup(uchars), austrdup(temp));
981 temp[0] = 0xFB; /* load garbage into it */
982 temp[1] = 0xFB;
983 temp[2] = 0xFB;
984 temp[3] = 0xFB;
986 u_uastrncpy(temp, "abcabcabc", 3);
987 if(u_strncmp(uchars, temp, 3) != 0){
988 log_err("There is an error in u_uastrncpy() Expected %s Got %s\n", austrdup(uchars), austrdup(temp));
990 if(temp[3] != 0xFB) {
999 temp[0] = 0x0061;
1000 temp[1] = 0x0062;
1001 temp[2] = 0x0063;
1002 temp[3] = 0x0061;
1003 temp[4] = 0x0062;
1004 temp[5] = 0x0063;
1005 temp[6] = 0x0000;
1007 u_austrncpy(charOut, temp, 3);
1009 log_err("There is an error in u_austrncpy() Expected %s Got %s\n", austrdup(uchars), austrdup(temp));
1017 temp[0]=0x42;
1018 temp[1]=0x62;
1019 temp[2]=0x62;
1020 temp[3]=0x63;
1021 temp[4]=0xd841;
1022 temp[5]=0xd841;
1023 temp[6]=0xdc02;
1024 temp[7]=0;
1025 result=u_strchr(temp, (UChar)0x62);
1026 if(result != temp+1){
1027 log_err("There is an error in u_strchr() Expected match at position 1 Got %ld (pointer 0x%lx)\n", result-temp, result);
1034 result=u_strstr(temp, subString);
1035 if(result != temp+2){
1036 log_err("There is an error in u_strstr() Expected match at position 2 Got %ld (pointer 0x%lx)\n", result-temp, result);
1038 result=u_strstr(temp, subString+2); /* subString+2 is an empty string */
1039 if(result != temp){
1040 log_err("There is an error in u_strstr() Expected match at position 0 Got %ld (pointer 0x%lx)\n", result-temp, result);
1042 result=u_strstr(subString, temp);
1049 result=u_strchr32(temp, (UChar32)0x62);
1050 if(result != temp+1){
1051 log_err("There is an error in u_strchr32() Expected match at position 1 Got %ld (pointer 0x%lx)\n", result-temp, result);
1053 result=u_strchr32(temp, (UChar32)0xfb);
1057 result=u_strchr32(temp, (UChar32)0x20402);
1058 if(result != temp+5){
1059 log_err("There is an error in u_strchr32() Expected match at position 5 Got %ld (pointer 0x%lx)\n", result-temp, result);
1062 temp[7]=0xfc00;
1063 result=u_memchr32(temp, (UChar32)0x20402, 7);
1064 if(result != temp+5){
1065 log_err("There is an error in u_memchr32() Expected match at position 5 Got %ld (pointer 0x%lx)\n", result-temp, result);
1067 result=u_memchr32(temp, (UChar32)0x20402, 6);
1069 log_err("There is an error in u_memchr32() Expected no match Got %ld (pointer 0x%lx)\n", result-temp, result);
1071 result=u_memchr32(temp, (UChar32)0x20402, 1);
1073 log_err("There is an error in u_memchr32() Expected no match Got %ld (pointer 0x%lx)\n", result-temp, result);
1075 result=u_memchr32(temp, (UChar32)0xfc00, 8);
1076 if(result != temp+7){
1077 log_err("There is an error in u_memchr32() Expected match at position 7 Got %ld (pointer 0x%lx)\n", result-temp, result);