Searched refs:nc (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/svg/ |
H A D | svg-color-test.h | 41 unsigned const nc = G_N_ELEMENTS(components); local 42 for (unsigned i = nc*nc*nc; i--;) { 46 unsigned const component = components[tmp % nc]; 48 tmp /= nc;
|
/inkscape/share/extensions/ |
H A D | render_barcode_datamatrix.py | 102 data_nrow, data_ncol, reg_row, reg_col, nd, nc, inter = get_parameters( nrow, ncol ) 110 codewords = get_codewords( text, nd, nc, inter, size144 ) 126 # nc number of ECC codewords per reed-solomon block 213 def get_codewords( text, nd, nc, inter, size144 ): 222 data_blocks = reed_solomon(data_blocks, nd, nc) #generate and append the Reed-Solomon codewords 224 data_blocks = combine_interleaved(data_blocks, inter, nd, nc, False) #concatenate Reed-Solomon blocks bound for the same datamatrix 234 nc = 62 237 block1 = reed_solomon(block1, nd, nc) #generate and append the Reed-Solomon codewords 241 nc = 62 244 block2 = reed_solomon(block2, nd, nc) #generat [all...] |
H A D | render_alphabetsoup.py | 73 nc = [] 75 nc.append(['M', last[1][-2:]]) 80 nc.append([last[0], last[1][2:4] + last[1][:2] + this[1][-2:]]) 82 nc.append([last[0], this[1][-2:]]) 84 return nc
|
/inkscape/src/2geom/ |
H A D | polynomial.h | 171 int nc = size() - 1; local 175 for(int i = nc -1; i >= 0; i--) { 176 int nnd = std::min(nd, nc-i);
|
H A D | affine.cpp | 443 Coord nc[6]; local 446 nc[a + b] = _c[a] * o._c[b] + _c[a + 1] * o._c[b + 2]; 450 _c[a] = nc[a];
|
Completed in 75 milliseconds