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

<<31323334353637383940>>

  /external/boringssl/linux-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/operator/
RawContentVerifier.java 16 boolean verify(byte[] digest, byte[] expected);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERNull.java 13 private static final byte[] zeroBytes = new byte[0];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DSABase.java 32 byte b)
39 byte[] b,
47 protected byte[] engineSign()
50 byte[] hash = new byte[digest.getDigestSize()];
67 byte[] sigBytes)
70 byte[] hash = new byte[digest.getDigestSize()];
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
RecordReader.java 19 byte namedIndex(String name, String[] names);
20 byte[] namedIndexArray(String name, String[] names);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
RecordReader.java 18 byte namedIndex(String name, String[] names);
19 byte[] namedIndexArray(String name, String[] names);
  /external/llvm/test/MC/Mips/
micromips-func-addr.s 14 .4byte bar
15 .4byte L1
  /external/lzma/C/
Bra86.c 10 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
21 Byte *p = data + pos;
22 const Byte *limit = data + size;
61 if (Test86MSByte((Byte)(v >> sh)))
71 p[1] = (Byte)v;
72 p[2] = (Byte)(v >> 8);
73 p[3] = (Byte)(v >> 16);
74 p[4] = (Byte)(0 - ((v >> 24) & 1));
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.cpp 10 Byte kSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
12 Byte kFinishSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C + 1};
  /external/tpm2/
BaseTypes.h 18 typedef uint8_t BYTE;
29 BYTE buffer[1];
  /external/valgrind/memcheck/tests/
buflen_check.stderr.exp-kfail 1 Syscall param socketcall.getsockname(name) points to unaddressable byte(s)
5 Syscall param socketcall.getsockname(namelen_in) points to unaddressable byte(s)
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
NotificationInd.java 76 public byte[] getContentLocation() {
87 public void setContentLocation(byte[] value) {
142 public byte[] getMessageClass() {
153 public void setMessageClass(byte[] value) {
202 public byte[] getTransactionId() {
213 public void setTransactionId(byte[] value) {
240 * public byte[] getApplicId() {return null;}
241 * public void setApplicId(byte[] value) {}
243 * public byte[] getAuxApplicId() {return null;}
244 * public void getAuxApplicId(byte[] value) {
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 35 private static final byte[] DATA = new byte[DATA_SIZE];
38 private static final byte[] IV = new byte[IV_SIZE];
42 DATA[i] = (byte) i;
45 IV[i] = (byte) i;
51 private byte[] output = new byte[8192];
  /libcore/luni/src/main/java/libcore/io/
Base64.java 23 * Perform encoding and decoding of Base64 byte arrays as described in
27 private static final byte[] BASE_64_ALPHABET = initializeBase64Alphabet();
29 private static byte[] initializeBase64Alphabet() {
42 public static String encode(byte[] in) {
45 byte[] output = new byte[outputLen];
54 // Add second byte to the triplet.
110 public static byte[] decode(byte[] in) {
115 public static byte[] decode(byte[] in, int len)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ASimpleOutputStream.java 16 public byte[] buf;
35 buf = new byte[bufferSize];
55 // public void write(byte buffer[]) throws IOException {
65 // public void write(byte buffer[], int offset, int count) throws IOException {
83 buf[pos] = (byte)(oneByte & 255);
90 public byte[] toByteArray() {
91 byte[] toReturn = new byte[pos];
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
NotificationInd.java 74 public byte[] getContentLocation() {
85 public void setContentLocation(byte[] value) {
140 public byte[] getMessageClass() {
151 public void setMessageClass(byte[] value) {
200 public byte[] getTransactionId() {
211 public void setTransactionId(byte[] value) {
238 * public byte[] getApplicId() {return null;}
239 * public void setApplicId(byte[] value) {}
241 * public byte[] getAuxApplicId() {return null;}
242 * public void getAuxApplicId(byte[] value) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
NotificationInd.java 76 public byte[] getContentLocation() {
87 public void setContentLocation(byte[] value) {
142 public byte[] getMessageClass() {
153 public void setMessageClass(byte[] value) {
202 public byte[] getTransactionId() {
213 public void setTransactionId(byte[] value) {
240 * public byte[] getApplicId() {return null;}
241 * public void setApplicId(byte[] value) {}
243 * public byte[] getAuxApplicId() {return null;}
244 * public void getAuxApplicId(byte[] value) {
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
ByteArrayPool.java 29 private final ArrayList<byte[]> mCachedBuf;
36 mCachedBuf = new ArrayList<byte[]>(mMaxNum);
40 * get singleton of 16KB byte[] pool
46 public byte[] allocateChunk() {
52 return new byte[mChunkSize];
62 public void releaseChunk(byte[] buf) {
73 public void releaseChunks(List<byte[]> bufs) {
79 byte[] buf = bufs.get(i);
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cfb.go 11 next []byte
12 out []byte
18 func (x *cfb) XORKeyStream(dst, src []byte) {
45 func NewCFBEncrypter(block Block, iv []byte) Stream {
52 func NewCFBDecrypter(block Block, iv []byte) Stream {
56 func newCFB(block Block, iv []byte, decrypt bool) Stream {
64 out: make([]byte, blockSize),
65 next: make([]byte, blockSize),
  /prebuilts/go/darwin-x86/test/chan/
zerosize.go 12 _ = make(chan [0]byte)
13 _ = make(chan [0]byte, 1)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug146.go 10 type Slice []byte;
11 a := [...]byte{ 0 };
bug311.go 10 m := make(map[string][1000]byte)
11 m["hi"] = [1000]byte{1}
bug352.go 9 var x [10][0]byte
14 println("BUG: bug352 [0]byte")
bug481.go 12 func F1(s string) byte {
13 return []byte(s)[0]
issue8074.go 13 a := make([]byte, 10)
14 m := make(map[float64][]byte)

Completed in 784 milliseconds

<<31323334353637383940>>