Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DExifInterface.java4313 private boolean containsMatch(byte[] mainBytes, byte[] findBytes) { in containsMatch() argument
4314 for (int i = 0; i < mainBytes.length - findBytes.length; i++) { in containsMatch()
4315 for (int j = 0; j < findBytes.length; j++) { in containsMatch()
4316 if (mainBytes[i + j] != findBytes[j]) { in containsMatch()
4319 if (j == findBytes.length - 1) { in containsMatch()