Searched refs:byte (Results 201 - 225 of 953) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/
H A Dnatives.h39 static Vector<const byte> GetScriptsSource();
H A Dscanner-character-streams.cc162 Utf8ToUtf16CharacterStream::Utf8ToUtf16CharacterStream(const byte* data,
177 const byte* src,
229 static const byte kUtf8MultiByteMask = 0xC0;
230 static const byte kUtf8MultiByteCharFollower = 0x80;
234 static const byte kUtf8MultiByteCharStart = 0xC0;
235 static bool IsUtf8MultiCharacterStart(byte first_byte) {
241 static bool IsUtf8MultiCharacterFollower(byte later_byte) {
248 static inline void Utf8CharacterBack(const byte* buffer, unsigned* cursor) {
249 byte character = buffer[--*cursor];
252 // Last byte o
[all...]
H A Dregexp-macro-assembler-irregexp-inl.h5 // A light-weight assembler for the Irregexp byte code.
21 void RegExpMacroAssemblerIrregexp::Emit(uint32_t byte, argument
23 uint32_t word = ((twenty_four_bits << BYTECODE_SHIFT) | byte);
/external/libexif/libexif/canon/
H A Dexif-mnote-data-canon.h24 #include <libexif/exif-byte-order.h>
/external/linux-tools-perf/perf-3.12.0/arch/metag/lib/
H A Dmemcpy.S15 ! If there are less than 16 bytes to copy use the byte copy loop
19 ! Simply copy a byte at a time
36 ! The destination address is not 8 byte aligned. We will copy bytes from
37 ! the source to the destination until the remaining data has an 8 byte
48 ! We have at least (16 - 7) = 9 bytes to copy - calculate the number of 8 byte
53 LSR D1Ar5, D1Ar3, #3 ! D1Ar5 = number of 8 byte blocks
57 ! Both source and destination are 8 byte aligned - the easy case.
59 LSRS D1Ar5, D1Ar3, #5 ! D1Ar5 = number of 32 byte blocks
74 ! If there are any remaining bytes use the byte copy loop, otherwise we are done
79 ! The destination is 8 byte aligne
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBDataRef.cpp246 uint8_t byte; local
252 byte = *src++;
253 result |= (byte & 0x7f) << shift;
255 if ((byte & 0x80) == 0)
279 uint8_t byte = 0; local
285 byte = *src++;
286 result |= (byte & 0x7f) << shift;
288 if ((byte & 0x80) == 0)
292 // Sign bit of byte is 2nd high order bit (0x40)
293 if (shift < size && (byte
[all...]
/external/llvm/test/MC/AArch64/
H A Darm64-small-data-fixups.s9 .byte foo - bar
/external/llvm/test/MC/ELF/
H A Doffset.s9 .byte 42
/external/llvm/test/MC/MachO/ARM/
H A Ddata-in-code.s31 .byte 3
/external/llvm/test/MC/MachO/
H A Dreloc.s25 .byte local_a_elt + 89
/external/mesa3d/src/mesa/sparc/
H A Dsparc_clip.S43 .byte 0, 1, 0, 2, 4, 5, 4, 6
44 .byte 0, 1, 0, 2, 8, 9, 8, 10
45 .byte 32, 33, 32, 34, 36, 37, 36, 38
46 .byte 32, 33, 32, 34, 40, 41, 40, 42
47 .byte 0, 1, 0, 2, 4, 5, 4, 6
48 .byte 0, 1, 0, 2, 8, 9, 8, 10
49 .byte 16, 17, 16, 18, 20, 21, 20, 22
50 .byte 16, 17, 16, 18, 24, 25, 24, 26
51 .byte 63, 61, 63, 62, 55, 53, 55, 54
52 .byte 6
[all...]
/external/vixl/examples/
H A Dabs.cc48 byte assm_buf[BUF_SIZE];
H A Dgetting-started.cc45 byte assm_buf[BUF_SIZE];
/external/openssl/crypto/aes/asm/
H A Daesni-sha1-x86_64.S12 .byte 0xf3,0xc3
54 .byte 102,15,56,0,198
56 .byte 102,15,56,0,206
57 .byte 102,15,56,0,214
58 .byte 102,15,56,0,222
78 .byte 102,69,15,56,220,222
82 .byte 102,15,58,15,224,8
104 .byte 102,69,15,56,220,223
131 .byte 102,69,15,56,220,222
147 .byte 10
[all...]
/external/valgrind/main/memcheck/tests/
H A Dvarinfo5.stderr.exp1 Uninitialised byte(s) found during client check request
12 Uninitialised byte(s) found during client check request
20 Uninitialised byte(s) found during client check request
28 Uninitialised byte(s) found during client check request
36 Uninitialised byte(s) found during client check request
44 Uninitialised byte(s) found during client check request
52 Uninitialised byte(s) found during client check request
61 Uninitialised byte(s) found during client check request
70 Uninitialised byte(s) found during client check request
76 Location 0x........ is 1 byte insid
[all...]
/external/yaffs2/yaffs2/
H A Dyaffs_ecc.c21 * The ECC can correct single bit errors in a 256-byte page of data. Thus, two such ECC
22 * blocks are used on a 512-byte NAND page.
28 * for each byte of data. These are instead provided in a table in bits7..2.
99 /* Calculate the ECC for a 256-byte block of data */
114 if (b & 0x01) // odd number of bits in the byte
171 /* Correct the ECC on a 256 byte block of data */
190 unsigned byte; local
202 bit = byte = 0;
205 byte |= 0x80;
207 byte |
[all...]
/external/chromium_org/third_party/libjpeg_turbo/simd/
H A Djdsammmx.asm104 add eax, byte SIZEOF_MMWORD-1
105 and eax, byte -SIZEOF_MMWORD
106 cmp eax, byte SIZEOF_MMWORD
168 sub eax, byte SIZEOF_MMWORD
169 add esi, byte 1*SIZEOF_MMWORD ; inptr
170 add edi, byte 2*SIZEOF_MMWORD ; outptr
171 cmp eax, byte SIZEOF_MMWORD
180 add esi, byte SIZEOF_JSAMPROW ; input_data
181 add edi, byte SIZEOF_JSAMPROW ; output_data
224 sub esp, byte
[all...]
H A Djdsamss2-64.asm99 add rax, byte SIZEOF_XMMWORD-1
100 and rax, byte -SIZEOF_XMMWORD
101 cmp rax, byte SIZEOF_XMMWORD
161 sub rax, byte SIZEOF_XMMWORD
162 add rsi, byte 1*SIZEOF_XMMWORD ; inptr
163 add rdi, byte 2*SIZEOF_XMMWORD ; outptr
164 cmp rax, byte SIZEOF_XMMWORD
173 add rsi, byte SIZEOF_JSAMPROW ; input_data
174 add rdi, byte SIZEOF_JSAMPROW ; output_data
209 sub rsp, byte
[all...]
H A Djdsamss2.asm104 add eax, byte SIZEOF_XMMWORD-1
105 and eax, byte -SIZEOF_XMMWORD
106 cmp eax, byte SIZEOF_XMMWORD
168 sub eax, byte SIZEOF_XMMWORD
169 add esi, byte 1*SIZEOF_XMMWORD ; inptr
170 add edi, byte 2*SIZEOF_XMMWORD ; outptr
171 cmp eax, byte SIZEOF_XMMWORD
180 add esi, byte SIZEOF_JSAMPROW ; input_data
181 add edi, byte SIZEOF_JSAMPROW ; output_data
222 sub esp, byte
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A DWProgram.h18 uint16_t makeWord(byte h, byte l);
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcoding.cc117 uint32_t byte = *(reinterpret_cast<const unsigned char*>(p)); local
119 if (byte & 128) {
121 result |= ((byte & 127) << shift);
123 result |= (byte << shift);
146 uint64_t byte = *(reinterpret_cast<const unsigned char*>(p)); local
148 if (byte & 128) {
150 result |= ((byte & 127) << shift);
152 result |= (byte << shift);
/external/chromium_org/tools/clang/scripts/
H A Drun_tool.py249 for byte in reversed(contents[:offset]):
251 if byte in _WHITESPACE_BYTES:
253 if byte in (ord(','), ord(':'), ord('('), ord('{')):
254 char_before = chr(byte)
258 for byte in contents[offset:]:
260 if byte in _WHITESPACE_BYTES:
262 if byte == ord(','):
263 char_after = chr(byte)
/external/chromium_org/tools/gn/
H A Dlocation.cc20 int byte)
24 byte_(byte) {
17 Location(const InputFile* file, int line_number, int char_offset, int byte) argument
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-x64.cc73 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate(
95 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate(
127 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate(
149 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate(
154 // Assemble a function that compare argument byte returing 1 if equal else 0.
180 byte* buffe
[all...]
/external/llvm/test/MC/Mips/
H A Dxgot.s38 sw $ra, 20($sp) # 4-byte Folded Spill
50 lw $ra, 20($sp) # 4-byte Folded Reload

Completed in 8793 milliseconds

1234567891011>>