Home
last modified time | relevance | path

Searched refs:byte1 (Results 1 - 25 of 39) sorted by relevance

12

/third_party/json/tests/src/
H A Dunit-unicode2.cpp32 void check_utf8dump(bool success_expected, int byte1, int byte2, int byte3, int byte4);
34 void check_utf8dump(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8dump() argument
39 CAPTURE(byte1) in check_utf8dump()
44 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8dump()
119 void check_utf8string(bool success_expected, int byte1, int byte2, int byte3, int byte4);
122 void check_utf8string(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8string() argument
132 CAPTURE(byte1) in check_utf8string()
133 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8string()
195 for (int byte1 = 0x80; byte1 <
[all...]
H A Dunit-unicode4.cpp32 void check_utf8dump(bool success_expected, int byte1, int byte2, int byte3, int byte4);
34 void check_utf8dump(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8dump() argument
39 CAPTURE(byte1) in check_utf8dump()
44 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8dump()
119 void check_utf8string(bool success_expected, int byte1, int byte2, int byte3, int byte4);
122 void check_utf8string(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8string() argument
132 CAPTURE(byte1) in check_utf8string()
133 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8string()
197 for (int byte1 = 0xF1; byte1 <
[all...]
H A Dunit-unicode5.cpp32 void check_utf8dump(bool success_expected, int byte1, int byte2, int byte3, int byte4);
34 void check_utf8dump(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8dump() argument
39 CAPTURE(byte1) in check_utf8dump()
44 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8dump()
119 void check_utf8string(bool success_expected, int byte1, int byte2, int byte3, int byte4);
122 void check_utf8string(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8string() argument
132 CAPTURE(byte1) in check_utf8string()
133 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8string()
197 for (int byte1 = 0xF4; byte1 <
[all...]
H A Dunit-unicode3.cpp32 void check_utf8dump(bool success_expected, int byte1, int byte2, int byte3, int byte4);
34 void check_utf8dump(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8dump() argument
39 CAPTURE(byte1) in check_utf8dump()
44 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8dump()
119 void check_utf8string(bool success_expected, int byte1, int byte2, int byte3, int byte4);
122 void check_utf8string(bool success_expected, int byte1, int byte2 = -1, int byte3 = -1, int byte4 = -1) in check_utf8string() argument
132 CAPTURE(byte1) in check_utf8string()
133 json_string += std::string(1, static_cast<char>(byte1)); in check_utf8string()
197 for (int byte1 = 0xF0; byte1 <
[all...]
/third_party/rust/crates/memchr/bench/src/memchr/
H A Dmod.rs29 search.byte1.count, in all()
30 memchr1_count(search.byte1.byte, search.corpus), in all()
37 search.byte1.count, in all()
38 memchr1_count(search.byte1.byte, search.corpus), in all()
45 search.byte1.count, in all()
46 memchr1_count(search.byte1.byte, search.corpus), in all()
53 search.byte1.count, in all()
54 memchr1_count(search.byte1.byte, search.corpus), in all()
62 search.byte1.count, in all()
63 imp::memchr1_libc_count(search.byte1 in all()
[all...]
H A Dinputs.rs258 pub byte1: SearchByte,
269 Some(Search1 { corpus, byte1: bytes[0] }) in new()
280 pub byte1: SearchByte,
293 Some(Search2 { corpus, byte1: bytes[0], byte2: bytes[1] }) in new()
304 pub byte1: SearchByte,
321 byte1: bytes[0], in new()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUtf8.java125 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
128 // undo byte1's sign-extension bits):
130 // int byte1 = (byte) state;
137 // a state, we ensure that byte1 is negative and subsequent bytes
179 private static int incompleteStateFor(int byte1) { in incompleteStateFor() argument
180 return (byte1 > (byte) 0xF4) ? MALFORMED : byte1; in incompleteStateFor()
183 private static int incompleteStateFor(int byte1, int byte2) { in incompleteStateFor() argument
184 return (byte1 > (byte) 0xF4 || byte2 > (byte) 0xBF) ? MALFORMED : byte1 in incompleteStateFor()
187 incompleteStateFor(int byte1, int byte2, int byte3) incompleteStateFor() argument
207 incompleteStateFor( final ByteBuffer buffer, final int byte1, final int index, final int remaining) incompleteStateFor() argument
1848 unsafeIncompleteStateFor( byte[] bytes, int byte1, long offset, int remaining) unsafeIncompleteStateFor() argument
1863 unsafeIncompleteStateFor(long address, final int byte1, int remaining) unsafeIncompleteStateFor() argument
1900 handleOneByte(byte byte1, char[] resultArr, int resultPos) handleOneByte() argument
1904 handleTwoBytes(byte byte1, byte byte2, char[] resultArr, int resultPos) handleTwoBytes() argument
1914 handleThreeBytes( byte byte1, byte byte2, byte byte3, char[] resultArr, int resultPos) handleThreeBytes() argument
1930 handleFourBytes( byte byte1, byte byte2, byte byte3, byte byte4, char[] resultArr, int resultPos) handleFourBytes() argument
[all...]
/third_party/libunwind/libunwind/src/ia64/
H A Dunwind_decoder.h109 unsigned char byte1, abreg; in unw_decode_x1() local
112 byte1 = *dp++; in unw_decode_x1()
115 abreg = (byte1 & 0x7f); in unw_decode_x1()
116 if (byte1 & 0x80) in unw_decode_x1()
126 unsigned char byte1, byte2, abreg, x, ytreg; in unw_decode_x2() local
129 byte1 = *dp++; byte2 = *dp++; in unw_decode_x2()
131 abreg = (byte1 & 0x7f); in unw_decode_x2()
133 x = (byte1 >> 7) & 1; in unw_decode_x2()
134 if ((byte1 & 0x80) == 0 && ytreg == 0) in unw_decode_x2()
144 unsigned char byte1, byte in unw_decode_x3() local
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; unw_decode_x4() local
196 unsigned char byte1, mask, grsave; unw_decode_r2() local
232 unsigned char byte1 = *dp++; unw_decode_p2_p5() local
239 unsigned char byte1 = *dp++, r, dst; unw_decode_p2_p5() local
264 unw_word grmask, frmask, byte1, byte2, byte3; unw_decode_p2_p5() local
292 unsigned char r, byte1, byte2; unw_decode_p7_p10() local
[all...]
/third_party/rust/crates/aho-corasick/src/
H A Dprefilter.rs563 byte1: bytes[0], in build()
568 byte1: bytes[0], in build()
573 byte1: bytes[0], in build()
662 byte1: u8,
673 memchr(self.byte1, &haystack[at..]) in next_candidate()
722 byte1: u8,
733 memchr2(self.byte1, self.byte2, &haystack[at..]) in next_candidate()
761 byte1: u8,
773 memchr3(self.byte1, self.byte2, self.byte3, &haystack[at..]) in next_candidate()
869 1 => Some(PrefilterObj::new(StartBytesOne { byte1 in build()
[all...]
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
H A Dglx_usefont.c61 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1); in dump_font_struct()
142 char2b.byte1 = (c >> 8) & 0xff; in fill_bitmap()
169 unsigned int byte1 = 0, byte2 = 0; in isvalid() local
183 byte1 = which >> 8; in isvalid()
186 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1)) in isvalid()
198 i = ((byte1 - fs->min_byte1) * pages) + in isvalid()
/third_party/mesa3d/src/glx/
H A Dxfont.c65 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1); in dump_font_struct()
146 char2b.byte1 = (c >> 8) & 0xff; in fill_bitmap()
173 int byte1 = 0, byte2 = 0; in isvalid() local
187 byte1 = which >> 8; in isvalid()
190 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1)) in isvalid()
202 i = ((byte1 - fs->min_byte1) * pages) + in isvalid()
/third_party/libphonenumber/cpp/src/phonenumbers/utf/
H A Dunicodetext.cc450 uint8 byte1 = static_cast<uint8>(it_[0]); in operator *() local
451 if (byte1 < 0x80) in operator *()
452 return byte1; in operator *()
455 if (byte1 < 0xE0) in operator *()
456 return ((byte1 & 0x1F) << 6) in operator *()
460 if (byte1 < 0xF0) in operator *()
461 return ((byte1 & 0x0F) << 12) in operator *()
466 return ((byte1 & 0x07) << 18) in operator *()
/third_party/vk-gl-cts/external/amber/src/samples/
H A Dppm.cc31 uint8_t byte1(uint32_t word) { in byte1() function
62 buffer->push_back(byte1(pixel)); // G in ConvertToPPM()
H A Dpng.cc35 unsigned char byte1(uint32_t word) { in byte1() function
63 data.push_back(byte1(pixel)); // G in ConvertToPNG()
/third_party/backends/backend/
H A Dhs2p-scsi.h441 SANE_Byte byte1; /* 7-5:LUN; 4:PF; 2:Reserved; 1:SP member
647 SANE_Byte byte1; /* 7-5:LUN; 4-0:Reserved */ member
823 SANE_Byte sef; /*byte1 7-2:ignored 1:SEF '0'-invalid section; '1'-valid section */
1025 SANE_Byte byte1; /* 7-5: LUN; * 4-1:Reserved; * 0:Single bit is 0 */ member
1083 SANE_Byte byte1; /* 7-5:LUN; 4-0:Reserved */ member
1161 SANE_Byte byte1; /* 7-2:Reserved; 1-0: MTF Filter Select */ member
H A Dricoh.h292 SANE_Byte byte1; member
H A Dibm.h348 SANE_Byte byte1; member
H A Dhs2p-scsi.c870 msc.cmd.byte1 &= ~SMS_SP; /* unset bit0 SavePage to 0 */ in mode_select()
871 msc.cmd.byte1 |= SMS_PF; /* set bit4 PageFormat to 1 */ in mode_select()
1064 cmd.byte1 &= ~0x01; /* unset single bit 0 */ in get_window()
1557 SANE_Byte byte1; /* 7-5: LUN; 4: 3rd Party; 3-1: 3rd Party Device; 0: Reserved */ in unit_cmd() member
1567 cmd.byte1 = LUN & 0xE1; /* Mask=11100001 3rd Party and 3rd Party Device must be 0 */ in unit_cmd()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp323 uint8_t byte1, byte2; in readPrefixes() local
324 if (consume(insn, byte1)) { in readPrefixes()
334 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) && in readPrefixes()
335 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) { in readPrefixes()
338 --insn->readerCursor; // unconsume byte1 in readPrefixes()
344 insn->vectorExtensionPrefix[1] = byte1; in readPrefixes()
370 uint8_t byte1; in readPrefixes() local
371 if (peek(insn, byte1)) { in readPrefixes()
376 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) in readPrefixes()
401 uint8_t byte1; in readPrefixes() local
433 uint8_t byte1; readPrefixes() local
[all...]
/third_party/node/deps/v8/src/base/
H A Datomicops.h419 uint8_t byte1 = u1 & 0xFF; in MemcmpNotEqualFundamental()
421 if (byte1 != byte2) return byte1 < byte2 ? -1 : 1; in MemcmpNotEqualFundamental()
/third_party/alsa-lib/include/
H A Dump_msg.h25 uint8_t byte1; /**< First data byte */ member
29 uint8_t byte1; /**< First data byte */
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_iptc.cpp277 uint32 byte1 = stream.Get_uint8 (); in Parse() local
281 if (byte1 == 27 /* Escape */ && in Parse()
/third_party/node/deps/v8/src/codegen/arm64/
H A Dmacro-assembler-arm64.cc413 int byte1 = (imm & 0xFF); in Movi16bitHelper() local
415 if (byte1 == byte2) { in Movi16bitHelper()
416 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1); in Movi16bitHelper()
417 } else if (byte1 == 0) { in Movi16bitHelper()
420 movi(vd, byte1); in Movi16bitHelper()
421 } else if (byte1 == 0xFF) { in Movi16bitHelper()
424 mvni(vd, ~byte1 & 0xFF); in Movi16bitHelper()
/third_party/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc1026 int byte1 = (imm & 0xff); in Emit() local
1028 if (byte1 == byte2) { in Emit()
1029 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1); in Emit()
1030 } else if (byte1 == 0) { in Emit()
1033 movi(vd, byte1); in Emit()
1034 } else if (byte1 == 0xff) { in Emit()
1037 mvni(vd, ~byte1 & 0xff); in Emit()
/third_party/json/include/nlohmann/detail/input/
H A Dbinary_reader.hpp844 const auto byte1 = static_cast<unsigned char>(byte1_raw); in parse_cbor_internal() local
855 const auto half = static_cast<unsigned int>((byte1 << 8u) + byte2); in parse_cbor_internal()
2391 const auto byte1 = static_cast<unsigned char>(byte1_raw); in get_ubjson_value() local
2402 const auto half = static_cast<unsigned int>((byte2 << 8u) + byte1); in get_ubjson_value()

Completed in 31 milliseconds

12