Home | History | Annotate | Download | only in common

Lines Matching refs:tempTable

1112     TempAliasTable *tempTable=(TempAliasTable *)context;
1113 const char *chars=tempTable->chars;
1115 return (int32_t)uprv_strcmp(tempTable->stripForCompare(strippedLeft, chars+2*((const TempRow *)left)->strIndex),
1116 tempTable->stripForCompare(strippedRight, chars+2*((const TempRow *)right)->strIndex));
1134 TempAliasTable tempTable;
1229 tempTable.chars=(const char *)(outTable+offsets[stringTableIndex]); /* sort by outCharset */
1232 tempTable.rows=rows;
1233 tempTable.resort=resort;
1235 tempTable.rows=(TempRow *)uprv_malloc(count*sizeof(TempRow)+count*2);
1236 if(tempTable.rows==NULL) {
1242 tempTable.resort=(uint16_t *)(tempTable.rows+count);
1246 tempTable.stripForCompare=ucnv_io_stripASCIIForCompare;
1248 tempTable.stripForCompare=ucnv_io_stripEBCDICForCompare;
1267 tempTable.rows[i].strIndex=ds->readUInt16(p[i]);
1268 tempTable.rows[i].sortIndex=(uint16_t)i;
1271 uprv_sortArray(tempTable.rows, (int32_t)count, sizeof(TempRow),
1272 io_compareRows, &tempTable,
1279 oldIndex=tempTable.rows[i].sortIndex;
1286 * temporary array (tempTable.resort)
1289 uint16_t *r=tempTable.resort;
1292 oldIndex=tempTable.rows[i].sortIndex;
1298 oldIndex=tempTable.rows[i].sortIndex;
1305 if(tempTable.rows!=rows) {
1306 uprv_free(tempTable.rows);