Searched refs:byte (Results 126 - 150 of 953) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/boringssl/mac-x86/crypto/aes/
H A Daes-586.S833 .byte 99,124,119,123,242,107,111,197
834 .byte 48,1,103,43,254,215,171,118
835 .byte 202,130,201,125,250,89,71,240
836 .byte 173,212,162,175,156,164,114,192
837 .byte 183,253,147,38,54,63,247,204
838 .byte 52,165,229,241,113,216,49,21
839 .byte 4,199,35,195,24,150,5,154
840 .byte 7,18,128,226,235,39,178,117
841 .byte 9,131,44,26,27,110,90,160
842 .byte 8
[all...]
/external/openssl/crypto/aes/asm/
H A Daes-586.S840 .byte 99,124,119,123,242,107,111,197
841 .byte 48,1,103,43,254,215,171,118
842 .byte 202,130,201,125,250,89,71,240
843 .byte 173,212,162,175,156,164,114,192
844 .byte 183,253,147,38,54,63,247,204
845 .byte 52,165,229,241,113,216,49,21
846 .byte 4,199,35,195,24,150,5,154
847 .byte 7,18,128,226,235,39,178,117
848 .byte 9,131,44,26,27,110,90,160
849 .byte 8
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
H A Ddatavis.asm13 .byte 1, 2, 070, 0x12
14 .byte
/external/libexif/libexif/
H A Dexif-byte-order.c1 /* exif-byte-order.c
23 #include <libexif/exif-byte-order.h>
/external/llvm/test/MC/ELF/
H A Dalias.s15 .byte 0
/external/llvm/test/MC/Mips/
H A Delf-N64.s34 sd $ra, 8($sp) # 8-byte Folded Spill
35 sd $gp, 0($sp) # 8-byte Folded Spill
45 ld $gp, 0($sp) # 8-byte Folded Reload
46 ld $ra, 8($sp) # 8-byte Folded Reload
H A Dr-mips-got-disp.s27 sd $ra, 8($sp) # 8-byte Folded Spill
28 sd $gp, 0($sp) # 8-byte Folded Spill
39 ld $gp, 0($sp) # 8-byte Folded Reload
40 ld $ra, 8($sp) # 8-byte Folded Reload
55 .8byte 1 # 0x1
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp258 for (int byte = 0; byte < row_size && byte_cnt < (int)data_size; byte++) {
263 if (byte >= BytesPerPixel) {
264 left = pSrcData[byte - BytesPerPixel];
266 pDestData[byte + 1] = pSrcData[byte] - left;
273 up = pSrcData[byte - row_size];
275 pDestData[byte + 1] = pSrcData[byte]
[all...]
/external/valgrind/main/memcheck/tests/
H A Dbuflen_check.stderr.exp1 Syscall param socketcall.getsockname(name) points to unaddressable byte(s)
6 Syscall param socketcall.getsockname(namelen_in) points to unaddressable byte(s)
H A Dsh-mem-random.stdout.exp4 test passed, sum = 38338686 (127.79562 per byte)
7 test passed, sum = 38583755 (128.61252 per byte)
H A Dvarinfo4.stderr.exp1 Uninitialised byte(s) found during client check request
5 Location 0x........ is 1 byte inside a[3].xyzzy[21].c1,
8 Uninitialised byte(s) found during client check request
15 Uninitialised byte(s) found during client check request
19 Location 0x........ is 1 byte inside a[3].xyzzy[21].c2[2],
H A Ddw4.stderr.exp1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
14 Uninitialised byte(s) found during client check request
H A Dwritev1.stderr.exp2 Syscall param writev(vector[...]) points to unaddressable byte(s)
8 Syscall param writev(vector) points to unaddressable byte(s)
14 Syscall param readv(vector) points to unaddressable byte(s)
/external/chromium_org/third_party/skia/tests/
H A DPremulAlphaRoundTripTest.cpp21 uint8_t* byte = reinterpret_cast<uint8_t*>(&packed); local
22 byte[0] = SkColorGetR(c);
23 byte[1] = SkColorGetG(c);
24 byte[2] = SkColorGetB(c);
25 byte[3] = SkColorGetA(c);
31 uint8_t* byte = reinterpret_cast<uint8_t*>(&packed); local
32 byte[0] = SkColorGetB(c);
33 byte[1] = SkColorGetG(c);
34 byte[2] = SkColorGetR(c);
35 byte[
[all...]
/external/skia/tests/
H A DPremulAlphaRoundTripTest.cpp21 uint8_t* byte = reinterpret_cast<uint8_t*>(&packed); local
22 byte[0] = SkColorGetR(c);
23 byte[1] = SkColorGetG(c);
24 byte[2] = SkColorGetB(c);
25 byte[3] = SkColorGetA(c);
31 uint8_t* byte = reinterpret_cast<uint8_t*>(&packed); local
32 byte[0] = SkColorGetB(c);
33 byte[1] = SkColorGetG(c);
34 byte[2] = SkColorGetR(c);
35 byte[
[all...]
/external/llvm/lib/Support/
H A DDataExtractor.cpp138 uint8_t byte = 0; local
141 byte = Data[offset++];
142 result |= uint64_t(byte & 0x7f) << shift;
144 if ((byte & 0x80) == 0)
159 uint8_t byte = 0; local
162 byte = Data[offset++];
163 result |= uint64_t(byte & 0x7f) << shift;
165 if ((byte & 0x80) == 0)
169 // Sign bit of byte is 2nd high order bit (0x40)
170 if (shift < 64 && (byte
[all...]
/external/llvm/test/MC/ARM/
H A Dmapping-within-section.s20 .byte 1
21 .byte 2
22 .byte 3
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_filters.cpp488 for (int byte = 0; byte < pitch; byte ++) {
489 FX_BYTE raw_byte = cur_buf[byte];
493 if (byte >= Bpp) {
494 left = cur_buf[byte - Bpp];
496 cur_buf[byte] = raw_byte + left;
502 up = ref_buf[byte];
504 cur_buf[byte] = raw_byte + up;
509 if (byte >
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
H A Dwin64-dataref.asm8 extern foobar4 ; :byte
40 movzx rax, byte [foobar wrt rip]
41 movzx rax, byte [foobar+rax]
59 movzx rax, byte [trap wrt rip]
60 movzx rax, byte [trap+rax]
69 ;movzx rax, byte ptr foobar2
70 ;movzx rax, byte ptr foobar2[rax]
81 movzx rax, byte [foobar3 wrt rip]
82 movzx rax, byte [foobar3+rax]
93 movzx rax, byte [__saviden
[all...]
/external/chromium_org/sync/internal_api/public/base/
H A Dnode_ordinal.cc38 const uint8 byte = s[l - i - 1]; local
39 y |= static_cast<uint64>(byte) << (i * 8);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStream.h53 void append(unsigned char byte) { m_data.append(byte); } argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkBase64.cpp46 int byte = 0; local
56 bytes[byte] = decoded;
62 byte++;
65 if (byte == 0)
67 if (byte == 4)
70 if (byte < 2)
73 if (byte == 2)
76 } while (byte < 4);
/external/chromium_org/tools/gn/
H A Dlocation.h16 Location(const InputFile* file, int line_number, int char_offset, int byte);
21 int byte() const { return byte_; } function in class:Location
/external/chromium_org/v8/src/ia32/
H A Dsimulator-ia32.h19 typedef int (*regexp_matcher)(String*, int, const byte*,
20 const byte*, int*, int, Address, int, Isolate*);
/external/chromium_org/v8/src/x64/
H A Dsimulator-x64.h19 typedef int (*regexp_matcher)(String*, int, const byte*,
20 const byte*, int*, int, Address, int, Isolate*);

Completed in 1232 milliseconds

1234567891011>>