HomeSort by relevance Sort by last modified time
    Searched full:byte (Results 1126 - 1150 of 24897) sorted by null

<<41424344454647484950>>

  /prebuilts/go/darwin-x86/src/hash/fnv/
fnv_test.go 15 sum []byte
20 {[]byte{0x81, 0x1c, 0x9d, 0xc5}, ""},
21 {[]byte{0x05, 0x0c, 0x5d, 0x7e}, "a"},
22 {[]byte{0x70, 0x77, 0x2d, 0x38}, "ab"},
23 {[]byte{0x43, 0x9c, 0x2f, 0x4b}, "abc"},
27 {[]byte{0x81, 0x1c, 0x9d, 0xc5}, ""},
28 {[]byte{0xe4, 0x0c, 0x29, 0x2c}, "a"},
29 {[]byte{0x4d, 0x25, 0x05, 0xca}, "ab"},
30 {[]byte{0x1a, 0x47, 0xe9, 0x0b}, "abc"},
34 {[]byte{0xcb, 0xf2, 0x9c, 0xe4, 0x84, 0x22, 0x23, 0x25}, ""}
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_dragonfly_amd64.go 111 Pad_cgo_0 [4]byte
121 Pad_cgo_1 [4]byte
150 Addr [4]byte /* in_addr */
159 Addr [16]byte /* in6_addr */
201 Base *byte
206 Multiaddr [4]byte /* in_addr */
207 Interface [4]byte /* in_addr */
211 Multiaddr [16]byte /* in6_addr */
216 Name *byte
218 Pad_cgo_0 [4]byte
    [all...]
  /prebuilts/go/linux-x86/src/hash/fnv/
