Lines Matching refs:rows

51       int rows = 3;  in find_wrong_parameters()  local
53 initRowIndex(rows, rowLength); in find_wrong_parameters()
63 int rows = 1; in find_small() local
65 initRowIndex(rows, rowLength); in find_small()
70 rows = 2; in find_small()
72 initRowIndex(rows, rowLength); in find_small()
77 rows = 3; in find_small()
79 initRowIndex(rows, rowLength); in find_small()
85 rows = 1; in find_small()
87 initRowIndex(rows, rowLength); in find_small()
97 int rows = 1; in find_start_0() local
99 initRowIndex(rows, rowLength); in find_start_0()
108 rows = 2; in find_start_0()
110 initRowIndex(rows, rowLength); in find_start_0()
122 rows = 3; in find_start_0()
124 initRowIndex(rows, rowLength); in find_start_0()
143 int rows = 3; in find_start_n() local
145 initRowIndex(rows, rowLength); in find_start_n()
160 int rows = 1; in split_wrong_parameters() local
162 initRowIndex(rows, rowLength); in split_wrong_parameters()
174 int rows = 1; in split_small() local
176 initRowIndex(rows, rowLength); in split_small()
184 rows = 2; in split_small()
186 initRowIndex(rows, rowLength); in split_small()
198 rows = 3; in split_small()
200 initRowIndex(rows, rowLength); in split_small()
209 rows = 1; in split_small()
211 initRowIndex(rows, rowLength); in split_small()
219 rows = 2; in split_small()
221 initRowIndex(rows, rowLength); in split_small()
234 rows = 2; in split_small()
236 initRowIndex(rows, rowLength); in split_small()
248 rows = 1; in split_small()
250 initRowIndex(rows, rowLength); in split_small()
258 int rows = 3; in split_into_1() local
260 int bytes = rows * rowLength; in split_into_1()
261 initRowIndex(rows, rowLength); in split_into_1()
262 QVector<AsciiFileData> c = buf.splitFile(rows * rowLength, idx, 0, bytes); in split_into_1()
268 c = buf.splitFile(rows * rowLength, idx, 10, bytes); in split_into_1()
276 int rows = 3; in split_into_3() local
278 int bytes = rows * rowLength; in split_into_3()
279 initRowIndex(rows, rowLength); in split_into_3()
290 int rows = 999; in split() local
292 int bytes = rows * rowLength; in split()
293 initRowIndex(rows, rowLength); in split()
307 QCOMPARE(rowsRead, rows); in split()
313 int rows = 20; in split_equal_chunkSize_is_bytesToRead() local
316 int bytesToRead = (rows - offset) * rowLength; in split_equal_chunkSize_is_bytesToRead()
317 initRowIndex(rows, rowLength); in split_equal_chunkSize_is_bytesToRead()
323 QCOMPARE(c[0].rowsRead(), rows - offset); in split_equal_chunkSize_is_bytesToRead()
330 int rows = 1; in useOneWindowWithChunks_small() local
332 initRowIndex(rows, rowLength); in useOneWindowWithChunks_small()
338 rows = 2; in useOneWindowWithChunks_small()
340 initRowIndex(rows, rowLength); in useOneWindowWithChunks_small()
346 rows = 2; in useOneWindowWithChunks_small()
348 initRowIndex(rows, rowLength); in useOneWindowWithChunks_small()
354 rows = 3; in useOneWindowWithChunks_small()
356 initRowIndex(rows, rowLength); in useOneWindowWithChunks_small()
365 int rows = 1000; in useOneWindowWithChunks() local
367 int bytes = rows * rowLength; in useOneWindowWithChunks()
368 initRowIndex(rows, rowLength); in useOneWindowWithChunks()
394 int rows = 1; in useSlidingWindow_small() local
396 initRowIndex(rows, rowLength); in useSlidingWindow_small()
403 rows = 2; in useSlidingWindow_small()
405 initRowIndex(rows, rowLength); in useSlidingWindow_small()
417 int rows = 1000; in useSlidingWindow() local
419 int bytes = rows * rowLength; in useSlidingWindow()
420 initRowIndex(rows, rowLength); in useSlidingWindow()
427 rows = 999; in useSlidingWindow()
429 bytes = rows * rowLength; in useSlidingWindow()
445 QCOMPARE(rowsRead, rows); in useSlidingWindow()
453 int rows = 1; in useSlidingWindowWithChunks_small() local
455 int bytes = rows * rowLength; in useSlidingWindowWithChunks_small()
456 initRowIndex(rows, rowLength); in useSlidingWindowWithChunks_small()
463 rows = 3; in useSlidingWindowWithChunks_small()
465 bytes = rows * rowLength; in useSlidingWindowWithChunks_small()
466 initRowIndex(rows, rowLength); in useSlidingWindowWithChunks_small()
473 rows = 3; in useSlidingWindowWithChunks_small()
475 bytes = rows * rowLength; in useSlidingWindowWithChunks_small()
476 initRowIndex(rows, rowLength); in useSlidingWindowWithChunks_small()
482 rows = 12; in useSlidingWindowWithChunks_small()
484 bytes = rows * rowLength; in useSlidingWindowWithChunks_small()
485 initRowIndex(rows, rowLength); in useSlidingWindowWithChunks_small()
511 int rows = 1000; in useSlidingWindowWithChunks() local
513 int bytes = rows * rowLength; in useSlidingWindowWithChunks()
514 initRowIndex(rows, rowLength); in useSlidingWindowWithChunks()
529 void initRowIndex(int rows, int rowLength) in initRowIndex() argument
532 idx.resize(rows + 1); in initRowIndex()
533 for (int i = 0; i < rows; i++) { in initRowIndex()
536 idx[rows] = rows * rowLength; in initRowIndex()