Home
last modified time | relevance | path

Searched refs:decode_int (Results 1 – 25 of 136) sorted by relevance

123456

/dports/net/quiche/quiche-0.9.0/src/h3/qpack/
H A Ddecoder.rs99 let req_insert_count = decode_int(&mut b, 8)?; in decode()
100 let base = decode_int(&mut b, 7)?; in decode()
112 let index = decode_int(&mut b, 6)?; in decode()
132 let index = decode_int(&mut b, 4)?; in decode()
142 let name_len = decode_int(&mut b, 3)? as usize; in decode()
175 let name_idx = decode_int(&mut b, 4)?; in decode()
224 fn decode_int(b: &mut octets::Octets, prefix: usize) -> Result<u64> { in decode_int() function
260 let len = decode_int(b, 7)? as usize; in decode_str()
284 assert_eq!(decode_int(&mut b, 5), Ok(10)); in decode_int1()
292 assert_eq!(decode_int(&mut b, 5), Ok(1337)); in decode_int2()
[all …]
/dports/cad/alliance/alliance/src/mbk/src/
H A Dalc_pars_l6.c172 int decode_int __P(( char*, char*, int ));
589 phtcon = decode_int((char *)line -> DATA,fname,mal_line) ; in decode_locap()
592 phbcon = decode_int((char *)line -> DATA,fname,mal_line) ; in decode_locap()
830 idxsig1 = decode_int( (char*)line->DATA, fname, mal_line );
833 node1 = decode_int( (char*)line->DATA, fname, mal_line );
836 idxsig2 = decode_int( (char*)line->DATA, fname, mal_line );
839 node2 = decode_int( (char*)line->DATA, fname, mal_line );
881 n1 = decode_int( line->DATA, fname, mal_line );
884 n2 = decode_int( line->DATA, fname, mal_line );
942 idx = decode_int( (char*)line->DATA, fname, mal_line );
[all …]
/dports/net-mgmt/p5-NSNMP/NSNMP-0.5/NSNMP/
H A DSimple.pm158 sub decode_int { subroutine
169 NSNMP::INTEGER => \&decode_int,
170 NSNMP::Counter32 => \&decode_int,
171 NSNMP::Gauge32 => \&decode_int,
172 NSNMP::TimeTicks => \&decode_int,
/dports/security/snort3/snort3-3.1.19.0/src/service_inspectors/http2_inspect/
H A Dhttp2_hpack.cc83 const Http2HpackIntDecode& decode_int, uint32_t& bytes_consumed, uint64_t &index) in get_hpack_table_entry() argument
87 if (!decode_int.translate(encoded_header_buffer, encoded_header_length, bytes_consumed, in get_hpack_table_entry()
102 const uint32_t encoded_header_length, const Http2HpackIntDecode& decode_int, in decode_indexed_name() argument
110 encoded_header_length, decode_int, bytes_consumed, index); in decode_indexed_name()
135 const Http2HpackIntDecode& decode_int, bool with_indexing, uint32_t& bytes_consumed, in decode_literal_header_line() argument
145 if (!decode_indexed_name(encoded_header_buffer, encoded_header_length, decode_int, in decode_literal_header_line()
209 const uint32_t encoded_header_length, const Http2HpackIntDecode& decode_int, in decode_indexed_header() argument
218 encoded_header_length, decode_int, bytes_consumed, index); in decode_indexed_header()
H A Dhttp2_hpack.h59 const uint32_t encoded_header_length, const Http2HpackIntDecode& decode_int,
65 const uint32_t encoded_header_length, const Http2HpackIntDecode& decode_int,
70 const Http2HpackIntDecode& decode_int, bool with_indexing, uint32_t& bytes_consumed,
74 const uint32_t encoded_header_length, const Http2HpackIntDecode& decode_int,
/dports/net/honeyd/honeyd-1.5c/
H A Duntagging.c99 decode_int(uint32_t *pnumber, struct evbuffer *evbuf) in decode_int() function
148 if (decode_int(&len, evbuf) == -1) in tag_consume()
166 if (decode_int(&integer, src) == -1) in tag_unmarshal()
194 if (decode_int(&integer, evbuf) == -1) in tag_unmarshal_int()
207 return (decode_int(pinteger, _buf)); in tag_unmarshal_int()
261 if (decode_int(&integer, _buf) == -1) in tag_unmarshal_timeval()
264 if (decode_int(&integer, _buf) == -1) in tag_unmarshal_timeval()
455 if (decode_int(&integer, tmp) == -1) in tagging_int_test()
/dports/security/py-authlib/Authlib-0.15.5/authlib/jose/rfc7518/_cryptography_backends/
H A D_jws.py20 from ..util import encode_int, decode_int
89 r = decode_int(sig[:length])
90 s = decode_int(sig[length:])
/dports/multimedia/totem-pl-parser/totem-pl-parser-3.26.5/plparse/
H A Dtotem-pl-parser-decode-date.c171 decode_int (const char *in, size_t inlen) in decode_int() function
214 mday = decode_int (in, inlen); in get_mday()
247 if ((year = decode_int (in, inlen)) == -1) in get_year()
316 if ((value = decode_int (inptr + 1, len - 1)) == -1) in get_tzone()
481 if ((n = decode_int (token->start, token->len)) > 12) { in parse_broken_date()
/dports/www/h2o-devel/h2o-dcc7134/lib/http3/
H A Dqpack.c456 if ((ret = decode_int(&name_index, &src, src_end, 6)) != 0) in h2o_qpack_decoder_handle_input()
461 if ((ret = decode_int(&value_len, &src, src_end, 7)) != 0) in h2o_qpack_decoder_handle_input()
472 if ((ret = decode_int(&name_len, &src, src_end, 5)) != 0) in h2o_qpack_decoder_handle_input()
479 if ((ret = decode_int(&value_len, &src, src_end, 7)) != 0) in h2o_qpack_decoder_handle_input()
488 if ((ret = decode_int(&index, &src, src_end, 5)) != 0) in h2o_qpack_decoder_handle_input()
494 if ((ret = decode_int(&max_size, &src, src_end, 5)) != 0) in h2o_qpack_decoder_handle_input()
544 if (decode_int(&index, src, src_end, prefix_bits) != 0) in resolve_static()
772 if (decode_int(&ctx->req_insert_count, src, src_end, 8) != 0) in parse_decode_context()
799 if (decode_int(&delta_base, src, src_end, 7) != 0) in parse_decode_context()
973 if ((ret = decode_int(&stream_id, &src, src_end, 7)) != 0) in h2o_qpack_encoder_handle_input()
[all …]
/dports/devel/p5-Google-ProtocolBuffers/Google-ProtocolBuffers-0.12/lib/Google/ProtocolBuffers/
H A DCodec.pm77 $primitive_type_decoders[TYPE_INT64] = \&decode_int;
79 $primitive_type_decoders[TYPE_INT32] = \&decode_int;
86 $primitive_type_decoders[TYPE_ENUM] = \&decode_int;
351 $value = decode_int($_[0], $_[1]);
/dports/databases/pg_filedump/pg_filedump-REL_14_0/
H A Ddecode.c66 decode_int(const char *buffer, unsigned int buff_size, unsigned int *out_size);
131 "int", &decode_int
134 "oid", &decode_int
137 "xid", &decode_int
140 "serial", &decode_int
514 decode_int(const char *buffer, unsigned int buff_size, unsigned int *out_size) in decode_int() function
/dports/converters/py-bencode.py/bencode.py-4.0.0/bencodepy/
H A Ddecoder.py59 self.decode_func[b'i'] = self.decode_int
94 def decode_int(self, x, f): member in BencodeDecoder
/dports/x11/xpra/xpra-4.3/xpra/net/bencode/
H A Dbencode.py31 def decode_int(x, f): function
84 decode_func['i'] = decode_int
/dports/security/py-authlib/Authlib-0.15.5/authlib/jose/rfc7518/
H A Dutil.py11 def decode_int(b): function
/dports/net-p2p/deluge-cli/deluge-2.0.3/deluge/
H A Dbencode.py32 def decode_int(x, f): function
71 decode_func[INT_DELIM] = decode_int
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/h2-0.3.4/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/devel/sccache/sccache-0.2.15/cargo-crates/h2-0.1.26/src/hpack/
H A Ddecoder.rs266 let new_size = decode_int(buf, 5)?; in process_size_update()
284 let index = decode_int(buf, 7)?; in decode_indexed()
296 let table_idx = decode_int(buf, prefix)?; in decode_literal()
323 let len = decode_int(buf, 7)?; in decode_string()
383 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/h2-0.3.7/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/lang/gleam/gleam-0.18.2/cargo-crates/h2-0.3.9/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/dns/doh-proxy/doh-proxy-0.9.2/cargo-crates/h2-0.3.4/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/net-im/fractal/fractal-4.4.0/vendor/h2/src/hpack/
H A Ddecoder.rs245 let new_size = decode_int(buf, 5)?; in process_size_update()
263 let index = decode_int(buf, 7)?; in decode_indexed()
275 let table_idx = decode_int(buf, prefix)?; in decode_literal()
302 let len = decode_int(buf, 7)?; in decode_string()
362 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/net-mgmt/nfs-exporter/freebsd-nfs-exporter-0.3.0/cargo-crates/h2-0.1.26/src/hpack/
H A Ddecoder.rs266 let new_size = decode_int(buf, 5)?; in process_size_update()
284 let index = decode_int(buf, 7)?; in decode_indexed()
296 let table_idx = decode_int(buf, prefix)?; in decode_literal()
323 let len = decode_int(buf, 7)?; in decode_string()
383 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/net/routinator/routinator-0.10.2/cargo-crates/h2-0.3.3/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/textproc/angle-grinder/angle-grinder-0.18.0/cargo-crates/h2-0.2.7/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function
/dports/www/rearx/rearx-0.1.4/cargo-crates/h2-0.3.1/src/hpack/
H A Ddecoder.rs248 let new_size = decode_int(buf, 5)?; in process_size_update()
266 let index = decode_int(buf, 7)?; in decode_indexed()
278 let table_idx = decode_int(buf, prefix)?; in decode_literal()
305 let len = decode_int(buf, 7)?; in decode_string()
361 fn decode_int<B: Buf>(buf: &mut B, prefix_size: u8) -> Result<usize, DecoderError> { in decode_int() function

123456