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

<<31323334353637383940>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
attr-array-directive-3.d 9 Tag_ABI_array_object_align_expected: 4-byte
attr-array-directive-4.d 9 Tag_ABI_array_object_align_expected: 16-byte
attr-stack-directive-1.d 9 Tag_ABI_stack_align_preserved: 16-byte
  /toolchain/binutils/binutils-2.25/ld/emulparams/
elf_i386_nacl.sh 4 ARCH="i386:nacl" # The :nacl just means one-byte nops for code fill.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
ifunc-17a.s 10 .byte 0
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
comm-data3a.s 10 .byte 0
noload-3.s 2 .byte 1
pr13195.s 5 .byte 0
tls_common.s 10 .byte 0
weak-dyn-1a.s 13 .byte 1
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfcomm/
common1b.c 6 char foo1 [] = "Aligned at odd byte.";
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ifunc/
ifunc-17a.s 10 .byte 0
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
b-loc64k.s 5 .byte 0x98,9,1,1,0x3b,0x7f,0x9c,0xe3,0x98,1,0,2,0,0,0,0
6 .byte 0,0,0,0,0xe3,0xfd,0,1,0x98,1,0,2,0,0,0,0
7 .byte 0,1,0,0,0xe3,0xfd,0,4,0x98,0x0a,0,0xff,0,0,0,0
8 .byte 0,0,0,4
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedValue.java 22 public byte valueArg;
23 public byte valueType;
24 public byte[] value;
28 private static final byte VALUE_BYTE = 0x00;
29 private static final byte VALUE_ARRAY = 0x1c;
30 private static final byte VALUE_ANNOTATION = 0x1d;
31 private static final byte VALUE_NULL = 0x1e;
32 private static final byte VALUE_BOOLEAN = 0x1f;
39 valueType = (byte) (valueArgAndType & 0x1f);
41 valueArg = (byte) ((valueArgAndType & 0xe0) >> 5)
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RS3DLUTTest.java 36 native boolean lutTest(String path, int X, int Y, int lutSize, byte[] input, byte[] input2, byte[] output);
42 byte[] byteAlloc = new byte[X * Y * 4];
43 byte[] byteColorCube = new byte[lutSize * lutSize * lutSize * 4];
45 byteAlloc[i] = (byte)baseAlloc[i];
48 byteColorCube[i] = (byte)colorCube[i];
69 byte[] nativeByteAlloc = new byte[X * Y * 4]
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 33 write((byte)(size | 0x80));
37 write((byte)(length >> i));
42 write((byte)length);
52 void write(byte[] bytes)
58 void write(byte[] bytes, int off, int len)
66 byte[] bytes)
90 byte[] stack = new byte[5];
93 stack[--pos] = (byte)(tagNo & 0x7F);
98 stack[--pos] = (byte)(tagNo & 0x7F | 0x80)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
DESedeParameters.java 12 byte[] key)
26 * @param offset offset into the byte array the key starts at
30 byte[] key,
49 * @param offset offset into the byte array the key starts at
52 byte[] key,
62 * @param offset offset into the byte array the key starts at
64 public static boolean isRealEDEKey(byte[] key, int offset)
73 * @param offset offset into the byte array the key starts at
75 public static boolean isReal2Key(byte[] key, int offset)
93 * @param offset offset into the byte array the key starts a
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/core/
memory_cache_http_server_unittest.py 29 # Test byte range request: no end byte.
32 # Test byte range request: greater than zero start byte.
35 # Test byte range request: explicit byte range.
38 # Test byte range request: no start byte.
42 # Test byte range request: end byte less than start byte
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/hash/
ChecksumBenchmark.java 31 * <p>Parameters for the benchmark are: <ul> <li>size: The length of the byte array to hash. </ul>
43 private byte[] testBytes;
47 testBytes = new byte[size];
53 @Benchmark byte crc32HashFunction(int reps) {
57 @Benchmark byte crc32Checksum(int reps) throws Exception {
58 byte result = 0x01;
69 @Benchmark byte adler32HashFunction(int reps) {
73 @Benchmark byte adler32Checksum(int reps) throws Exception {
74 byte result = 0x01;
85 private byte runHashFunction(int reps, HashFunction hashFunction)
    [all...]
  /external/lzma/CPP/7zip/Common/
StreamObjects.h 24 const Byte *_data;
29 void Init(const Byte *data, size_t size, IUnknown *ref = 0)
49 Byte *_buf;
56 operator Byte*() const { return _buf; };
57 operator const Byte*() const { return _buf; };
71 const Byte *GetBuffer() const { return _buffer; }
73 Byte *GetBufPtrForWriting(size_t addSize);
84 Byte *_buffer;
88 void Init(Byte *buffer, size_t size)
120 Byte *_data;
    [all...]
  /external/v8/src/snapshot/
snapshot-source-sink.h 23 : data_(reinterpret_cast<const byte*>(data)),
27 explicit SnapshotByteSource(Vector<const byte> payload)
34 byte Get() {
41 void CopyRaw(byte* to, int number_of_bytes);
61 int GetBlob(const byte** data);
66 const byte* data_;
86 void Put(byte b, const char* description) { data_.Add(b); }
90 Put(static_cast<byte>(b), description);
94 void PutRaw(const byte* data, int number_of_bytes, const char* description);
97 const List<byte>& data() const { return data_;
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
UnsafeByteSequence.java 31 private byte[] bytes;
35 this.bytes = new byte[initialCapacity];
50 public void write(byte[] buffer, int offset, int length) {
52 byte[] newBytes = new byte[(count + length) * 2];
62 byte[] newBytes = new byte[count * 2];
66 bytes[count++] = (byte) b;
69 public byte[] toByteArray() {
73 byte[] result = new byte[count]
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
FrameParser.java 52 public FrameParser(byte frameType, byte[] frameBytes) {
67 * Read one byte into a form that can easily be compared against, or output as, an integer
110 private static final byte IP_V4_VERSION_BYTE_MASK = (byte) 0b11110000;
111 private static final byte IP_V4_IHL_BYTE_MASK = (byte) 0b00001111;
112 private static final byte IP_V4_ADDR_LEN = 4;
113 private static final byte IP_V4_DSCP_AND_ECN_LEN = 1;
114 private static final byte IP_V4_TOTAL_LEN_LEN = 2
    [all...]
  /art/runtime/interpreter/mterp/x86_64/
op_goto_32.S 5 * double to get a byte offset.
8 * to convert from Dalvik offset to byte offset.
  /external/apache-http/src/org/apache/commons/codec/binary/
Hex.java 50 * given byte. An exception is thrown if the passed char array has an odd
54 * @return A byte array containing binary data decoded from
59 public static byte[] decodeHex(char[] data) throws DecoderException {
67 byte[] out = new byte[len >> 1];
75 out[i] = (byte) (f & 0xFF);
98 * Converts an array of bytes into an array of characters representing the hexidecimal values of each byte in order.
100 * given byte.
103 * a byte[] to convert to Hex characters
106 public static char[] encodeHex(byte[] data)
    [all...]

Completed in 898 milliseconds

<<31323334353637383940>>