Home
last modified time | relevance | path

Searched refs:current_byte (Results 1 – 25 of 573) sorted by relevance

12345678910>>...23

/dports/security/snort/snort-2.9.18/src/dynamic-plugins/sf_engine/examples/
H A D32694.c187 *current_byte += sp->payload[*current_byte] + 1; in skip_over_data()
244 current_byte++; in ruleVD_OPENLDAPeval()
249 current_byte += sp->payload[current_byte] & 0x0F; in ruleVD_OPENLDAPeval()
251 current_byte++; in ruleVD_OPENLDAPeval()
259 current_byte++; in ruleVD_OPENLDAPeval()
272 current_byte++; in ruleVD_OPENLDAPeval()
276 current_byte += sp->payload[current_byte] & 0x0F; in ruleVD_OPENLDAPeval()
278 current_byte++; in ruleVD_OPENLDAPeval()
287 current_byte++; in ruleVD_OPENLDAPeval()
300 current_byte++; in ruleVD_OPENLDAPeval()
[all …]
H A Dbug34427.c168 u_int32_t current_byte = 0; in ruleDOMINO_LDAP_INVALID_DNeval() local
195 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
202 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
210 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
215 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
226 current_byte += sp->payload[current_byte] + 1; in ruleDOMINO_LDAP_INVALID_DNeval()
236 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
240 current_byte += sp->payload[current_byte] & 0x0F; in ruleDOMINO_LDAP_INVALID_DNeval()
242 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
253 current_byte++; in ruleDOMINO_LDAP_INVALID_DNeval()
[all …]
/dports/www/p5-AMF-Perl/AMF-Perl-0.15/lib/AMF/Perl/IO/
H A DInputStream.pm51 $self->{current_byte}=0;
80 $self->{current_byte} += 1;
102 $self->{current_byte} += 2;
115 my $byte1 = $self->{current_byte};
116 my $byte2 = $self->{current_byte}+1;
124 $self->{current_byte} = $self->{current_byte} + 4;
158 $self->{current_byte} += 8;
175 my @slice = @{$self->{raw_data}}[$self->{current_byte}.. $self->{current_byte}+$length-1];
178 $self->{current_byte} += $length;
193 my @slice = @{$self->{raw_data}}[$self->{current_byte} .. $self->{current_byte}+$length-1];
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/chrome_cleaner/parsers/shortcut_parser/target/
H A Dlnk_parser.cc42 DWORD* current_byte, in ReadUnsignedShort() argument
44 if (*current_byte + kUInt16Size >= buffer.size()) { in ReadUnsignedShort()
49 *current_byte += kUInt16Size; in ReadUnsignedShort()
56 const DWORD string_start = *current_byte; in NullTerminatedASCIIBufferToWString()
69 *current_byte += string_size + 1; in NullTerminatedASCIIBufferToWString()
79 const DWORD string_start = *current_byte; in NullTerminatedUtf16BufferToWString()
107 if (*current_byte >= buffer.size()) { in NullTerminatedStringToWString()
131 *current_byte += structure_size * kShortSize; in SkipUtf16StringStructure()
133 if (*current_byte >= buffer.size()) { in SkipUtf16StringStructure()
164 *current_byte += string_size * sizeof(wchar_t); in ReadUtf16StringStructure()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dbitmap_generate.h47 current_byte = bit ? (current_byte | bit_mask) : current_byte; in GenerateBits()
51 *cur++ = current_byte; in GenerateBits()
52 current_byte = 0; in GenerateBits()
56 *cur++ = current_byte; in GenerateBits()
71 uint8_t current_byte; in GenerateBitsUnrolled() local
78 current_byte = *cur & BitUtil::kPrecedingBitmask[start_bit_offset]; in GenerateBitsUnrolled()
80 current_byte |= g() * bit_mask; in GenerateBitsUnrolled()
84 *cur++ = current_byte; in GenerateBitsUnrolled()
100 current_byte = 0; in GenerateBitsUnrolled()
103 current_byte |= g() * bit_mask; in GenerateBitsUnrolled()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/util/
H A Dbitmap_generate.h47 current_byte = bit ? (current_byte | bit_mask) : current_byte; in GenerateBits()
51 *cur++ = current_byte; in GenerateBits()
52 current_byte = 0; in GenerateBits()
56 *cur++ = current_byte; in GenerateBits()
71 uint8_t current_byte; in GenerateBitsUnrolled() local
78 current_byte = *cur & BitUtil::kPrecedingBitmask[start_bit_offset]; in GenerateBitsUnrolled()
80 current_byte |= g() * bit_mask; in GenerateBitsUnrolled()
84 *cur++ = current_byte; in GenerateBitsUnrolled()
100 current_byte = 0; in GenerateBitsUnrolled()
103 current_byte |= g() * bit_mask; in GenerateBitsUnrolled()
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/utils/
H A Dunicode.cpp9current_byte(in_current_byte), range_end_byte(in_range_end_byte), range_start_byte(in_range_start_… in text_iterator()
26 utf8::next(current_byte, range_end_byte); in operator ++()
33 ++current_byte; in operator ++()
42 utf8::prior(current_byte, range_start_byte); in operator --()
49 --current_byte; in operator --()
57 return utf8::peek_next(current_byte, range_end_byte); in operator *()
59 …Error(LOCATION, "Exception while decoding UTF-8 sequence near '%.16s': %s", current_byte, e.what()… in operator *()
64 return (codepoint_t)*reinterpret_cast<const uint8_t*>(current_byte); in operator *()
68 return current_byte; in pos()
73 return current_byte == rhs.current_byte; in operator ==()
[all …]
/dports/multimedia/libmpeg3/libmpeg3-1.8/
H A Dmpeg3io.c32 dst->current_byte = 0; in mpeg3_copy_fs()
78 fs->current_byte = 0; in mpeg3io_open_file()
110 fs->current_byte += fragment_size; in mpeg3io_read_data()
123 fs->current_byte = byte; in mpeg3io_seek()
124 return (fs->current_byte < 0) || (fs->current_byte > fs->total_bytes); in mpeg3io_seek()
130 fs->current_byte += bytes; in mpeg3io_seek_relative()
131 return (fs->current_byte < 0) || (fs->current_byte > fs->total_bytes); in mpeg3io_seek_relative()
141 if(fs->current_byte < fs->buffer_position && in mpeg3io_read_buffer()
142 fs->current_byte >= fs->buffer_position - MPEG3_IO_SIZE / 2) in mpeg3io_read_buffer()
170 fs->buffer_offset = fs->current_byte - fs->buffer_position; in mpeg3io_read_buffer()
[all …]
H A Dmpeg3split.c31 long current_byte = 0; in split_video() local
70 while(current_byte < total_bytes && !result) in split_video()
87 if(current_byte + fragment_size >= total_bytes) in split_video()
89 fragment_size = total_bytes - current_byte; in split_video()
96 fseek(in, current_byte + fragment_size, SEEK_SET); in split_video()
104 fragment_size = ftell(in) - current_byte; in split_video()
105 fseek(in, current_byte, SEEK_SET); in split_video()
109 if(current_byte > 0) in split_video()
119 current_byte += fragment_size; in split_video()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/sandbox/win/src/sidestep/
H A Dmini_disassembler.cpp35 unsigned char* current_byte = start_byte; in Disassemble() local
37 InstructionType instruction_type = ProcessPrefixes(current_byte, &size); in Disassemble()
42 current_byte += size; in Disassemble()
48 instruction_type = ProcessOpcode(current_byte, 0, &size); in Disassemble()
55 current_byte += size; in Disassemble()
69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
124 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
125 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
128 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
133 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/devel/google-perftools/gperftools-2.9.1/src/windows/
H A Dmini_disassembler.cc61 unsigned char* current_byte = start_byte; in Disassemble() local
63 InstructionType instruction_type = ProcessPrefixes(current_byte, size); in Disassemble()
68 current_byte += size; in Disassemble()
74 instruction_type = ProcessOpcode(current_byte, 0, size); in Disassemble()
81 current_byte += size; in Disassemble()
95 instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
157 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
158 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
161 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
166 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/traceline/traceline/sidestep/
H A Dmini_disassembler.cc56 unsigned char* current_byte = start_byte; in Disassemble() local
58 InstructionType instruction_type = ProcessPrefixes(current_byte, &size); in Disassemble()
63 current_byte += size; in Disassemble()
69 instruction_type = ProcessOpcode(current_byte, 0, &size); in Disassemble()
76 current_byte += size; in Disassemble()
90 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
144 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
145 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
148 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
153 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/tcmalloc/vendor/src/windows/
H A Dmini_disassembler.cc61 unsigned char* current_byte = start_byte; in Disassemble() local
63 InstructionType instruction_type = ProcessPrefixes(current_byte, size); in Disassemble()
68 current_byte += size; in Disassemble()
74 instruction_type = ProcessOpcode(current_byte, 0, size); in Disassemble()
81 current_byte += size; in Disassemble()
95 instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
157 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
158 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
161 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
166 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/tcmalloc/chromium/src/windows/
H A Dmini_disassembler.cc61 unsigned char* current_byte = start_byte; in Disassemble() local
63 InstructionType instruction_type = ProcessPrefixes(current_byte, size); in Disassemble()
68 current_byte += size; in Disassemble()
74 instruction_type = ProcessOpcode(current_byte, 0, size); in Disassemble()
81 current_byte += size; in Disassemble()
95 instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
157 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
158 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
161 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
166 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/traceline/traceline/sidestep/
H A Dmini_disassembler.cc56 unsigned char* current_byte = start_byte; in Disassemble() local
58 InstructionType instruction_type = ProcessPrefixes(current_byte, &size); in Disassemble()
63 current_byte += size; in Disassemble()
69 instruction_type = ProcessOpcode(current_byte, 0, &size); in Disassemble()
76 current_byte += size; in Disassemble()
90 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
144 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
145 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
148 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
153 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/www/firefox-legacy/firefox-52.8.0esr/security/sandbox/chromium/sandbox/win/src/sidestep/
H A Dmini_disassembler.cpp35 unsigned char* current_byte = start_byte; in Disassemble() local
37 InstructionType instruction_type = ProcessPrefixes(current_byte, &size); in Disassemble()
42 current_byte += size; in Disassemble()
48 instruction_type = ProcessOpcode(current_byte, 0, &size); in Disassemble()
55 current_byte += size; in Disassemble()
69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
123 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
124 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
127 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
132 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/sandbox/win/src/sidestep/
H A Dmini_disassembler.cpp35 unsigned char* current_byte = start_byte; in Disassemble() local
37 InstructionType instruction_type = ProcessPrefixes(current_byte, &size); in Disassemble()
42 current_byte += size; in Disassemble()
48 instruction_type = ProcessOpcode(current_byte, 0, &size); in Disassemble()
55 current_byte += size; in Disassemble()
69 *instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
124 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
125 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
128 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
133 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/gperftools-2.5/src/windows/
H A Dmini_disassembler.cc61 unsigned char* current_byte = start_byte; in Disassemble() local
63 InstructionType instruction_type = ProcessPrefixes(current_byte, size); in Disassemble()
68 current_byte += size; in Disassemble()
74 instruction_type = ProcessOpcode(current_byte, 0, size); in Disassemble()
81 current_byte += size; in Disassemble()
95 instruction_bytes += operand_bytes_ + (current_byte - start_byte); in Disassemble()
157 unsigned char current_byte = (*start_byte) >> table.shift_; in ProcessOpcode() local
158 current_byte = current_byte & table.mask_; // Mask out the bits we will use in ProcessOpcode()
161 if (current_byte < table.min_lim_ || current_byte > table.max_lim_) { in ProcessOpcode()
166 const Opcode& opcode = table.table_[current_byte]; in ProcessOpcode()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/util/
H A Dbit_util.h633 current_byte = bit ? (current_byte | bit_mask) : current_byte; in GenerateBits()
663 current_byte = g() ? (current_byte | bit_mask) : current_byte; in GenerateBitsUnrolled()
673 current_byte = g() ? current_byte | 0x01 : current_byte; in GenerateBitsUnrolled()
674 current_byte = g() ? current_byte | 0x02 : current_byte; in GenerateBitsUnrolled()
675 current_byte = g() ? current_byte | 0x04 : current_byte; in GenerateBitsUnrolled()
676 current_byte = g() ? current_byte | 0x08 : current_byte; in GenerateBitsUnrolled()
677 current_byte = g() ? current_byte | 0x10 : current_byte; in GenerateBitsUnrolled()
678 current_byte = g() ? current_byte | 0x20 : current_byte; in GenerateBitsUnrolled()
679 current_byte = g() ? current_byte | 0x40 : current_byte; in GenerateBitsUnrolled()
680 current_byte = g() ? current_byte | 0x80 : current_byte; in GenerateBitsUnrolled()
[all …]
/dports/multimedia/libquicktime-lame/libquicktime-1.2.4/utils/
H A Drecover.c77 int64_t current_byte, ftell_byte; in main() local
243 current_byte = ftell_byte; in main()
255 current_byte += i - 6; in main()
256 fseeko(in, current_byte, SEEK_SET); in main()
257 ftell_byte = current_byte; in main()
259 audio_end = jpeg_start = current_byte; in main()
269 current_byte += i + 2; in main()
270 fseeko(in, current_byte, SEEK_SET); in main()
271 ftell_byte = current_byte; in main()
273 audio_start = jpeg_end = current_byte; in main()
[all …]
/dports/multimedia/libquicktime/libquicktime-1.2.4/utils/
H A Drecover.c77 int64_t current_byte, ftell_byte; in main() local
243 current_byte = ftell_byte; in main()
255 current_byte += i - 6; in main()
256 fseeko(in, current_byte, SEEK_SET); in main()
257 ftell_byte = current_byte; in main()
259 audio_end = jpeg_start = current_byte; in main()
269 current_byte += i + 2; in main()
270 fseeko(in, current_byte, SEEK_SET); in main()
271 ftell_byte = current_byte; in main()
273 audio_start = jpeg_end = current_byte; in main()
[all …]
/dports/lang/squeak/Squeak-4.10.2.2614-src/Cross/plugins/Mpeg3Plugin/libmpeg/
H A Dmpeg3io.h17 long current_byte; member
25 #define mpeg3io_tell(fs) (((mpeg3_fs_t *)(fs))->current_byte)
28 #define mpeg3io_eof(fs) (((mpeg3_fs_t *)(fs))->current_byte >= ((mpeg3_fs_t *)(fs))->total_bytes)
31 #define mpeg3io_bof(fs) (((mpeg3_fs_t *)(fs))->current_byte < 0)
53 fs->current_byte += 4; in mpeg3io_read_int32()
59 fs->current_byte++; in mpeg3io_read_char()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/libharu/vtklibharu/src/
H A Dhpdf_encoder_utf.c27 HPDF_BYTE current_byte; member
88 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
96 if (utf8_attr->current_byte == 0) { in UTF8_Encoder_ByteType_Func()
98 utf8_attr->current_byte = 1; in UTF8_Encoder_ByteType_Func()
101 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
113 utf8_attr->current_byte = 0; //ERROR, skip this byte in UTF8_Encoder_ByteType_Func()
115 utf8_attr->utf8_bytes[utf8_attr->current_byte] = byte; in UTF8_Encoder_ByteType_Func()
116 if (utf8_attr->current_byte == utf8_attr->end_byte) { in UTF8_Encoder_ByteType_Func()
117 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
121 utf8_attr->current_byte++; in UTF8_Encoder_ByteType_Func()
/dports/print/libharu/libharu-RELEASE_2_3_0/src/
H A Dhpdf_encoder_utf.c27 HPDF_BYTE current_byte; member
88 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
96 if (utf8_attr->current_byte == 0) { in UTF8_Encoder_ByteType_Func()
98 utf8_attr->current_byte = 1; in UTF8_Encoder_ByteType_Func()
101 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
113 utf8_attr->current_byte = 0; //ERROR, skip this byte in UTF8_Encoder_ByteType_Func()
115 utf8_attr->utf8_bytes[utf8_attr->current_byte] = byte; in UTF8_Encoder_ByteType_Func()
116 if (utf8_attr->current_byte == utf8_attr->end_byte) { in UTF8_Encoder_ByteType_Func()
117 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
121 utf8_attr->current_byte++; in UTF8_Encoder_ByteType_Func()
/dports/math/vtk8/VTK-8.2.0/ThirdParty/libharu/vtklibharu/src/
H A Dhpdf_encoder_utf.c27 HPDF_BYTE current_byte; member
88 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
96 if (utf8_attr->current_byte == 0) { in UTF8_Encoder_ByteType_Func()
98 utf8_attr->current_byte = 1; in UTF8_Encoder_ByteType_Func()
101 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
113 utf8_attr->current_byte = 0; //ERROR, skip this byte in UTF8_Encoder_ByteType_Func()
115 utf8_attr->utf8_bytes[utf8_attr->current_byte] = byte; in UTF8_Encoder_ByteType_Func()
116 if (utf8_attr->current_byte == utf8_attr->end_byte) { in UTF8_Encoder_ByteType_Func()
117 utf8_attr->current_byte = 0; in UTF8_Encoder_ByteType_Func()
121 utf8_attr->current_byte++; in UTF8_Encoder_ByteType_Func()

12345678910>>...23