Lines Matching refs:tempTable
1117 TempAliasTable *tempTable=(TempAliasTable *)context; in io_compareRows() local
1118 const char *chars=tempTable->chars; in io_compareRows()
1120 …return (int32_t)uprv_strcmp(tempTable->stripForCompare(strippedLeft, chars+2*((const TempRow *)lef… in io_compareRows()
1121 … tempTable->stripForCompare(strippedRight, chars+2*((const TempRow *)right)->strIndex)); in io_compareRows()
1139 TempAliasTable tempTable; in ucnv_swapAliases() local
1234 … tempTable.chars=(const char *)(outTable+offsets[stringTableIndex]); /* sort by outCharset */ in ucnv_swapAliases()
1237 tempTable.rows=rows; in ucnv_swapAliases()
1238 tempTable.resort=resort; in ucnv_swapAliases()
1240 tempTable.rows=(TempRow *)uprv_malloc(count*sizeof(TempRow)+count*2); in ucnv_swapAliases()
1241 if(tempTable.rows==NULL) { in ucnv_swapAliases()
1247 tempTable.resort=(uint16_t *)(tempTable.rows+count); in ucnv_swapAliases()
1251 tempTable.stripForCompare=ucnv_io_stripASCIIForCompare; in ucnv_swapAliases()
1253 tempTable.stripForCompare=ucnv_io_stripEBCDICForCompare; in ucnv_swapAliases()
1272 tempTable.rows[i].strIndex=ds->readUInt16(p[i]); in ucnv_swapAliases()
1273 tempTable.rows[i].sortIndex=(uint16_t)i; in ucnv_swapAliases()
1276 uprv_sortArray(tempTable.rows, (int32_t)count, sizeof(TempRow), in ucnv_swapAliases()
1277 io_compareRows, &tempTable, in ucnv_swapAliases()
1284 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases()
1294 uint16_t *r=tempTable.resort; in ucnv_swapAliases()
1297 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases()
1303 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases()
1310 if(tempTable.rows!=rows) { in ucnv_swapAliases()
1311 uprv_free(tempTable.rows); in ucnv_swapAliases()