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

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
loadaddr.s 10 .byte 0,0,0,0,0,0,0,0
11 .byte 0,0,0,0,0,0,0,0
13 .byte 0,0,0,0,0,0,0,0
14 .byte 0,0,0,0,0,0,0,0
16 .byte 0,0,0,0,0,0,0,0
17 .byte 0,0,0,0,0,0,0,0
19 .byte 0,0,0,0,0,0,0,0
20 .byte 0,0,0,0,0,0,0,0
note-1.s 4 .byte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
6 .byte 0
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Pack.java 4 * Utility methods for converting byte arrays into ints and longs, and back again.
8 public static int bigEndianToInt(byte[] bs, int off)
17 public static void bigEndianToInt(byte[] bs, int off, int[] ns)
26 public static byte[] intToBigEndian(int n)
28 byte[] bs = new byte[4];
33 public static void intToBigEndian(int n, byte[] bs, int off)
35 bs[ off] = (byte)(n >>> 24);
36 bs[++off] = (byte)(n >>> 16);
37 bs[++off] = (byte)(n >>> 8)
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESedeKeySpecTest.java 45 new DESedeKeySpec((byte[]) null);
47 + "in case of null byte array.");
51 + "in case of null byte array.");
54 new DESedeKeySpec(new byte[] { 1, 2, 3 });
55 fail("Should raise an InvalidKeyException on a short byte array.");
61 new DESedeKeySpec(new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0,
70 new DESedeKeySpec((byte[]) null, 1);
72 + "in case of null byte array.");
76 + "in case of null byte array.");
79 new DESedeKeySpec(new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERInteger.java 12 * Constructor from a byte array containing a signed representation of the number.
14 * @param bytes a byte array containing the signed number.A copy is made of the byte array.
16 public DERInteger(byte[] bytes)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
Pack.java 8 public static int bigEndianToInt(byte[] bs, int off)
17 public static void bigEndianToInt(byte[] bs, int off, int[] ns)
26 public static byte[] intToBigEndian(int n)
28 byte[] bs = new byte[4];
33 public static void intToBigEndian(int n, byte[] bs, int off)
35 bs[ off] = (byte)(n >>> 24);
36 bs[++off] = (byte)(n >>> 16);
37 bs[++off] = (byte)(n >>> 8);
38 bs[++off] = (byte)(n )
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/tests/
test_compat.py 6 from rsa._compat import is_bytes, byte namespace
11 byt = byte(i)
16 self.assertRaises(struct.error, byte, 256)
17 self.assertRaises(struct.error, byte, -1)
  /external/dbus/test/data/valid-messages/
simplest-manual.message 5 BYTE 'l'
6 BYTE 1
7 BYTE 0
8 BYTE 0
  /external/e2fsprogs/tests/m_dasd_bs/
script 1 DESCRIPTION="2048 byte sector devices"
  /external/guava/guava-tests/test/com/google/common/primitives/
SignedBytesTest.java 39 private static final byte[] EMPTY = {};
40 private static final byte[] ARRAY1 = {(byte) 1};
42 private static final byte LEAST = Byte.MIN_VALUE;
43 private static final byte GREATEST = Byte.MAX_VALUE;
45 private static final byte[] VALUES =
49 for (byte value : VALUES) {
59 for (byte value : VALUES)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
_tags 2 <*.{byte,native}>: g++, use_llvm, use_llvm_analysis
  /external/llvm/test/CodeGen/AArch64/
arm64-swizzle-tbl-i16-layout.ll 9 ; CHECK: .byte 0 ; 0x0
10 ; CHECK: .byte 1 ; 0x1
11 ; CHECK: .byte 0 ; 0x0
12 ; CHECK: .byte 1 ; 0x1
13 ; CHECK: .byte 0 ; 0x0
14 ; CHECK: .byte 1 ; 0x1
15 ; CHECK: .byte 0 ; 0x0
16 ; CHECK: .byte 1 ; 0x1
17 ; CHECK: .byte 8 ; 0x8
18 ; CHECK: .byte 9 ; 0x
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
vec_auto_constant.ll 3 ; CHECK: .byte 22
4 ; CHECK: .byte 21
5 ; CHECK: .byte 20
6 ; CHECK: .byte 3
7 ; CHECK: .byte 25
8 ; CHECK: .byte 24
9 ; CHECK: .byte 23
10 ; CHECK: .byte 3
11 ; CHECK: .byte 28
12 ; CHECK: .byte 2
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
None.java 18 public void update(byte[] buf, int off, int len) {}
20 public byte[] finish() {
21 byte[] empty = new byte[0];
  /external/proguard/src/proguard/optimize/evaluation/
package.html 3 optimizations on byte code.
  /frameworks/base/rs/java/android/renderscript/
Byte3.java 25 public byte x;
26 public byte y;
27 public byte z;
32 public Byte3(byte initX, byte initY, byte initZ) {
65 result.x = (byte)(a.x + b.x);
66 result.y = (byte)(a.y + b.y);
67 result.z = (byte)(a.z + b.z);
77 public void add(byte value)
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
MacThread.java 29 byte[] src1 = new byte[size];
30 byte[] src2 = new byte[size];
31 byte[] src3 = new byte[size];
35 src1[i] = (byte)i;
36 src2[i] = (byte)i;
37 src3[i] = (byte)(size - i - 1);
40 byte[] b = {(byte)0, (byte)0, (byte)0, (byte)0, (byte)0}
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESedeKeySpecTest.java 45 new DESedeKeySpec((byte []) null);
47 + "in case of null byte array.");
51 + "in case of null byte array.");
54 new DESedeKeySpec(new byte [] {1, 2, 3});
55 fail("Should raise an InvalidKeyException on a short byte array.");
61 new DESedeKeySpec(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9, 0,
70 new DESedeKeySpec((byte []) null, 1);
72 + "in case of null byte array.");
76 + "in case of null byte array.");
79 new DESedeKeySpec(new byte [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eapmethodtypes.h 15 BYTE Code;
16 BYTE Id;
17 BYTE Length[2];
18 BYTE Data[1];
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/elf/
type-noifunc.s 5 .byte 0x0
10 .byte 0x0
14 .byte 0x0
18 .byte 0x0
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
prefetch-intel.d 10 \s*[a-f0-9]+: 0f 0d 00 prefetch BYTE PTR \[eax\]
11 \s*[a-f0-9]+: 0f 0d 08 prefetchw BYTE PTR \[eax\]
12 \s*[a-f0-9]+: 0f 0d 10 prefetchwt1 BYTE PTR \[eax\]
13 \s*[a-f0-9]+: 0f 0d 18 prefetch BYTE PTR \[eax\]
14 \s*[a-f0-9]+: 0f 0d 20 prefetch BYTE PTR \[eax\]
15 \s*[a-f0-9]+: 0f 0d 28 prefetch BYTE PTR \[eax\]
16 \s*[a-f0-9]+: 0f 0d 30 prefetch BYTE PTR \[eax\]
17 \s*[a-f0-9]+: 0f 0d 38 prefetch BYTE PTR \[eax\]
20 \s*[a-f0-9]+: 0f 18 00 prefetchnta BYTE PTR \[eax\]
21 \s*[a-f0-9]+: 0f 18 08 prefetcht0 BYTE PTR \[eax\
    [all...]
rept.s 5 .byte 0
x86-64-prefetch-intel.d 10 \s*[a-f0-9]+: 0f 0d 00 prefetch BYTE PTR \[rax\]
11 \s*[a-f0-9]+: 0f 0d 08 prefetchw BYTE PTR \[rax\]
12 \s*[a-f0-9]+: 0f 0d 10 prefetchwt1 BYTE PTR \[rax\]
13 \s*[a-f0-9]+: 0f 0d 18 prefetch BYTE PTR \[rax\]
14 \s*[a-f0-9]+: 0f 0d 20 prefetch BYTE PTR \[rax\]
15 \s*[a-f0-9]+: 0f 0d 28 prefetch BYTE PTR \[rax\]
16 \s*[a-f0-9]+: 0f 0d 30 prefetch BYTE PTR \[rax\]
17 \s*[a-f0-9]+: 0f 0d 38 prefetch BYTE PTR \[rax\]
20 \s*[a-f0-9]+: 0f 18 00 prefetchnta BYTE PTR \[rax\]
21 \s*[a-f0-9]+: 0f 18 08 prefetcht0 BYTE PTR \[rax\
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
elf-rel21.s 4 .8byte bar - foo
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/xstormy16/
reloc-1.s 8 .byte global
9 .byte global-0x7F00
10 .byte global+3
11 .byte global-.

Completed in 1457 milliseconds

<<11121314151617181920>>