Lines Matching refs:temp
227 char* temp=NULL;
335 temp = (char*) uprv_malloc(sizeof(char)*destCap);
336 if(temp==NULL){
341 uprv_memmove(temp,dest,destLen);
344 dest=temp;
345 temp=NULL;
853 char temp[256] = {0};
869 len = itostr(temp, res->u.fBinaryValue.fData[i], 16, 2);
870 crc = computeCRC(temp, len, crc);
874 len = itostr(temp, crc, 10, 0);
875 printAttribute("crc", temp, len);
881 len = itostr(temp, res->u.fBinaryValue.fData[i], 16, 2);
882 write_utf8_file(out, UnicodeString(temp));
1015 char* temp = NULL;
1041 temp = originalFileName;
1042 originalFileName = (char *)uprv_malloc(sizeof(char)* (uprv_strlen(temp)+uprv_strlen(textExt)) + 1);
1043 uprv_memset(originalFileName, 0, sizeof(char)* (uprv_strlen(temp)+uprv_strlen(textExt)) + 1);
1044 uprv_strcat(originalFileName, temp);
1046 uprv_free(temp);
1047 temp = NULL;