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

<<21222324252627282930>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DataRecord.java 19 byte pl;
21 byte[] genders; // EGender
31 byte[] halfPlacements; // EHalfPlacement
32 byte[] halfSupport; // EHalfSupport
42 byte numberSystem; // ENumberSystem
47 byte zeroHandling; // EZeroHandling
48 byte decimalHandling; // EDecimalHandling
49 byte fractionHandling; // EFractionHandling
53 byte useMilliseconds; // EMilliSupport
202 public static final byte NOLIMIT = 0
    [all...]
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
ScanFilterTest.java 48 byte[] scanRecord = new byte[] {
52 0x02, 0x0A, (byte) 0xec, // tx power level
54 0x05, (byte) 0xff, (byte) 0xe0, 0x00, 0x02, 0x15, // manufacturer specific data
124 byte[] setServiceData = new byte[] {
131 byte[] emptyData = new byte[0];
135 byte[] prefixData = new byte[]
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/le/
ScanFilterTest.java 43 byte[] scanRecord = new byte[] {
47 0x02, 0x0A, (byte) 0xec, // tx power level
49 0x05, (byte) 0xff, (byte) 0xe0, 0x00, 0x02, 0x15, // manufacturer specific data
98 byte[] setServiceData = new byte[] {
104 byte[] emptyData = new byte[0];
108 byte[] prefixData = new byte[]
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
LittleEndian.java 33 * Gets an 8-bit unsigned integer from the given byte array at
36 * @param src the byte offset where to read the value from
37 * @param offset the byte array to extract the value from
40 public static int getUInt8(byte[] src, int offset) {
45 * Gets a 16-bit unsigned integer from the given byte array at the given offset.
50 public static int getUInt16(byte[] src, int offset) {
57 * Gets a 32-bit unsigned integer from the given byte array at the given offset.
62 public static long getUInt32(byte[] src, int offset) {
71 * Sets an 8-bit integer in the given byte array at the given offset.
73 public static void setInt8(byte[] dst, int offset, int value)
    [all...]
  /external/libvorbis/doc/
02-bitpacking.tex 21 In most contemporary architectures, a 'byte' is synonymous with an
24 purposes of the bitpacking convention, a byte implies the native,
32 The most ubiquitous architectures today consider a 'byte' to be an
35 convention is still well defined for any native byte size; Vorbis uses
37 that a byte is one octet for purposes of example.
41 A byte has a well-defined 'least significant' bit (LSb), which is the
42 only bit set when the byte is storing the two's complement integer
43 value +1. A byte's 'most significant' bit (MSb) is at the opposite
44 end of the byte. Bits in a byte are numbered from zero at the LSb t
    [all...]
  /external/boringssl/src/ssl/test/runner/curve25519/
mont25519_amd64.go 34 func mladder(xr, zr *[5]uint64, s *[32]byte) {
44 var prevbit byte
62 func scalarMult(out, in, base *[32]byte) {
63 var e [32]byte
87 func unpack(r *[5]uint64, x *[32]byte) {
132 func pack(out *[32]byte, x *[5]uint64) {
136 out[0] = byte(t[0])
137 out[1] = byte(t[0] >> 8)
138 out[2] = byte(t[0] >> 16)
139 out[3] = byte(t[0] >> 24
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
DerIndefLenConverter.java 33 * encoded byte arrays to definite length DER encoded byte arrays.
51 private byte[] data, newData;
76 * Checks whether the given length byte is of the form
79 * @param lengthByte the length byte from a DER encoded
81 * @return true if the byte is of Indefinite form otherwise
106 numOfEncapsulatedLenBytes += ((byte[])elem).length - 3;
115 byte[] sectionLenBytes = getLengthBytes(sectionLen);
121 // and subtract the indefinite-length tag (1 byte) and
130 * then skip the tag and its 1 byte length of zero
    [all...]
  /bionic/libc/arch-mips/include/machine/
setjmp.h 9 #define _JBLEN 25 /* size, in 8-byte longs, of a mips64 jmp_buf/sigjmp_buf */
11 #define _JBLEN 157 /* historical size, in 4-byte longs, of a mips32 jmp_buf */
  /cts/tests/tests/keystore/src/android/keystore/cts/
AES128CBCNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode("7E3D723C09A9852B24F584F9D916F6A8");
22 private static final byte[] KAT_IV = HexEncoding.decode("944AE274D983892EADE422274858A96A");
23 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
31 protected byte[] getKatKey() {
36 protected byte[] getKatIv() {
41 protected byte[] getKatPlaintext() {
46 protected byte[] getKatCiphertext() {
AES128CBCPKCS7PaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode("F16E698472578E919D92806262C5169F");
22 private static final byte[] KAT_IV = HexEncoding.decode("EF743540F8421ACA128A3247521F3E7D");
23 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
31 protected byte[] getKatKey() {
36 protected byte[] getKatIv() {
41 protected byte[] getKatPlaintext() {
46 protected byte[] getKatCiphertext() {
AES128CTRNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode("4713a7b2f93efe809b42ecc45213ef9f");
22 private static final byte[] KAT_IV = HexEncoding.decode("ebfa19b0ebf3d57feabd4c4bd04bea01");
23 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
31 protected byte[] getKatKey() {
36 protected byte[] getKatIv() {
41 protected byte[] getKatPlaintext() {
46 protected byte[] getKatCiphertext() {
AES192CBCNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("80a199aab0eee77e7762ddf3b3a32f40");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
27 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
32 protected byte[] getKatKey() {
37 protected byte[] getKatIv() {
42 protected byte[] getKatPlaintext() {
47 protected byte[] getKatCiphertext() {
AES192CBCPKCS7PaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("e61d13dfbf0533289f0e7950209da418");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
31 protected byte[] getKatKey() {
36 protected byte[] getKatIv() {
41 protected byte[] getKatPlaintext() {
46 protected byte[] getKatCiphertext() {
AES192CTRNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("df0694959b89054156962d68a226965c");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
30 protected byte[] getKatKey() {
35 protected byte[] getKatIv() {
40 protected byte[] getKatPlaintext() {
45 protected byte[] getKatCiphertext() {
AES256CBCNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("23b4d85239fb90db93b07a981e90a170");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
27 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
32 protected byte[] getKatKey() {
37 protected byte[] getKatIv() {
42 protected byte[] getKatPlaintext() {
47 protected byte[] getKatCiphertext() {
AES256CBCPKCS7PaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("9af96967195bb0184f129beffa8241ae");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
27 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
32 protected byte[] getKatKey() {
37 protected byte[] getKatIv() {
42 protected byte[] getKatPlaintext() {
47 protected byte[] getKatCiphertext() {
AES256CTRNoPaddingCipherTest.java 21 private static final byte[] KAT_KEY = HexEncoding.decode(
23 private static final byte[] KAT_IV = HexEncoding.decode("0b678a5249e6eeda461dfb4776b6c58e");
24 private static final byte[] KAT_PLAINTEXT = HexEncoding.decode(
26 private static final byte[] KAT_CIPHERTEXT = HexEncoding.decode(
30 protected byte[] getKatKey() {
35 protected byte[] getKatIv() {
40 protected byte[] getKatPlaintext() {
45 protected byte[] getKatCiphertext() {
  /dalvik/dx/tests/115-merge/testdata/
FillArrayData.java 5 public static byte[] newByteArray() {
6 return new byte[] { 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, -112, -23, 121 };
  /device/google/contexthub/firmware/inc/
atomic.h 28 /* almost all platforms support byte and 32-bit operations of this sort. please do not add other sizes here */
29 uint32_t atomicXchgByte(volatile uint8_t *byte, uint32_t newVal);
31 bool atomicCmpXchgByte(volatile uint8_t *byte, uint32_t prevVal, uint32_t newVal);
35 uint32_t atomicAddByte(volatile uint8_t *byte, uint32_t addend);
39 static inline uint32_t atomicReadByte(volatile uint8_t *byte)
42 return *byte;
51 static inline void atomicWriteByte(volatile uint8_t *byte, uint32_t val)
53 *byte = val;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ExplicitTest.java 56 //format: object to encode / ASN.1 tagged type / byte array
65 new byte[] { 0x25, 0x03, 0x01, 0x01, 0x00 },
72 new byte[] { 0x65, 0x03, 0x01, 0x01, 0x00 },
79 new byte[] { (byte) 0xA5, 0x03, 0x01, 0x01, 0x00 },
85 new byte[] { (byte) 0xA5, 0x03, 0x01, 0x01, 0x00 },
91 new byte[] { (byte) 0xE5, 0x03, 0x01, 0x01, 0x00 },
102 new byte[] { 0x25, 0x03, 0x01, 0x01, (byte) 0xFF }
    [all...]
  /external/boringssl/mac-x86_64/crypto/modes/
aesni-gcm-x86_64.S 9 .byte 0xf3,0xc3
17 .byte 0xf3,0xc3
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
NullOutputStream.java 12 public void write(byte[] buf)
18 public void write(byte[] buf, int off, int len)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringGenerator.java 30 return getOctetOutputStream(new byte[1000]); // limit for CER encoding.
34 byte[] buf)
42 private byte[] _buf;
47 byte[] buf)
58 _buf[_off++] = (byte)b;
67 public void write(byte[] b, int off, int len) throws IOException
93 byte[] bytes = new byte[_off];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RC2Parameters.java 9 byte[] key)
15 byte[] key,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSAEncoder.java 8 byte[] encode(BigInteger r, BigInteger s)
11 BigInteger[] decode(byte[] sig)

Completed in 327 milliseconds

<<21222324252627282930>>