HomeSort by relevance Sort by last modified time
    Searched refs:bytes1 (Results 1 - 7 of 7) sorted by null

  /libcore/luni/src/test/java/libcore/java/text/
OldCollationKeyTest.java 55 byte[] bytes1 = collator.getCollationKey("12").toByteArray();
62 compareUnsignedByteArrays(bytes1, bytes2) < 0);
75 private int compareUnsignedByteArrays(byte[] bytes1, byte[] bytes2) {
76 int commonLength = Math.min(bytes1.length, bytes2.length);
79 int keyA = bytes1[i] & 0xFF;
89 if (bytes1.length < bytes2.length) {
91 } else if (bytes1.length > bytes2.length) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerKeyExchange.java 37 final byte[] bytes1; field in class:ServerKeyExchange
66 bytes1 = toUnsignedByteArray(this.par1);
70 length = 4 + bytes1.length + bytes2.length;
112 bytes1 = in.read(size);
113 par1 = new BigInteger(1, bytes1);
114 this.length = 2 + bytes1.length;
148 out.writeUint16(bytes1.length);
149 out.write(bytes1);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameDistance.java 64 public float getDistance(byte bytes1[], byte bytes2[]) {
67 if (bytes1.length > bytes2.length) {
68 array2 = bytes1;
72 array1 = bytes1;
161 if (bytes1[i] != bytes2[i]) {
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterOutputStreamTest.java 169 byte[] bytes1 = {10,20,30,40,50};
171 defaultDeflater.setInput(bytes1);
189 for(int i =0;i<bytes1.length; i++){
190 assertEquals(bytes1[i],result[i]);
202 assertEquals(bytes2[i],result[bytes1.length+i]);
  /packages/apps/Email/src/org/apache/james/mime4j/codec/
EncoderUtil.java 524 byte[] bytes1 = encode(part1, charset);
526 bytes1);
552 byte[] bytes1 = encode(part1, charset);
554 charset, bytes1);
  /external/chromium/third_party/icu/source/test/cintltst/
udatatst.c 1168 MappedData bytes1; member in struct:__anon3145
    [all...]
  /external/icu4c/test/cintltst/
udatatst.c 1175 MappedData bytes1; member in struct:__anon4212
    [all...]

Completed in 57 milliseconds