Home | History | Annotate | Download | only in common

Lines Matching refs:tempTable

666 typedef struct TempTable {
673 } TempTable;
698 TempTable *pTempTable,
977 TempTable tempTable;
1007 tempTable.majorFormatVersion=pInfo->formatVersion[0];
1053 tempTable.localKeyLimit=keysTop<<2;
1055 tempTable.localKeyLimit=0;
1076 tempTable.resFlags=stackResFlags;
1078 tempTable.resFlags=(uint32_t *)uprv_malloc(resFlagsLength);
1079 if(tempTable.resFlags==NULL) {
1085 uprv_memset(tempTable.resFlags, 0, resFlagsLength);
1110 tempTable.keyChars=(const char *)outBundle; /* sort by outCharset */
1111 if(tempTable.majorFormatVersion>1 || maxTableLength<=STACK_ROW_CAPACITY) {
1112 tempTable.rows=rows;
1113 tempTable.resort=resort;
1115 tempTable.rows=(Row *)uprv_malloc(maxTableLength*sizeof(Row)+maxTableLength*4);
1116 if(tempTable.rows==NULL) {
1120 if(tempTable.resFlags!=stackResFlags) {
1121 uprv_free(tempTable.resFlags);
1125 tempTable.resort=(int32_t *)(tempTable.rows+maxTableLength);
1129 ures_swapResource(ds, inBundle, outBundle, rootRes, NULL, &tempTable, pErrorCode);
1135 if(tempTable.rows!=rows) {
1136 uprv_free(tempTable.rows);
1138 if(tempTable.resFlags!=stackResFlags) {
1139 uprv_free(tempTable.resFlags);