HomeSort by relevance Sort by last modified time
    Searched full:input_buffer_pos (Results 1 - 1 of 1) sorted by null

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherInputStream.java 32 int input_buffer_pos = 0; field in class:CipherInputStream
43 input_buffer_pos = 0;
56 if (input_buffer_pos >= input_buffer_size)
64 int avail = input_buffer_size - input_buffer_pos;
67 System.arraycopy(input_buffer, input_buffer_pos, b, off, thiscopy);
68 input_buffer_pos += thiscopy;

Completed in 53 milliseconds