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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DMemoryDataStore.java91 int skipLength = (int)Math.min(n, buf.length - position);
92 position += skipLength;
93 return skipLength;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUBinary.java627 public static void skipBytes(ByteBuffer bytes, int skipLength) { argument
628 if (skipLength > 0) {
629 bytes.position(bytes.position() + skipLength);

Completed in 122 milliseconds