Home | History | Annotate | Download | only in common

Lines Matching full:rows

1103     TempRow *rows;
1137 TempRow rows[STACK_ROW_CAPACITY];
1237 tempTable.rows=rows;
1240 tempTable.rows=(TempRow *)uprv_malloc(count*sizeof(TempRow)+count*2);
1241 if(tempTable.rows==NULL) {
1247 tempTable.resort=(uint16_t *)(tempTable.rows+count);
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),
1284 oldIndex=tempTable.rows[i].sortIndex;
1297 oldIndex=tempTable.rows[i].sortIndex;
1303 oldIndex=tempTable.rows[i].sortIndex;
1310 if(tempTable.rows!=rows) {
1311 uprv_free(tempTable.rows);