Home | History | Annotate | Download | only in libapdu

Lines Matching defs:it

40     auto it = mCommand.begin();
41 *it++ = cla;
42 *it++ = ins;
43 *it++ = p1;
44 *it++ = p2;
49 *it++ = 0;
50 *it++ = 0xff & (lc >> 8);
52 *it++ = 0xff & lc;
53 mDataBegin = it;
54 it += lc;
55 mDataEnd = it;
64 *it++ = 0;
67 *it++ = (isLeMax ? 0 : 0xff & (le >> 8));
68 *it++ = (isLeMax ? 0 : 0xff & le);
70 *it++ = (le == shortLeMax ? 0 : 0xff & le);