HomeSort by relevance Sort by last modified time
    Searched defs:BYTES (Results 1 - 19 of 19) sorted by null

  /external/guava/guava/src/com/google/common/hash/
MessageDigestHashFunction.java 78 @Override public Hasher putBytes(byte[] bytes) {
80 digest.update(bytes);
84 @Override public Hasher putBytes(byte[] bytes, int off, int len) {
86 checkPositionIndexes(off, off + len, bytes.length);
87 digest.update(bytes, off, len);
94 digest.update(scratch.array(), 0, Shorts.BYTES);
102 digest.update(scratch.array(), 0, Ints.BYTES);
110 digest.update(scratch.array(), 0, Longs.BYTES);
138 digest.update(scratch.array(), 0, Chars.BYTES);
  /external/guava/guava/src/com/google/common/primitives/
Chars.java 51 * The number of bytes required to represent a primitive {@code char}
54 public static final int BYTES = Character.SIZE / Byte.SIZE;
289 * stored in the first 2 bytes of {@code bytes}; equivalent to {@code
290 * ByteBuffer.wrap(bytes).getChar()}. For example, the input byte array
296 * @throws IllegalArgumentException if {@code bytes} has fewer than 2
300 public static char fromByteArray(byte[] bytes) {
301 checkArgument(bytes.length >= BYTES,
302 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
Doubles.java 49 * The number of bytes required to represent a primitive {@code double}
54 public static final int BYTES = Double.SIZE / Byte.SIZE;
Floats.java 49 * The number of bytes required to represent a primitive {@code float}
54 public static final int BYTES = Float.SIZE / Byte.SIZE;
Ints.java 51 * The number of bytes required to represent a primitive {@code int}
54 public static final int BYTES = Integer.SIZE / Byte.SIZE;
298 * the first 4 bytes of {@code bytes}; equivalent to {@code
299 * ByteBuffer.wrap(bytes).getInt()}. For example, the input byte array {@code
306 * @throws IllegalArgumentException if {@code bytes} has fewer than 4 elements
309 public static int fromByteArray(byte[] bytes) {
310 checkArgument(bytes.length >= BYTES,
311 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
Longs.java 48 * The number of bytes required to represent a primitive {@code long}
51 public static final int BYTES = Long.SIZE / Byte.SIZE;
272 * stored in the first 8 bytes of {@code bytes}; equivalent to {@code
273 * ByteBuffer.wrap(bytes).getLong()}. For example, the input byte array
280 * @throws IllegalArgumentException if {@code bytes} has fewer than 8
284 public static long fromByteArray(byte[] bytes) {
285 checkArgument(bytes.length >= BYTES,
286 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
Shorts.java 48 * The number of bytes required to represent a primitive {@code short}
51 public static final int BYTES = Short.SIZE / Byte.SIZE;
295 * stored in the first 2 bytes of {@code bytes}; equivalent to {@code
296 * ByteBuffer.wrap(bytes).getShort()}. For example, the input byte array
302 * @throws IllegalArgumentException if {@code bytes} has fewer than 2
306 public static short fromByteArray(byte[] bytes) {
307 checkArgument(bytes.length >= BYTES,
308 "array too small: %s < %s", bytes.length, BYTES)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Chars.java 49 * The number of bytes required to represent a primitive {@code char}
52 public static final int BYTES = Character.SIZE / Byte.SIZE;
Ints.java 46 * The number of bytes required to represent a primitive {@code int}
49 public static final int BYTES = Integer.SIZE / Byte.SIZE;
Longs.java 46 * The number of bytes required to represent a primitive {@code long}
49 public static final int BYTES = Long.SIZE / Byte.SIZE;
Shorts.java 46 * The number of bytes required to represent a primitive {@code short}
49 public static final int BYTES = Short.SIZE / Byte.SIZE;
  /external/oprofile/libop/
op_xml_out.h 43 BYTES_TABLE, BYTES,
  /external/mksh/src/
funcs.c     [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 

Completed in 288 milliseconds