Lines Matching full:rows
1098 TempRow *rows;
1132 TempRow rows[STACK_ROW_CAPACITY];
1232 tempTable.rows=rows;
1235 tempTable.rows=(TempRow *)uprv_malloc(count*sizeof(TempRow)+count*2);
1236 if(tempTable.rows==NULL) {
1242 tempTable.resort=(uint16_t *)(tempTable.rows+count);
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),
1279 oldIndex=tempTable.rows[i].sortIndex;
1292 oldIndex=tempTable.rows[i].sortIndex;
1298 oldIndex=tempTable.rows[i].sortIndex;
1305 if(tempTable.rows!=rows) {
1306 uprv_free(tempTable.rows);