/prebuilts/go/linux-x86/test/fixedbugs/ |
issue12226.go | 12 if []byte("foo")[0] == []byte("b")[0] { 13 fmt.Println("BUG: \"foo\" and \"b\" appear to have the same first byte")
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
maxpage5.s | 4 .byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 6 .byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 8 .byte 0
|
note-2.s | 4 .byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 6 .byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 8 .byte 0
|
note-3.s | 4 .byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 7 .byte 9 10 .byte 0
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/ |
b-badrx3.s | 3 % (!= 0, != 1), first byte of the operand word. 5 .byte 0x98,5,0,24 6 .byte 2,0,0,0
|
sec-1.s | 3 BYTE 80 7 BYTE 37,39,41 11 BYTE 38,40
|
sec-8m.s | 2 .byte 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 3 .byte 46, 47, 48, 49, 50, 51 4 .byte 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/ |
adjsw8.s | 1 L0: .byte L1-L0 2 .byte L2-L0 3 .byte L3-L0
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-vxworks/ |
tls-1.s | 16 .4byte i 17 .4byte 0 18 .4byte 4
|
tls-2.s | 16 .4byte i 17 .4byte 0 18 .4byte 4
|
/external/llvm/test/MC/ELF/ |
discriminator.s | 20 .byte 8 # Address Size (in bytes) 21 .byte 1 # Abbrev [1] 0xb:0x1b DW_TAG_compile_unit 31 .byte 1 # Abbreviation Code 32 .byte 17 # DW_TAG_compile_unit 33 .byte 0 # DW_CHILDREN_no 34 .byte 37 # DW_AT_producer 35 .byte 14 # DW_FORM_strp 36 .byte 19 # DW_AT_language 37 .byte 5 # DW_FORM_data2 38 .byte 3 # DW_AT_nam [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/ |
BinaryTagTest.java | 33 byte[] binary = (byte[]) getMapValue("canonical: !!binary " + content, "canonical"); 34 assertEquals((byte) 'G', binary[0]); 35 assertEquals((byte) 'I', binary[1]); 36 assertEquals((byte) 'F', binary[2]); 37 assertEquals((byte) '8', binary[3]); 38 assertEquals((byte) '9', binary[4]); 42 byte[] binary = (byte[]) load("!!binary \"MQ==\""); 44 assertEquals((byte) '1', binary[0]) [all...] |
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
Sms7BitEncodingTranslatorTest.java | 63 s = new String(new byte[]{(byte)0x00, (byte)0xD3, 64 (byte)0x00, (byte)0xCF, (byte)0x01, (byte)0x04}, "UTF-16"); 76 s = new String(new byte[]{(byte)0x22, (byte)0x1A [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
cciss_ioctl.h | 78 #define BYTE __u8 85 #define LEVEL2LUN 1 // index into Target(x) structure, due to byte swapping 93 BYTE Dev; 94 BYTE Bus:6; 95 BYTE Mode:2; // b00 98 BYTE DevLSB; 99 BYTE DevMSB:6; 100 BYTE Mode:2; // b01 103 BYTE Dev:5; 104 BYTE Bus:3 [all...] |
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
MacTest.java | 81 mac.init(new SecretKeySpec(new byte[64], validAlgorithmsMac[i])); 313 byte [] buf = new byte[10]; 315 byte [] bb = {(byte)1, (byte)2, (byte)3, (byte)4, (byte)5}; 319 macs[i].update((byte)0) [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/ |
AppleDataBox.java | 13 private byte[] fourBytes = new byte[4]; 14 private byte[] data; 19 appleDataBox.setFourBytes(new byte[4]); 26 appleDataBox.setData(new byte[]{0}); 33 appleDataBox.setData(new byte[]{0}); 40 appleDataBox.setData(new byte[]{0, 0}); 47 appleDataBox.setData(new byte[]{0, 0, 0, 0}); 59 public void setData(byte[] data) { 60 this.data = new byte[data.length] [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
PBEParametersGenerator.java | 10 protected byte[] password; 11 protected byte[] salt; 30 byte[] password, 31 byte[] salt, 40 * return the password byte array. 42 * @return the password byte array. 44 public byte[] getPassword() 50 * return the salt byte array. 52 * @return the salt byte array. 54 public byte[] getSalt( [all...] |
/external/lzma/C/ |
CpuArch.h | 74 #define GetUi16(p) (((const Byte *)(p))[0] | ((UInt16)((const Byte *)(p))[1] << 8))
77 ((const Byte *)(p))[0] | \
78 ((UInt32)((const Byte *)(p))[1] << 8) | \
79 ((UInt32)((const Byte *)(p))[2] << 16) | \
80 ((UInt32)((const Byte *)(p))[3] << 24))
82 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
85 ((Byte *)(p))[0] = (Byte)_x_; \
86 ((Byte *)(p))[1] = (Byte)(_x_ >> 8); } [all...] |
Bcj2.h | 26 const Byte *buf0, SizeT size0,
27 const Byte *buf1, SizeT size1,
28 const Byte *buf2, SizeT size2,
29 const Byte *buf3, SizeT size3,
30 Byte *outBuf, SizeT outSize);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/ |
DigestOutputStream.java | 22 digest.update((byte)b); 26 byte[] b, 34 public byte[] getDigest() 36 byte[] res = new byte[digest.getDigestSize()];
|
MacOutputStream.java | 22 mac.update((byte)b); 26 byte[] b, 34 public byte[] getMac() 36 byte[] res = new byte[mac.getMacSize()];
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/ |
BCMessageDigest.java | 26 byte input) 32 byte[] input, 39 public byte[] engineDigest() 41 byte[] digestBytes = new byte[digest.getDigestSize()];
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
Hex.java | 17 byte[] data) 23 byte[] data, 27 byte[] encoded = encode(data, off, length); 32 * encode the input data producing a Hex encoded byte array. 34 * @return a byte array containing the Hex encoded data. 36 public static byte[] encode( 37 byte[] data) 43 * encode the input data producing a Hex encoded byte array. 45 * @return a byte array containing the Hex encoded data. 47 public static byte[] encode [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bytes/ |
BytesResource.java | 6 * An {@link com.bumptech.glide.load.engine.Resource} wrapping a byte array. 8 public class BytesResource implements Resource<byte[]> { 9 private final byte[] bytes; 11 public BytesResource(byte[] bytes) { 19 public byte[] get() {
|
/external/llvm/test/MC/AsmParser/ |
macro-def-in-instantiation.s | 9 .make_macro .macro,.mybyte,.byte,$0,.endmacro 12 // CHECK: .byte 10 19 .byte 10 32 // CHECK: .byte 10 33 // CHECK: .byte 10
|