Searched refs:BYTES (Results 1 - 25 of 51) sorted by relevance

123

/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy33 final byte[] BYTES = "abc 123 %^&".getBytes()
34 InputStream input = new ByteArrayInputStream(BYTES)
35 assert IoUtil.readBytes(input) == BYTES
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/core/util/
H A DIoUtilTest.groovy39 final byte[] BYTES = "abc 123 %^&".getBytes()
40 InputStream input = new ByteArrayInputStream(BYTES)
41 assert IoUtil.readBytes(input) == BYTES
/external/guava/guava/src/com/google/common/hash/
H A DAbstractByteHasher.java96 return update(Shorts.BYTES);
102 return update(Ints.BYTES);
108 return update(Longs.BYTES);
114 return update(Chars.BYTES);
H A DMurmur3_32HashFunction.java88 return fmix(h1, Ints.BYTES);
101 return fmix(h1, Longs.BYTES);
122 return fmix(h1, Chars.BYTES * input.length());
/external/jetty/src/java/org/eclipse/jetty/http/
H A DHttpHeaderValues.java44 BYTES="bytes", field in class:HttpHeaderValues
72 BYTES_BUFFER=CACHE.add(BYTES,BYTES_ORDINAL),
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieMapTest.java123 checkGet(unicodeTestMap, TrieMap.Style.BYTES);
149 timeIteration(unicodeTestMap, comparisonTime, Style.BYTES, 5);
199 checkContents(unicodeTestMap, Style.BYTES);
235 checkSearch(Style.BYTES);
284 timeBuilding(unicodeTestMap, comparisonTime, Style.BYTES, Option.SMALL, 20);
285 timeBuilding(unicodeTestMap, comparisonTime, Style.BYTES, Option.FAST, 20);
335 checkSize(size, Style.BYTES, Option.SMALL, 0.20);
336 checkSize(size, Style.BYTES, Option.FAST, 0.20);
396 timeGet(keys, unicodeTestMap, comparisonTime, Style.BYTES, 3);
H A DTrieMap.java34 BYTES, CHARS enum constant in enum:TrieMap.Style
61 Builder<V> result = style == Style.BYTES ? new BytesTrieMap.BytesBuilder<V>()
72 Builder<V> result = style == Style.BYTES ? new BytesTrieMap.BytesBuilder<V>()
/external/nanopb-c/tests/backwards_compatibility/
H A Dalltypes_legacy.c53 PB_FIELD( 15, BYTES , REQUIRED, STATIC, AllTypes, req_bytes, req_string, 0),
70 PB_FIELD( 35, BYTES , REPEATED, STATIC, AllTypes, rep_bytes, rep_string, 0),
87 PB_FIELD( 55, BYTES , OPTIONAL, STATIC, AllTypes, opt_bytes, opt_string, &AllTypes_opt_bytes_default),
/external/guava/guava/src/com/google/common/primitives/
H A DChars.java58 public static final int BYTES = Character.SIZE / Byte.SIZE; field in class:Chars
311 checkArgument(bytes.length >= BYTES,
312 "array too small: %s < %s", bytes.length, BYTES);
H A DShorts.java57 public static final int BYTES = Short.SIZE / Byte.SIZE; field in class:Shorts
319 checkArgument(bytes.length >= BYTES,
320 "array too small: %s < %s", bytes.length, BYTES);
H A DInts.java59 public static final int BYTES = Integer.SIZE / Byte.SIZE; field in class:Ints
321 checkArgument(bytes.length >= BYTES,
322 "array too small: %s < %s", bytes.length, BYTES);
H A DLongs.java56 public static final int BYTES = Long.SIZE / Byte.SIZE; field in class:Longs
290 checkArgument(bytes.length >= BYTES,
291 "array too small: %s < %s", bytes.length, BYTES);
/external/mesa3d/src/mesa/main/
H A Dimports.h52 /** Allocate \p BYTES bytes */
53 #define MALLOC(BYTES) malloc(BYTES)
54 /** Allocate and zero \p BYTES bytes */
55 #define CALLOC(BYTES) calloc(1, BYTES)
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DWireFormat.java125 BYTES (JavaType.BYTE_STRING, WIRETYPE_LENGTH_DELIMITED) { method in enum:WireFormat.FieldType

Completed in 1040 milliseconds

123