numBytes 21 content/public/android/java/src/org/chromium/content/browser/crypto/ByteArrayGenerator.java public byte[] getBytes(int numBytes) throws IOException, GeneralSecurityException { numBytes 25 content/public/android/java/src/org/chromium/content/browser/crypto/ByteArrayGenerator.java byte[] bytes = new byte[numBytes]; numBytes 29 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java public byte[] getBytes(int numBytes) throws IOException, GeneralSecurityException { numBytes 30 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java return getBytes(numBytes, (byte) 0); numBytes 39 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java public byte[] getBytes(int numBytes, byte startByte) { numBytes 40 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java byte[] bytes = new byte[numBytes]; numBytes 41 content/public/android/javatests/src/org/chromium/content/browser/crypto/CipherFactoryTest.java for (int i = 0; i < numBytes; ++i) { numBytes 119 media/base/android/java/src/org/chromium/media/MediaCodecBridge.java long presentationTimeMicroseconds, int numBytes) { numBytes 125 media/base/android/java/src/org/chromium/media/MediaCodecBridge.java mNumBytes = numBytes; numBytes 598 media/base/android/media_codec_bridge.cc int numBytes = base::checked_cast<int>(size); numBytes 605 media/base/android/media_codec_bridge.cc base::android::ToJavaByteArray(env, buffer, numBytes); numBytes 9886 net/third_party/nss/ssl/ssl3con.c PRInt32 numBytes = 0; numBytes 9918 net/third_party/nss/ssl/ssl3con.c numBytes = PR_Read(cf, pCertItem->data, info.size); numBytes 9921 net/third_party/nss/ssl/ssl3con.c if (numBytes != info.size) { numBytes 1485 third_party/liblouis/overrides/liblouis/compileTranslationTable.c int numBytes = 0; numBytes 1575 third_party/liblouis/overrides/liblouis/compileTranslationTable.c for (numBytes = MAXBYTES - 1; numBytes >= 0; numBytes--) numBytes 1576 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if (ch >= first0Bit[numBytes]) numBytes 1578 third_party/liblouis/overrides/liblouis/compileTranslationTable.c if (numBytes < 0) numBytes 1580 third_party/liblouis/overrides/liblouis/compileTranslationTable.c utf32 = ch & (0XFF - first0Bit[numBytes]); numBytes 1581 third_party/liblouis/overrides/liblouis/compileTranslationTable.c for (k = 0; k < numBytes; k++) numBytes 189 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java static void testBytes(int numBytes, long expectedCount) numBytes 191 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java testBytes(numBytes, expectedCount, 0, -1); numBytes 205 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java static void testBytes(int numBytes, long expectedCount, long start, long lim) numBytes 208 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java byte[] bytes = new byte[numBytes]; numBytes 211 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java lim = 1L << (numBytes * 8); numBytes 217 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java for (int i = 0; i < numBytes; i++) { numBytes 233 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java assertEquals(isRoundTrippable, Utf8.isValidUtf8(bytes, 0, numBytes)); numBytes 237 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java int i = rnd.nextInt(numBytes); numBytes 238 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java int j = rnd.nextInt(numBytes); numBytes 244 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java int state3 = Utf8.partialIsValidUtf8(state2, bytes, j, numBytes); numBytes 257 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java bs.substring(j, numBytes))); numBytes 260 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java ByteString[] byteStrings = { bs, bs.substring(0, numBytes), rope }; numBytes 265 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java x.partialIsValidUtf8(Utf8.COMPLETE, 0, numBytes)); numBytes 276 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java x.partialIsValidUtf8(state2, j, numBytes - j)); numBytes 278 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java x.substring(j, numBytes) numBytes 279 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java .partialIsValidUtf8(state2, 0, numBytes - j)); numBytes 284 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java RopeByteString.newInstanceForTest(bs, bs.substring(0, numBytes)); numBytes 314 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java int numBytes, long expectedCount, long start, long lim) numBytes 322 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java byte[] bytes = new byte[numBytes]; numBytes 323 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java int maxChars = (int) (decoder.maxCharsPerByte() * numBytes) + 1; numBytes 325 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java new char[(int) (decoder.maxCharsPerByte() * numBytes) + 1]; numBytes 333 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java lim = 1L << (numBytes * 8); numBytes 367 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java if (bytesLen != numBytes) { numBytes 370 third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java for (int i = 0; i < numBytes; i++) {