Home | History | Annotate | Download | only in common

Lines Matching refs:TempTable

647 typedef struct TempTable {
654 } TempTable;
679 TempTable *pTempTable,
958 TempTable tempTable;
988 tempTable.majorFormatVersion=pInfo->formatVersion[0];
1034 tempTable.localKeyLimit=keysTop<<2;
1036 tempTable.localKeyLimit=0;
1057 tempTable.resFlags=stackResFlags;
1059 tempTable.resFlags=(uint32_t *)uprv_malloc(resFlagsLength);
1060 if(tempTable.resFlags==NULL) {
1066 uprv_memset(tempTable.resFlags, 0, resFlagsLength);
1091 tempTable.keyChars=(const char *)outBundle; /* sort by outCharset */
1092 if(tempTable.majorFormatVersion>1 || maxTableLength<=STACK_ROW_CAPACITY) {
1093 tempTable.rows=rows;
1094 tempTable.resort=resort;
1096 tempTable.rows=(Row *)uprv_malloc(maxTableLength*sizeof(Row)+maxTableLength*4);
1097 if(tempTable.rows==NULL) {
1101 if(tempTable.resFlags!=stackResFlags) {
1102 uprv_free(tempTable.resFlags);
1106 tempTable.resort=(int32_t *)(tempTable.rows+maxTableLength);
1110 ures_swapResource(ds, inBundle, outBundle, rootRes, NULL, &tempTable, pErrorCode);
1116 if(tempTable.rows!=rows) {
1117 uprv_free(tempTable.rows);
1119 if(tempTable.resFlags!=stackResFlags) {
1120 uprv_free(tempTable.resFlags);