/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
CipherKeyGenerator.java | 28 * @return a byte array containing the key value. 30 public byte[] generateKey() 32 byte[] key = new byte[strength];
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
NullDigest.java | 23 public void update(byte in) 28 public void update(byte[] in, int inOff, int len) 33 public int doFinal(byte[] out, int outOff) 35 byte[] res = bOut.toByteArray();
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstByte.java | 23 * Constants of type {@code byte}. 28 public static final CstByte VALUE_0 = make((byte) 0); 34 * @param value the {@code byte} value 36 public static CstByte make(byte value) { 45 * @param value the value, which must be in range for a {@code byte} 49 byte cast = (byte) value; 52 throw new IllegalArgumentException("bogus byte value: " + 62 * @param value the {@code byte} value 64 private CstByte(byte value) [all...] |
/external/llvm/test/CodeGen/PowerPC/ |
vperm-lowering.ll | 12 ; CHECK: .byte 0 13 ; CHECK: .byte 5 14 ; CHECK: .byte 10 15 ; CHECK: .byte 15 16 ; CHECK: .byte 20 17 ; CHECK: .byte 25 18 ; CHECK: .byte 30 19 ; CHECK: .byte 3 20 ; CHECK: .byte 8 21 ; CHECK: .byte 1 [all...] |
/external/llvm/test/CodeGen/SystemZ/ |
vec-perm-09.ll | 15 ; CHECK-VECTOR: .byte 1 16 ; CHECK-VECTOR-NEXT: .byte 19 17 ; CHECK-VECTOR-NEXT: .byte 6 18 ; CHECK-VECTOR-NEXT: .byte 5 19 ; CHECK-VECTOR-NEXT: .byte 20 20 ; CHECK-VECTOR-NEXT: .byte 22 21 ; CHECK-VECTOR-NEXT: .byte 1 22 ; CHECK-VECTOR-NEXT: .byte 1 23 ; CHECK-VECTOR-NEXT: .byte 25 24 ; CHECK-VECTOR-NEXT: .byte 2 [all...] |
vec-perm-12.ll | 16 ; CHECK-VECTOR: .byte 12 17 ; CHECK-VECTOR-NEXT: .byte 13 18 ; CHECK-VECTOR-NEXT: .byte 14 19 ; CHECK-VECTOR-NEXT: .byte 15 20 ; CHECK-VECTOR-NEXT: .byte 8 21 ; CHECK-VECTOR-NEXT: .byte 9 22 ; CHECK-VECTOR-NEXT: .byte 10 23 ; CHECK-VECTOR-NEXT: .byte 11 24 ; CHECK-VECTOR-NEXT: .byte 4 25 ; CHECK-VECTOR-NEXT: .byte [all...] |
/external/llvm/test/MC/Mips/ |
unaligned-nops.s | 2 .byte 1
|
/external/lzma/C/ |
7zBuf.h | 1 /* 7zBuf.h -- Byte Buffer
13 Byte *data;
23 Byte *data;
30 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
|
/external/lzma/CPP/7zip/Common/ |
CWrappers.h | 52 const Byte *Cur;
53 const Byte *Lim;
54 Byte *Buf;
73 Byte ReadByteFromNewBlock() throw();
74 Byte ReadByte()
85 Byte *Cur;
86 const Byte *Lim;
87 Byte *Buf;
106 void WriteByte(Byte b)
|
InBuffer.h | 19 Byte *_buf;
20 Byte *_bufLim;
21 Byte *_bufBase;
30 bool ReadByte_FromNewBlock(Byte &b);
31 Byte ReadByte_FromNewBlock();
47 void SetBuf(Byte *buf, size_t bufSize, size_t end, size_t pos)
63 bool ReadByte(Byte &b)
71 Byte ReadByte()
78 size_t ReadBytes(Byte *buf, size_t size);
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/ |
DeltaEncoder.java | 14 private final byte[] props = new byte[1]; 17 props[0] = (byte)(options.getDistance() - 1); 25 public byte[] getFilterProps() {
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/ |
DeltaEncoder.java | 17 public void encode(byte[] in, int in_off, int len, byte[] out) { 19 byte tmp = history[(distance + pos) & DISTANCE_MASK]; 21 out[i] = (byte)(in[in_off + i] - tmp);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/ |
UuidBasedProtectionSystemSpecificHeaderBox.java | 28 public static byte[] USER_TYPE = new byte[]{(byte) 0xd0, (byte) 0x8a, 0x4f, 0x18, 0x10, (byte) 0xf3, 0x4a, (byte) 0x82, 29 (byte) 0xb6, (byte) 0xc8, 0x32, (byte) 0xd8, (byte) 0xab, (byte) 0xa1, (byte) 0x83, (byte) 0xd3} [all...] |
/hardware/bsp/intel/peripheral/libmraa/examples/java/ |
Bmp85.java | 44 i2c.address((byte)0x77); 45 i2c.writeByte((byte)0xd0); 48 byte[] data = new byte[1]; 52 i2c.writeReg((byte)0xf4, (byte)0x2e); 54 if (i2c.readReg((byte)0xd0) != 0x55) { 59 i2c.writeReg((byte)0xf4, (byte)0x2e); 63 System.out.println(i2c.readWordReg((byte)0xf6)) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
UTF16LECharsetEncoderTest.java | 36 specifiedReplacement = new byte[] { -3, -1 }; 38 unibytes = new byte[] { 32, 0, 98, 0, 117, 0, 102, 0, 102, 0, 101, 0, 41 // unibytesWithRep = new byte[] {(byte)0xfd, (byte)0xff, 32, 0, 98, 0, 76 // 1st byte: d800-dbff 77 // 2nd byte: dc00-dfff 101 protected byte[] getIllegalByteArray() { 102 return new byte[] { (byte)0x00, (byte)0xd8, (byte)0x00, (byte)0xdb } [all...] |
/libcore/support/src/test/java/org/apache/harmony/testframework/ |
SinkTester.java | 49 public abstract byte[] getBytes() throws Exception; 84 private static void assertArrayEquals(byte[] expected, byte[] actual) { 95 byte[] expected = new byte[] { }; 103 byte[] expected = new byte[] { }; 106 byte[] a = new byte[1024]; 109 out.write(new byte[] { }); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
vdslun.h | 11 ULONG m_cbPort; BYTE* m_pbPort; 13 BYTE *m_pbAddress; 18 BYTE m_DeviceType; 19 BYTE m_DeviceTypeModifier;
|
/prebuilts/go/darwin-x86/misc/cgo/testgodefs/ |
main.go | 11 // Test that P, Q, and R all point to byte. 12 var v3 = Issue8478{P: (*byte)(nil), Q: (**byte)(nil), R: (***byte)(nil)}
|
/prebuilts/go/darwin-x86/misc/cgo/testshared/src/dep/ |
dep.go | 8 array [1024]*byte
|
/prebuilts/go/darwin-x86/src/cmd/go/testdata/norunexample/ |
test_test.go | 9 os.Stdout.Write([]byte("A normal test was executed.\n"))
|
/prebuilts/go/darwin-x86/test/ |
alias.go | 8 // (uint8 vs byte, int32 vs. rune). 18 func f(byte) {} 23 f(x) // ERROR "byte" 32 utf8.RuneStart(x) // ERROR "byte"
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4099.go | 16 func F1([]byte) 18 func F2([]byte) 21 var buf1 [10]byte 24 var buf2 [10]byte // ERROR "moved to heap: buf2"
|
issue4251.go | 11 func F1(s []byte) []byte { 15 func F2(a [10]byte) []byte {
|
/prebuilts/go/linux-x86/misc/cgo/testgodefs/ |
main.go | 11 // Test that P, Q, and R all point to byte. 12 var v3 = Issue8478{P: (*byte)(nil), Q: (**byte)(nil), R: (***byte)(nil)}
|
/prebuilts/go/linux-x86/misc/cgo/testshared/src/dep/ |
dep.go | 8 array [1024]*byte
|