• Home
  • Raw
  • Download

Lines Matching refs:tempTable

1130     TempAliasTable *tempTable=(TempAliasTable *)context;  in io_compareRows()  local
1131 const char *chars=tempTable->chars; in io_compareRows()
1133 …return (int32_t)uprv_strcmp(tempTable->stripForCompare(strippedLeft, chars+2*((const TempRow *)lef… in io_compareRows()
1134tempTable->stripForCompare(strippedRight, chars+2*((const TempRow *)right)->strIndex)); in io_compareRows()
1152 TempAliasTable tempTable; in ucnv_swapAliases() local
1247tempTable.chars=(const char *)(outTable+offsets[stringTableIndex]); /* sort by outCharset */ in ucnv_swapAliases()
1250 tempTable.rows=rows; in ucnv_swapAliases()
1251 tempTable.resort=resort; in ucnv_swapAliases()
1253 tempTable.rows=(TempRow *)uprv_malloc(count*sizeof(TempRow)+count*2); in ucnv_swapAliases()
1254 if(tempTable.rows==NULL) { in ucnv_swapAliases()
1260 tempTable.resort=(uint16_t *)(tempTable.rows+count); in ucnv_swapAliases()
1264 tempTable.stripForCompare=ucnv_io_stripASCIIForCompare; in ucnv_swapAliases()
1266 tempTable.stripForCompare=ucnv_io_stripEBCDICForCompare; in ucnv_swapAliases()
1285 tempTable.rows[i].strIndex=ds->readUInt16(p[i]); in ucnv_swapAliases()
1286 tempTable.rows[i].sortIndex=(uint16_t)i; in ucnv_swapAliases()
1289 uprv_sortArray(tempTable.rows, (int32_t)count, sizeof(TempRow), in ucnv_swapAliases()
1290 io_compareRows, &tempTable, in ucnv_swapAliases()
1297 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases()
1307 uint16_t *r=tempTable.resort; in ucnv_swapAliases()
1310 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases()
1316 oldIndex=tempTable.rows[i].sortIndex; in ucnv_swapAliases()
1323 if(tempTable.rows!=rows) { in ucnv_swapAliases()
1324 uprv_free(tempTable.rows); in ucnv_swapAliases()