Lines Matching refs:rows
41 # 2-dimension vector containing ROWS rows and COLUMNS columns of elements
45 # "{{BYTE <repeats COLUMNS times>} <repeats ROWS times>}".
47 proc 2d_array_value_pattern { byte rows columns } {
52 if {$rows > 1} {
53 append data " <repeats $rows times>"
93 # Return an initializer string for a 2-dimension vector with ROWS rows and
100 proc initialize_2d_array { name byte rows columns } {
104 if {[expr $rows * $columns] <= 256} {
107 for {set row 0} {$row < $rows} {incr row} {
122 if {[expr $row + 1] < $rows} {
136 for {set row 0} {$row < $rows} {incr row} {