fnv_test.go 15 sum []byte
20 {[]byte{0x81, 0x1c, 0x9d, 0xc5}, ""},
21 {[]byte{0x05, 0x0c, 0x5d, 0x7e}, "a"},
22 {[]byte{0x70, 0x77, 0x2d, 0x38}, "ab"},
23 {[]byte{0x43, 0x9c, 0x2f, 0x4b}, "abc"},
27 {[]byte{0x81, 0x1c, 0x9d, 0xc5}, ""},
28 {[]byte{0xe4, 0x0c, 0x29, 0x2c}, "a"},
29 {[]byte{0x4d, 0x25, 0x05, 0xca}, "ab"},
30 {[]byte{0x1a, 0x47, 0xe9, 0x0b}, "abc"},
34 {[]byte{0xcb, 0xf2, 0x9c, 0xe4, 0x84, 0x22, 0x23, 0x25}, ""}
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
ztypes_dragonfly_amd64.go 111 Pad_cgo_0 [4]byte
121 Pad_cgo_1 [4]byte
150 Addr [4]byte /* in_addr */
159 Addr [16]byte /* in6_addr */
201 Base *byte
206 Multiaddr [4]byte /* in_addr */
207 Interface [4]byte /* in_addr */
211 Multiaddr [16]byte /* in6_addr */
216 Name *byte
218 Pad_cgo_0 [4]byte
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 126 byte[] clientToServer = clientToServerString.getBytes();
127 byte[] serverToClient = serverToClientString.getBytes();
183 byte[] clientFromServer = new byte[serverToClient.length];
189 byte[] serverFromClient = new byte[clientToServer.length];
388 private static final class SSLServerSessionIdCallable implements Callable<byte[]> {
393 @Override public byte[] call() throws Exception {
408 final Future<byte[]> future1 = executor.submit(new SSLServerSessionIdCallable(server1));
412 final byte[] clientSessionId1 = client1.getSession().getId()
    [all...]
  /external/emma/core/java12/com/vladium/util/
ByteArrayOStream.java 19 * the underlying byte array without a defensive clone and can also be converted
41 m_buf = new byte [initialCapacity];
53 byte [] mbuf = m_buf;
58 final byte [] newbuf = new byte [Math.max (mbuflen << 1, capacity)];
68 mbuf [pos] = (byte) b1;
69 mbuf [pos + 1] = (byte) b2;
77 byte [] mbuf = m_buf;
82 final byte [] newbuf = new byte [Math.max (mbuflen << 1, capacity)]
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduPart.java 94 static final byte[] DISPOSITION_FROM_DATA = "from-data".getBytes();
95 static final byte[] DISPOSITION_ATTACHMENT = "attachment".getBytes();
96 static final byte[] DISPOSITION_INLINE = "inline".getBytes();
118 private byte[] mPartData = null;
130 * Set part data. The data are stored as byte array.
134 public void setData(final byte[] data) {
143 public byte[] getData() {
158 * the data is stored as byte array.
171 public void setContentId(final byte[] contentId) {
185 final byte[] buffer = new byte[contentId.length + 2]
    [all...]
  /bionic/tools/relocation_packer/src/
sleb128.cc 42 // length. The least significant 7 bits of each byte hold 7 bits of data,
43 // and the most significant bit is set on each byte except the last. The
56 uint8_t byte = value & 127;
63 // The sign bit of byte is second high order bit.
64 const bool sign_bit = byte & 64;
68 byte |= 128;
69 encoding_.push_back(byte);
101 uint8_t byte; local
103 // Loop until we reach a byte with its high order bit clear.
105 byte = encoding_[cursor_++]
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 40 * IvParameterSpec(byte[] iv) constructor testing. Checks that
48 + "in the case of null byte array.");
52 byte[] iv = new byte[] { 1, 2, 3, 4, 5 };
60 * IvParameterSpec(byte[] iv) constructor testing. Checks that
68 + "in the case of null byte array.");
77 new IvParameterSpec(new byte[] { 1, 2, 3 }, 2, 2);
88 new IvParameterSpec(new byte[] { 1, 2, 3 }, -1, 1);
100 new IvParameterSpec(new byte[] {1, 2, 3}, 1, -2);
111 byte[] iv = new byte[] { 1, 2, 3, 4, 5 }
    [all...]
  /external/lzma/C/
Bcj2.c 36 const Byte *buf0, SizeT size0,
37 const Byte *buf1, SizeT size1,
38 const Byte *buf2, SizeT size2,
39 const Byte *buf3, SizeT size3,
40 Byte *outBuf, SizeT outSize)
45 const Byte *buffer, *bufferLim;
47 Byte prevByte = 0;
62 Byte b;
72 Byte b = buf0[inPos];
101 const Byte *v;
    [all...]
  /external/valgrind/memcheck/tests/solaris/
scalar_zone_defunct.stderr.exp 4 Syscall param zone_list_defunct(cmd) contains uninitialised byte(s)
7 Syscall param zone_list_defunct(uniqidlist) contains uninitialised byte(s)
10 Syscall param zone_list_defunct(numzones) contains uninitialised byte(s)
13 Syscall param zone(numzones) points to unaddressable byte(s)
20 Syscall param zone_list_defunct(cmd) contains uninitialised byte(s)
23 Syscall param zone_list_defunct(uniqidlist) contains uninitialised byte(s)
26 Syscall param zone(uniqidlist) points to unaddressable byte(s)
33 Syscall param zone_getattr_defunct(cmd) contains uninitialised byte(s)
36 Syscall param zone_getattr_defunct(uniqid) contains uninitialised byte(s)
39 Syscall param zone_getattr_defunct(attr) contains uninitialised byte(s
    [all...]
  /external/valgrind/memcheck/tests/x86-solaris/
scalar.stderr.exp 4 Syscall param fstatat64(fildes) contains uninitialised byte(s)
7 Syscall param fstatat64(path) contains uninitialised byte(s)
10 Syscall param fstatat64(buf) contains uninitialised byte(s)
13 Syscall param fstatat64(flag) contains uninitialised byte(s)
16 Syscall param fstatat64(path) points to unaddressable byte(s)
20 Syscall param fstatat64(buf) points to unaddressable byte(s)
27 Syscall param openat64(fildes) contains uninitialised byte(s)
30 Syscall param openat64(filename) contains uninitialised byte(s)
33 Syscall param openat64(flags) contains uninitialised byte(s)
36 Syscall param openat64(filename) points to unaddressable byte(s
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
IvParameterSpecTest.java 40 * IvParameterSpec(byte[] iv) constructor testing. Checks that
48 + "in the case of null byte array.");
52 byte[] iv = new byte[] {1, 2, 3, 4, 5};
60 * IvParameterSpec(byte[] iv) constructor testing. Checks that
68 + "in the case of null byte array.");
77 new IvParameterSpec(new byte[] {1, 2, 3}, 2, 2);
88 new IvParameterSpec(new byte[] {1, 2, 3}, -1, 1);
100 new IvParameterSpec(new byte[] {1, 2, 3}, 1, -2);
111 byte[] iv = new byte[] {1, 2, 3, 4, 5}
    [all...]
  /prebuilts/go/darwin-x86/src/compress/zlib/
reader_test.go 16 compressed []byte
17 dict []byte
28 []byte{0x78, 0x9c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
35 []byte{
46 []byte{0x78, 0x9f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
53 []byte{0x78, 0x9c, 0x03, 0x00, 0x00, 0x00, 0x00, 0xff},
60 []byte{0x78, 0x9c, 0x03, 0x00, 0x00, 0x00},
67 []byte{
77 []byte{
82 []byte{
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5.go 36 x [chunk]byte
61 func (d *digest) Write(p []byte) (nn int, err error) {
90 func (d0 *digest) Sum(in []byte) []byte {
97 func (d *digest) checkSum() [Size]byte {
100 var tmp [64]byte
111 tmp[i] = byte(len >> (8 * i))
119 var digest [Size]byte
121 digest[i*4] = byte(s)
122 digest[i*4+1] = byte(s >> 8
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1.go 35 x [chunk]byte
61 func (d *digest) Write(p []byte) (nn int, err error) {
84 func (d0 *digest) Sum(in []byte) []byte {
91 func (d *digest) checkSum() [Size]byte {
94 var tmp [64]byte
105 tmp[i] = byte(len >> (56 - 8*i))
113 var digest [Size]byte
115 digest[i*4] = byte(s >> 24)
116 digest[i*4+1] = byte(s >> 16
    [all...]
  /prebuilts/go/darwin-x86/test/
convert1.go 12 type Tbyte []byte
19 sb := []byte("hello")
29 _ = []byte(s)
38 _ = []byte(sb)
47 _ = []byte(sr) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
56 _ = []byte(si) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
65 _ = []byte(ts)
74 _ = []byte(tsb
    [all...]
  /prebuilts/go/linux-x86/src/compress/zlib/
reader_test.go 16 compressed []byte
17 dict []byte
28 []byte{0x78, 0x9c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
35 []byte{
46 []byte{0x78, 0x9f, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01},
53 []byte{0x78, 0x9c, 0x03, 0x00, 0x00, 0x00, 0x00, 0xff},
60 []byte{0x78, 0x9c, 0x03, 0x00, 0x00, 0x00},
67 []byte{
77 []byte{
82 []byte{
    [all...]
  /prebuilts/go/linux-x86/src/crypto/md5/
md5.go 36 x [chunk]byte
61 func (d *digest) Write(p []byte) (nn int, err error) {
90 func (d0 *digest) Sum(in []byte) []byte {
97 func (d *digest) checkSum() [Size]byte {
100 var tmp [64]byte
111 tmp[i] = byte(len >> (8 * i))
119 var digest [Size]byte
121 digest[i*4] = byte(s)
122 digest[i*4+1] = byte(s >> 8
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1.go 35 x [chunk]byte
61 func (d *digest) Write(p []byte) (nn int, err error) {
84 func (d0 *digest) Sum(in []byte) []byte {
91 func (d *digest) checkSum() [Size]byte {
94 var tmp [64]byte
105 tmp[i] = byte(len >> (56 - 8*i))
113 var digest [Size]byte
115 digest[i*4] = byte(s >> 24)
116 digest[i*4+1] = byte(s >> 16
    [all...]
  /prebuilts/go/linux-x86/test/
convert1.go 12 type Tbyte []byte
19 sb := []byte("hello")
29 _ = []byte(s)
38 _ = []byte(sb)
47 _ = []byte(sr) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
56 _ = []byte(si) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
65 _ = []byte(ts)
74 _ = []byte(tsb
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
eh4.s 34 .byte 0x1 # CIE Version
38 .byte 0x10 # CIE RA Column
40 .byte 0x1b # FDE Encoding (pcrel sdata4)
41 .byte 0xc # DW_CFA_def_cfa
44 .byte 0x90 # DW_CFA_offset, column 0x10
55 .byte 0x1 # DW_CFA_set_loc
57 .byte 0xe # DW_CFA_def_cfa_offset
65 .byte 0x1 # CIE Version
69 .byte 0x10 # CIE RA Column
71 .byte 0x1b # FDE Encoding (pcrel sdata4
    [all...]
  /external/boringssl/src/ssl/test/runner/
handshake_messages.go 10 raw []byte
13 random []byte
14 sessionId []byte
15 cookie []byte
26 secureRenegotiation []byte
73 func (m *clientHelloMsg) marshal() []byte {
152 x := make([]byte, 4+length)
181 z[0] = byte(extensionsLength >> 8)
182 z[1] = byte(extensionsLength)
192 z[0] = byte(extensionNextProtoNeg >> 8
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-cipher-1.7.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/plexus/plexus-cipher/1.7/
plexus-cipher-1.7.jar 

Completed in 2754 milliseconds

<<41424344454647484950>>