Home
last modified time | relevance | path

Searched refs:ipos (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
DObjectIdentifier.java512 int ipos = 0; in pack() local
517 while(ipos < bits) { in pack()
518 int count = iw - ipos%iw; // unpacked bits in current input byte in pack()
524 … (((in[ioffset+ipos/iw]+256) // locate the byte (+256 so that it's never negative) in pack()
525 >> (iw-ipos%iw-count)) // move to the end of a byte in pack()
528 ipos += count; // advance in pack()