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

<<41424344454647484950>>

  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
SendConf.java 48 public byte[] getMessageId() {
58 public void setMessageId(byte[] value) {
86 public byte[] getTransactionId() {
96 public void setTransactionId(byte[] value) {
103 * public byte[] getContentLocation() {return null;}
104 * public void setContentLocation(byte[] value) {}
109 * public byte getStoreStatus() {return 0x00;}
110 * public void setStoreStatus(byte value) {}
112 * public byte[] getStoreStatusText() {return null;}
113 * public void setStoreStatusText(byte[] value) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
SendConf.java 50 public byte[] getMessageId() {
60 public void setMessageId(byte[] value) {
88 public byte[] getTransactionId() {
98 public void setTransactionId(byte[] value) {
105 * public byte[] getContentLocation() {return null;}
106 * public void setContentLocation(byte[] value) {}
111 * public byte getStoreStatus() {return 0x00;}
112 * public void setStoreStatus(byte value) {}
114 * public byte[] getStoreStatusText() {return null;}
115 * public void setStoreStatusText(byte[] value) {
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug296.go 10 m(a, b, c, d, e, f, g, h byte)
15 func (x Int8) m(a, b, c, d, e, f, g, h byte) {
21 func (x Uint8) m(a, b, c, d, e, f, g, h byte) {
27 func (x Int16) m(a, b, c, d, e, f, g, h byte) {
33 func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
39 func (x Int32) m(a, b, c, d, e, f, g, h byte) {
45 func (x Uint32) m(a, b, c, d, e, f, g, h byte) {
51 func (x Int64) m(a, b, c, d, e, f, g, h byte) {
57 func (x Uint64) m(a, b, c, d, e, f, g, h byte) {
80 func check(desc string, have, want int64, a, b, c, d, e, f, g, h byte) {
    [all...]
  /prebuilts/go/darwin-x86/test/
method5.go 14 M(int, byte) (byte, int)
17 type Tsmallv byte
19 func (v Tsmallv) M(x int, b byte) (byte, int) { return b, x+int(v) }
21 type Tsmallp byte
23 func (p *Tsmallp) M(x int, b byte) (byte, int) { return b, x+int(*p) }
27 func (v Twordv) M(x int, b byte) (byte, int) { return b, x+int(v)
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug296.go 10 m(a, b, c, d, e, f, g, h byte)
15 func (x Int8) m(a, b, c, d, e, f, g, h byte) {
21 func (x Uint8) m(a, b, c, d, e, f, g, h byte) {
27 func (x Int16) m(a, b, c, d, e, f, g, h byte) {
33 func (x Uint16) m(a, b, c, d, e, f, g, h byte) {
39 func (x Int32) m(a, b, c, d, e, f, g, h byte) {
45 func (x Uint32) m(a, b, c, d, e, f, g, h byte) {
51 func (x Int64) m(a, b, c, d, e, f, g, h byte) {
57 func (x Uint64) m(a, b, c, d, e, f, g, h byte) {
80 func check(desc string, have, want int64, a, b, c, d, e, f, g, h byte) {
    [all...]
  /prebuilts/go/linux-x86/test/
method5.go 14 M(int, byte) (byte, int)
17 type Tsmallv byte
19 func (v Tsmallv) M(x int, b byte) (byte, int) { return b, x+int(v) }
21 type Tsmallp byte
23 func (p *Tsmallp) M(x int, b byte) (byte, int) { return b, x+int(*p) }
27 func (v Twordv) M(x int, b byte) (byte, int) { return b, x+int(v)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_messages.go 10 raw []byte
12 random []byte
13 sessionId []byte
54 func (m *clientHelloMsg) marshal() []byte {
112 x := make([]byte, 4+length)
135 z[0] = byte(extensionsLength >> 8)
136 z[1] = byte(extensionsLength)
140 z[0] = byte(extensionNextProtoNeg >> 8)
141 z[1] = byte(extensionNextProtoNeg & 0xff)
146 z[0] = byte(extensionServerName >> 8
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_messages.go 10 raw []byte
12 random []byte
13 sessionId []byte
54 func (m *clientHelloMsg) marshal() []byte {
112 x := make([]byte, 4+length)
135 z[0] = byte(extensionsLength >> 8)
136 z[1] = byte(extensionsLength)
140 z[0] = byte(extensionNextProtoNeg >> 8)
141 z[1] = byte(extensionNextProtoNeg & 0xff)
146 z[0] = byte(extensionServerName >> 8
    [all...]
  /art/test/004-JniTest/src/
Main.java 111 static native byte byteMethod(byte b1, byte b2, byte b3, byte b4, byte b5, byte b6, byte b7,
112 byte b8, byte b9, byte b10)
    [all...]
  /frameworks/base/core/java/android/bluetooth/le/
ScanRecord.java 59 private final SparseArray<byte[]> mManufacturerSpecificData;
61 private final Map<ParcelUuid, byte[]> mServiceData;
70 private final byte[] mBytes;
92 public SparseArray<byte[]> getManufacturerSpecificData() {
101 public byte[] getManufacturerSpecificData(int manufacturerId) {
108 public Map<ParcelUuid, byte[]> getServiceData() {
113 * Returns the service data byte array associated with the {@code serviceUuid}. Returns
117 public byte[] getServiceData(ParcelUuid serviceDataUuid) {
146 public byte[] getBytes() {
151 SparseArray<byte[]> manufacturerData
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoder2Test.java 72 // bb.put(0, (byte) 77);
79 // byte[] b = new byte[] { (byte) 1 };
94 ByteBuffer in = ByteBuffer.wrap(new byte[] { 109, 97, 109 });
112 ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
121 cs2.decode(ByteBuffer.wrap(new byte[] { 0x00, 0x11 }));
170 super(cs, 1, 3, new byte[] { (byte) '?' });
189 // MockMalformedDecoder treats the second byte '0x38' as malformed
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SecureRandom2Test.java 30 private static final byte[] SEED_BYTES = { (byte) 33, (byte) 15, (byte) -3,
31 (byte) 22, (byte) 77, (byte) -16, (byte) -33, (byte) 56 };
69 * java.security.SecureRandom#SecureRandom(byte[])
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_linux_arm64.go 36 Pad_cgo_0 [4]byte
42 Pad_cgo_1 [4]byte
51 Pad_cgo_2 [4]byte
58 Pad_cgo_3 [44]byte
141 Pad_cgo_0 [5]byte
151 Pad_cgo_0 [4]byte
155 Pad_cgo_1 [4]byte
161 Addr [4]byte /* in_addr */
169 Addr [16]byte /* in6_addr */
213 Base *byte
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
ztypes_linux_arm64.go 36 Pad_cgo_0 [4]byte
42 Pad_cgo_1 [4]byte
51 Pad_cgo_2 [4]byte
58 Pad_cgo_3 [44]byte
141 Pad_cgo_0 [5]byte
151 Pad_cgo_0 [4]byte
155 Pad_cgo_1 [4]byte
161 Addr [4]byte /* in_addr */
169 Addr [16]byte /* in6_addr */
213 Base *byte
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 61 private static final byte[] IV = new byte[] {
62 (byte) 0, (byte) 1, (byte) 2, (byte) 3, (byte) 4, (byte) 5, (byte) 6, (byte) 7
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RsPackColorTo8888Test.java 72 byte[] outArray = new byte[INPUTSIZE * 4];
73 byte[] refArray = new byte[INPUTSIZE * 4];
84 byte[] cValue = rs_PackColorTo8888(inValues);
99 byte[] outArray = new byte[INPUTSIZE * 4];
100 byte[] refArray = new byte[INPUTSIZE * 4];
111 byte[] cValue = rs_PackColorTo8888(inValues)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
IntegerTest.java 61 new BigInteger(new byte[] { 0x7F, 0x00, 0x00, 0x00, 0x00,
69 byte[] array = ((BigInteger) validTestcase[i][0]).toByteArray();
72 byte[] encoded = new byte[array.length + 2];
74 encoded[1] = (byte) (encoded.length - 2);
84 * Tests decoding/encoding integers to/from byte array
91 // decode from byte array
93 DerInputStream in = new DerInputStream((byte[]) validTestcase[i][2]);
95 Arrays.equals((byte[]) validTestcase[i][1], // expected
96 (byte[]) asn1.decode(in))); // returne
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
Utf8Test.java 83 // Both bytes are one byte characters
85 // The possible number of two byte characters
97 // All one byte characters
99 // One two byte character and a one byte character
102 // Three byte characters
111 // All one byte characters
113 // One and three byte characters
116 // Two two byte characters
118 // Permutations of one and two byte character
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
Crc32cHashFunctionTest.java 32 // Test 32 byte array of 0x00.
33 byte[] zeros = new byte[32];
34 Arrays.fill(zeros, (byte) 0x00);
39 // Test 32 byte array of 0xFF.
40 byte[] fulls = new byte[32];
41 Arrays.fill(fulls, (byte) 0xFF);
46 // Test 32 byte arrays of ascending.
47 byte[] ascending = new byte[32]
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataOutputStreamTest.java 43 out.write(new byte[] { -100, 100 });
48 out.writeByte((byte) 200);
58 byte[] data = baos.toByteArray();
64 byte[] b = new byte[2];
89 byte[] data = baos.toByteArray();
95 byte[] b = new byte[6];
106 byte[] data = baos.toByteArray();
112 byte[] b = new byte[3]
    [all...]
  /external/valgrind/memcheck/tests/amd64-linux/
defcfaexpr.S 99 .byte 0x1
103 .byte 0x10
105 .byte 0x3
106 .byte 0xc
109 .byte 0x90
122 .byte 0x40 + .Lbbb2 - .Lbbb1 /* _advance_loc to .Lbbb2 */
127 .byte 0x0f /* _def_cfa_expression */
130 .byte 0x77 /* DW_OP_breg7 == %rsp + sleb128(0) */
132 .byte 0x40 /* DW_OP_lit16 */
133 .byte 0x40 /* DW_OP_lit16 *
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaInformationRecords.java 152 public byte numberType;
153 public byte numberPlan;
154 public byte pi;
155 public byte si;
160 this.numberType = (byte)numberType;
161 this.numberPlan = (byte)numberPlan;
162 this.pi = (byte)pi;
163 this.si = (byte)si;
207 public byte lineCtrlPolarityIncluded;
208 public byte lineCtrlToggle
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Streams.java 30 private static AtomicReference<byte[]> skipBuffer = new AtomicReference<byte[]>();
35 * Implements InputStream.read(int) in terms of InputStream.read(byte[], int, int).
40 byte[] buffer = new byte[1];
46 * Implements OutputStream.write(int) in terms of OutputStream.write(byte[], int, int).
51 byte[] buffer = new byte[1];
52 buffer[0] = (byte) (b & 0xff);
59 public static void readFully(InputStream in, byte[] dst) throws IOException
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 43 private byte state = 0;
63 byte val = byteq.dequeue();
95 pushbackq.enqueue((byte)i);
100 pushbackq.enqueue((byte)i);
103 pushbackq.enqueue((byte)i);
112 * in the byte queue. This decoding step performs the actual QP
118 byte msdChar = 0; // first digit of escaped num
126 byte b = (byte)pushbackq.dequeue();
153 byteq.enqueue((byte)'=')
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 43 private byte state = 0;
63 byte val = byteq.dequeue();
95 pushbackq.enqueue((byte)i);
100 pushbackq.enqueue((byte)i);
103 pushbackq.enqueue((byte)i);
112 * in the byte queue. This decoding step performs the actual QP
118 byte msdChar = 0; // first digit of escaped num
126 byte b = (byte)pushbackq.dequeue();
153 byteq.enqueue((byte)'=')
    [all...]

Completed in 828 milliseconds

<<41424344454647484950>>