/netbsd-src/crypto/external/bsd/openssl/dist/crypto/encode_decode/ |
H A D | decoder_meth.c | 29 OSSL_DECODER *decoder = NULL; in ossl_decoder_new() local 31 if ((decoder = OPENSSL_zalloc(sizeof(*decoder))) == NULL in ossl_decoder_new() 32 || (decoder->base.lock = CRYPTO_THREAD_lock_new()) == NULL) { in ossl_decoder_new() 33 OSSL_DECODER_free(decoder); in ossl_decoder_new() 38 decoder->base.refcnt = 1; in ossl_decoder_new() 40 return decoder; in ossl_decoder_new() 43 int OSSL_DECODER_up_ref(OSSL_DECODER *decoder) in OSSL_DECODER_up_ref() argument 47 CRYPTO_UP_REF(&decoder->base.refcnt, &ref, decoder->base.lock); in OSSL_DECODER_up_ref() 51 void OSSL_DECODER_free(OSSL_DECODER *decoder) in OSSL_DECODER_free() argument 55 if (decoder == NULL) in OSSL_DECODER_free() [all …]
|
H A D | decoder_lib.c | 212 OSSL_DECODER_INSTANCE *ossl_decoder_instance_new(OSSL_DECODER *decoder, in ossl_decoder_instance_new() argument 221 if (!ossl_assert(decoder != NULL)) { in ossl_decoder_instance_new() 231 prov = OSSL_DECODER_get0_provider(decoder); in ossl_decoder_instance_new() 233 props = ossl_decoder_parsed_properties(decoder); in ossl_decoder_instance_new() 237 OSSL_DECODER_get0_name(decoder)); in ossl_decoder_instance_new() 248 OSSL_DECODER_get0_name(decoder), in ossl_decoder_instance_new() 249 OSSL_DECODER_get0_properties(decoder)); in ossl_decoder_instance_new() 260 if (!OSSL_DECODER_up_ref(decoder)) { in ossl_decoder_instance_new() 264 decoder_inst->decoder = decoder; in ossl_decoder_instance_new() 275 if (decoder_inst->decoder != NULL) in ossl_decoder_instance_free() [all …]
|
H A D | decoder_pkey.c | 71 OSSL_DECODER *decoder = OSSL_DECODER_INSTANCE_get_decoder(decoder_inst); in decoder_construct_pkey() local 73 const OSSL_PROVIDER *decoder_prov = OSSL_DECODER_get0_provider(decoder); in decoder_construct_pkey() 163 (void)decoder->export_object(decoderctx, in decoder_construct_pkey() 229 static void collect_decoder(OSSL_DECODER *decoder, void *arg) in collect_decoder() argument 233 const OSSL_PROVIDER *prov = OSSL_DECODER_get0_provider(decoder); in collect_decoder() 250 if (decoder->does_selection != NULL in collect_decoder() 251 && !decoder->does_selection(provctx, data->ctx->selection)) in collect_decoder() 258 (void *)data->ctx, (void *)decoder, in collect_decoder() 259 OSSL_DECODER_get0_name(decoder), in collect_decoder() 260 OSSL_DECODER_get0_properties(decoder)); in collect_decoder() [all …]
|
H A D | encoder_local.h | 107 OSSL_DECODER *decoder; /* Never NULL */ member 162 ossl_decoder_parsed_properties(const OSSL_DECODER *decoder);
|
/netbsd-src/external/gpl3/gdb/dist/sim/ppc/ |
H A D | hw_ide.c | 532 address_decoder *decoder, in decode_address() argument 541 if (space == decoder->block[i].space in decode_address() 542 && address >= decoder->block[i].base_addr in decode_address() 543 && address <= decoder->block[i].bound_addr) { in decode_address() 544 *controller = decoder->block[i].controller; in decode_address() 546 - decoder->block[i].base_addr in decode_address() 547 + decoder->block[i].base_reg); in decode_address() 566 address_decoder *decoder) in build_address_decoder() argument 587 decoder->block[reg-1].space = space; in build_address_decoder() 588 decoder->block[reg-1].base_addr = address; in build_address_decoder() [all …]
|
/netbsd-src/external/mpl/bind/dist/lib/isc/ |
H A D | picohttpparser.c | 603 phr_decode_chunked(struct phr_chunked_decoder *decoder, char *buf, in phr_decode_chunked() argument 609 switch (decoder->_state) { in phr_decode_chunked() 617 if (decoder->_hex_count == 0) { in phr_decode_chunked() 623 if (decoder->_hex_count == sizeof(size_t) * 2) { in phr_decode_chunked() 627 decoder->bytes_left_in_chunk = in phr_decode_chunked() 628 decoder->bytes_left_in_chunk * 16 + v; in phr_decode_chunked() 629 ++decoder->_hex_count; in phr_decode_chunked() 631 decoder->_hex_count = 0; in phr_decode_chunked() 632 decoder->_state = CHUNKED_IN_CHUNK_EXT; in phr_decode_chunked() 646 if (decoder in phr_decode_chunked() 723 phr_decode_chunked_is_in_data(struct phr_chunked_decoder * decoder) phr_decode_chunked_is_in_data() argument [all...] |
H A D | picohttpparser.h | 91 phr_decode_chunked(struct phr_chunked_decoder *decoder, char *buf, 94 /* returns if the chunked decoder is in middle of chunked data */ 96 phr_decode_chunked_is_in_data(struct phr_chunked_decoder *decoder);
|
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
H A D | decoder.h | 36 const char *OSSL_DECODER_get0_name(const OSSL_DECODER *decoder); 37 const char *OSSL_DECODER_get0_description(const OSSL_DECODER *decoder); 46 const OSSL_PARAM *OSSL_DECODER_gettable_params(OSSL_DECODER *decoder); 47 int OSSL_DECODER_get_params(OSSL_DECODER *decoder, OSSL_PARAM params[]); 77 int OSSL_DECODER_CTX_add_decoder(OSSL_DECODER_CTX *ctx, OSSL_DECODER *decoder);
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | base64.d | 1442 typeof(return) decoder; in save() local 1444 decoder.range_ = range_.save; in save() 1445 decoder.buffer_ = buffer_.dup; in save() 1446 decoder.decoded_ = decoder.buffer_[0 .. decoded_.length]; in save() 1448 return decoder; in save() 1634 auto decoder = this; in save() local 1635 decoder.range_ = decoder.range_.save; in save() 1636 return decoder; in save() 1686 Decoder!(Range) decoder(Range)(Range range) if (isInputRange!Range) 1692 Decoder!(const(ubyte)[]) decoder()(const(char)[] range) [all …]
|
/netbsd-src/external/public-domain/xz/dist/doc/ |
H A D | xz-file-format.txt | 254 Padding, a decoder handling standalone .xz files SHOULD support 259 communication protocol, it usually is expected that the decoder 320 If the Header Magic Bytes don't match, the decoder MUST 355 OPTIONAL. If an unsupported Check is used, the decoder SHOULD 358 If any reserved bit is set, the decoder MUST indicate an error. 360 decoder is not aware of, and can thus parse the Stream Header 368 calculated value does not match the stored one, the decoder 375 files that the decoder doesn't support (CRC32 matches but 391 the decoder MUST indicate an error. 407 field, the decoder MUST indicate an error. [all …]
|
H A D | history.txt | 39 10 KiB) decoder-only command-line tool. It was written on top of the 40 decoder-only C code found from the LZMA SDK. lzmadec was convenient in 53 decoder from C++ LZMA SDK with some little modifications. This tool 62 Lasse wrote liblzmadec, which was a small decoder-only library based 119 chunks, eases stateful decoder implementations, and improves support
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | base64.d | 1462 typeof(return) decoder; in save() local 1464 decoder.range_ = range_.save; in save() 1465 decoder.buffer_ = buffer_.dup; in save() 1466 decoder.decoded_ = decoder.buffer_[0 .. decoded_.length]; in save() 1468 return decoder; in save() 1655 auto decoder = this; in save() local 1656 decoder.range_ = decoder.range_.save; in save() 1657 return decoder; in save() 1709 Decoder!(Range) decoder(Range)(Range range) if (isInputRange!Range) 1976 foreach (decoded; Base64.decoder(f.byLine())) [all …]
|
/netbsd-src/external/bsd/ntp/dist/ |
H A D | README.refclocks | 13 IRIG_AUDIO 6 /* IRIG-B/W audio decoder */ 14 CHU_AUDIO 7 /* CHU audio demodulator/decoder */ 42 WWV_AUDIO 36 /* WWV/H audio demodulator/decoder */ 47 TT560 41 /* TrueTime 560 IRIG-B decoder */
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/ |
H A D | provfetchtest.c | 235 OSSL_DECODER *decoder = NULL; in fetch_test() local 253 decoder = OSSL_DECODER_fetch(libctx, "DUMMY", in fetch_test() 255 if (!TEST_ptr(decoder)) in fetch_test() 283 OSSL_DECODER_free(decoder); in fetch_test()
|
/netbsd-src/external/public-domain/xz/dist/ |
H A D | config.h.in | 72 /* Define to 1 if arm decoder is enabled. */ 75 /* Define to 1 if armthumb decoder is enabled. */ 78 /* Define to 1 if delta decoder is enabled. */ 81 /* Define to 1 if ia64 decoder is enabled. */ 84 /* Define to 1 if lzma1 decoder is enabled. */ 87 /* Define to 1 if lzma2 decoder is enabled. */ 90 /* Define to 1 if powerpc decoder is enabled. */ 93 /* Define to 1 if sparc decoder is enabled. */ 96 /* Define to 1 if x86 decoder is enabled. */
|
/netbsd-src/crypto/external/bsd/openssl/dist/providers/ |
H A D | decoders.inc | 84 * A decoder that takes a SubjectPublicKeyInfo and figures out the types of key 90 * A decoder that recognises PKCS#8 EncryptedPrivateKeyInfo structure 92 * form to the next decoder.
|
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man7/ |
H A D | provider-decoder.pod | 5 provider-decoder - The OSSL_DECODER library E<lt>-E<gt> provider functions 21 /* Functions to construct / destruct / manipulate the decoder context */ 55 The decoder doesn't need to know more about the B<OSSL_CORE_BIO> 214 When a provider-native object is created by a decoder it would be unsuitable 244 another decoder implementation that can decode it into something. 254 possible for some other decoder implementation to get a different result. 289 OSSL_FUNC_decoder_does_selection() returns 1 if the decoder implementation
|
/netbsd-src/external/mit/libcbor/dist/test/ |
H A D | stream_expectations.c.erb | 7 decoder_t * decoder; 12 decoder = dec; 190 struct cbor_decoder_result result = decoder(source, source_size, &asserting_callbacks, NULL);
|
H A D | stream_expectations.c | 7 decoder_t* decoder; variable 9 void set_decoder(decoder_t* dec) { decoder = dec; } in set_decoder() 297 decoder(source, source_size, &asserting_callbacks, NULL); in decode()
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
H A D | check-der.c | 1080 asn1_type_decode decoder; member 1126 while (r->decoder) { in check_random() 1135 ret = r->decoder(input, r->inputsize, type, &size); in check_random() 1141 ret = r->decoder(input, r->inputsize, type, &size); in check_random() 1147 ret = r->decoder(input, r->inputsize, type, &size); in check_random() 1153 ret = r->decoder(input, r->inputsize, type, &size); in check_random() 1163 ret = r->decoder(input, insize, type, &size); in check_random()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
H A D | SystemZSchedule.td | 11 // These resources are used to express decoder grouping rules. The number of 12 // decoder slots needed by an instructions is normally one, but there are
|
/netbsd-src/external/mit/libcbor/dist/doc/source/ |
H A D | internal.rst | 125 …coding is based on the streaming decoder Essentially, the decoder is a custom set of callbacks for…
|
/netbsd-src/external/public-domain/xz/dist/tests/files/ |
H A D | README | 8 in .xz decoder implementations. Many of the files have been created 23 Bad files (bad-*.xz) must cause the decoder to give an error. Like 166 the value stored in the Block Header. That is, the decoder must not 172 matching the value stored in the Block Header. That is, the decoder 186 gets rejected due to invalid Compressed Size value; the decoder
|
/netbsd-src/crypto/external/bsd/openssl/dist/doc/internal/man3/ |
H A D | evp_md_get_number.pod | 25 int ossl_decoder_get_number(const OSSL_DECODER *decoder); 82 Returns the internal dynamic number assigned to the given I<decoder>.
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
H A D | ppro.md | 38 ;; So, the P6 CPUs have out-of-order cores, but the instruction decoder and 53 ;; decoder. 58 ;; - Include decoder latencies in the total reservation latencies. 60 ;; instruction that it never blocks a decoder. 74 ;; the decoder are simple: 77 ;; - an instruction with 1 to 4 uops can be decoded only by decoder 0 80 ;; decoder 0, and this takes an unspecified number of cycles. 89 ;; decoder1 and decoder2 from being reserved until decoder 0 is 135 ;; on decoder 0, and say that it takes a little while before the result
|