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