Searched refs:haystackLength (Results 1 – 1 of 1) sorted by relevance
171 private static boolean containsBytes(byte[] haystack, int haystackLength, byte[] needle) { in containsBytes() argument172 Preconditions.checkArgument(haystackLength > 0); in containsBytes()175 outer: for (int i = 0; i <= haystackLength - needle.length; i++) { in containsBytes()