HomeSort by relevance Sort by last modified time
    Searched refs:raw (Results 1 - 25 of 2942) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
RawInsnHelper.java 25 * Read a signed byte from the idx into the raw array.
27 public static long getSignedByteFromByte(byte[] raw, int idx) {
28 return (long) raw[idx];
32 * Read an unsigned byte from the idx into the raw array.
34 public static long getUnsignedByteFromByte(byte[] raw, int idx) {
35 return ((long) raw[idx]) & 0xff;
39 * Read an unsigned lower 4 bits from the idx into the raw array.
41 public static long getUnsignedLowNibbleFromByte(byte[] raw, int idx) {
42 return ((long) raw[idx]) & 0xf;
46 * Read an unsigned higher 4 bits from the idx into the raw array
    [all...]
AbstractFormat.java 27 * to read the vregs from an Instruction's raw bytes.
56 public abstract long getA(byte[] raw) throws IOException;
61 public abstract long getB(byte[] raw) throws IOException;
66 public abstract long getC(byte[] raw) throws IOException;
Format12x.java 33 public long getA(byte[] raw) throws IOException {
34 return RawInsnHelper.getUnsignedLowNibbleFromByte(raw, 1);
38 public long getB(byte[] raw) throws IOException {
39 return RawInsnHelper.getUnsignedHighNibbleFromByte(raw, 1);
43 public long getC(byte[] raw) throws IOException {
Format20bc.java 38 public long getA(byte[] raw) throws IOException {
39 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
43 public long getB(byte[] raw) throws IOException {
44 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 1);
48 public long getC(byte[] raw) throws IOException {
Format22x.java 34 public long getA(byte[] raw) throws IOException {
35 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
39 public long getB(byte[] raw) throws IOException {
40 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
44 public long getC(byte[] raw) throws IOException {
Format22b.java 35 public long getA(byte[] raw) throws IOException {
36 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
40 public long getB(byte[] raw) throws IOException {
41 return RawInsnHelper.getUnsignedByteFromByte(raw, 2);
45 public long getC(byte[] raw) throws IOException {
46 return RawInsnHelper.getSignedByteFromByte(raw, 3);
Format22cs.java 37 public long getA(byte[] raw) throws IOException {
38 return RawInsnHelper.getUnsignedLowNibbleFromByte(raw, 1);
42 public long getB(byte[] raw) throws IOException {
43 return RawInsnHelper.getUnsignedHighNibbleFromByte(raw, 1);
47 public long getC(byte[] raw) throws IOException {
48 return RawInsnHelper.getUnsignedShortFromTwoBytes(raw, 2);
Format22s.java 34 public long getA(byte[] raw) throws IOException {
35 return RawInsnHelper.getUnsignedLowNibbleFromByte(raw, 1);
39 public long getB(byte[] raw) throws IOException {
40 return RawInsnHelper.getUnsignedHighNibbleFromByte(raw, 1);
44 public long getC(byte[] raw) throws IOException {
45 return RawInsnHelper.getSignedShortFromTwoBytes(raw, 2);
Format22t.java 34 public long getA(byte[] raw) throws IOException {
35 return RawInsnHelper.getUnsignedLowNibbleFromByte(raw, 1);
39 public long getB(byte[] raw) throws IOException {
40 return RawInsnHelper.getUnsignedHighNibbleFromByte(raw, 1);
44 public long getC(byte[] raw) throws IOException {
45 return RawInsnHelper.getSignedShortFromTwoBytes(raw, 2);
Format23x.java 35 public long getA(byte[] raw) throws IOException {
36 return RawInsnHelper.getUnsignedByteFromByte(raw, 1);
40 public long getB(byte[] raw) throws IOException {
41 return RawInsnHelper.getUnsignedByteFromByte(raw, 2);
45 public long getC(byte[] raw) throws IOException {
46 return RawInsnHelper.getUnsignedByteFromByte(raw, 3);
  /external/vboot_reference/firmware/lib/
vboot_nvstorage.c 63 uint8_t *raw = context->raw; local
70 if ((HEADER_SIGNATURE != (raw[HEADER_OFFSET] & HEADER_MASK))
71 || (Crc8(raw, CRC_OFFSET) != raw[CRC_OFFSET])) {
73 Memset(raw, 0, VBNV_BLOCK_SIZE);
74 raw[HEADER_OFFSET] = (HEADER_SIGNATURE |
88 context->raw[CRC_OFFSET] = Crc8(context->raw, CRC_OFFSET);
98 const uint8_t *raw = context->raw local
201 uint8_t *raw = context->raw; local
    [all...]
  /external/vixl/src/aarch64/
cpu-aarch64.h 56 uint64_t raw = (uint64_t)pointer; local
57 VIXL_STATIC_ASSERT(sizeof(pointer) == sizeof(raw));
59 raw = (raw & ~kAddressTagMask) | (tag << kAddressTagOffset);
60 return (T)raw;
68 uint64_t raw = (uint64_t)pointer; local
69 VIXL_STATIC_ASSERT(sizeof(pointer) == sizeof(raw));
71 return (raw & kAddressTagMask) >> kAddressTagOffset;
  /external/chromium-trace/catapult/devil/devil/utils/
markdown_test.py 21 raw = 'foo'
22 self.assertEquals('**foo**', markdown.md_bold(raw))
25 raw = '*foo*'
26 self.assertEquals('**\\*foo\\***', markdown.md_bold(raw))
29 raw = textwrap.dedent("""\
41 actual = markdown.md_code(raw, language='python')
45 raw = textwrap.dedent("""\
65 actual = markdown.md_code(raw, language=None)
69 raw = 'text_with_underscores *and stars*'
71 actual = markdown.md_escape(raw)
    [all...]
  /external/libcxx/test/support/test.support/
test_demangle.pass.cpp 20 const char* raw; member in struct:__anon24529
29 const char* raw = TestCases[i].raw; local
32 assert(demangle(raw) == raw);
35 assert(demangle(raw) == expect);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/test.support/
test_demangle.pass.cpp 20 const char* raw; member in struct:__anon626
29 const char* raw = TestCases[i].raw; local
32 assert(demangle(raw) == raw);
35 assert(demangle(raw) == expect);
  /external/google-breakpad/src/processor/
fast_source_line_resolver_types.h 58 const char *raw = reinterpret_cast<const char*>(line_ptr); local
59 CopyFrom(raw);
63 void CopyFrom(const char *raw) {
64 address = *(reinterpret_cast<const MemAddr*>(raw));
65 size = *(reinterpret_cast<const MemAddr*>(raw + sizeof(address)));
67 raw + 2 * sizeof(address)));
69 raw + 2 * sizeof(address) + sizeof(source_file_id)));
76 const char *raw = reinterpret_cast<const char*>(func_ptr); local
77 CopyFrom(raw);
81 void CopyFrom(const char *raw) {
99 const char *raw = reinterpret_cast<const char*>(public_symbol_ptr); local
    [all...]
  /external/toybox/scripts/
minicom.sh 15 stty raw -echo -ctlecho -F "$1"
16 stty raw -echo # Need to do it on stdin, too.
  /external/libffi/src/
raw_api.c 27 /* This file defines generic functions for use with the raw api. */
57 ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args)
70 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 1);
75 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 2);
81 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 4);
87 *args = (raw++)->ptr;
92 *args = (raw++)->ptr;
96 *args = (void*) &(raw++)->ptr;
100 *args = raw;
101 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG
217 ffi_raw *raw = (ffi_raw*)alloca (ffi_raw_size (cif)); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
SoundPoolAacTest.java 27 return R.raw.a_4_aac;
32 return R.raw.c_sharp_5_aac;
37 return R.raw.e_5_aac;
42 return R.raw.b_5_aac;
47 return R.raw.g_sharp_5_aac;
SoundPoolMidiTest.java 27 return R.raw.midi_a;
32 return R.raw.midi_cs;
37 return R.raw.midi_e;
42 return R.raw.midi_b;
47 return R.raw.midi_gs;
SoundPoolOggTest.java 27 return R.raw.a_4;
32 return R.raw.c_sharp_5;
37 return R.raw.e_5;
42 return R.raw.b_5;
47 return R.raw.g_sharp_5;
  /external/curl/tests/libtest/
lib1537.c 34 char *raw; local
57 raw = curl_easy_unescape(NULL, ptr, (int)strlen(ptr), &outlen);
60 memcmp(raw, a, outlen) ? "no" : "YES");
61 if(raw)
62 curl_free(raw);
65 raw = curl_unescape(ptr, (int)strlen(ptr));
66 if(!raw) {
70 outlen = (int)strlen(raw);
73 memcmp(raw, a, outlen) ? "no" : "YES");
74 if(raw)
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/src/
raw_api.c 27 /* This file defines generic functions for use with the raw api. */
57 ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args)
70 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 1);
75 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 2);
81 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 4);
87 *args = (raw++)->ptr;
92 *args = (void*) &(raw++)->ptr;
96 *args = raw;
97 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
111 *args = (raw++)->ptr
204 ffi_raw *raw = (ffi_raw*)alloca (ffi_raw_size (cif)); local
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/src/
raw_api.c 27 /* This file defines generic functions for use with the raw api. */
57 ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args)
70 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 1);
75 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 2);
81 *args = (void*) ((char*)(raw++) + FFI_SIZEOF_ARG - 4);
87 *args = (raw++)->ptr;
92 *args = (void*) &(raw++)->ptr;
96 *args = raw;
97 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
111 *args = (raw++)->ptr
204 ffi_raw *raw = (ffi_raw*)alloca (ffi_raw_size (cif)); local
    [all...]
  /hardware/libhardware/modules/camera/3_4/metadata/
types.h 59 StreamConfiguration(const RawStreamConfiguration& raw)
60 : spec({raw[0], raw[1], raw[2]}), direction(raw[3]) {}
70 StreamStallDuration(const RawStreamStallDuration& raw)
71 : spec({static_cast<int32_t>(raw[0]),
72 static_cast<int32_t>(raw[1]),
73 static_cast<int32_t>(raw[2])}),
74 duration(raw[3]) {
    [all...]

Completed in 1506 milliseconds

1 2 3 4 5 6 7 8 91011>>