Searched refs:indx (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/io/
H A Dbase64stream.cpp226 int indx = (int)((outBuf & 0x0003f000L) >> 12); local
227 int obyte = (int)base64encode[indx & 63];
230 indx = (int)((outBuf & 0x00000fc0L) >> 6);
231 obyte = (int)base64encode[indx & 63];
234 indx = (int)((outBuf & 0x0000003fL) );
235 obyte = (int)base64encode[indx & 63];
244 int indx = (int)((outBuf & 0x00000fc0L) >> 6); local
245 int obyte = (int)base64encode[indx & 63];
248 indx = (int)((outBuf & 0x0000003fL) );
249 obyte = (int)base64encode[indx
306 int indx = (int)((outBuf & 0x00fc0000L) >> 18); local
[all...]
/inkscape/src/trace/potrace/
H A Dinkscape-potrace.cpp550 int indx = (int) iMap->getPixel(iMap, col, row); local
551 if (indx == colorIndex) {

Completed in 24 milliseconds