Home | History | Annotate | Download | only in i2c

Lines Matching defs:position

270 	size_t position;
299 for(position = 0; position < fwsize; position++) {
300 crc = nxt2k_crc_ccit(crc, blob[position]);
319 position = 0;
323 while ( position < fwsize ) {
324 xfercnt = fwsize - position > 255 ? 255 : fwsize - position;
325 nxt2k_writedata(nxt, 0x2c, &blob[position], xfercnt);
326 position += xfercnt;