Home
last modified time | relevance | path

Searched full:decoders (Results 1 – 25 of 117) sorted by relevance

12345

/freebsd/sys/dev/fb/
H A Dsplash.c51 static int decoders; variable
132 for (i = 0; i < decoders; ++i) { in splash_register()
136 if ((i >= decoders) && (decoders % DECODER_ARRAY_DELTA) == 0) { in splash_register()
137 p = malloc(sizeof(*p)*(decoders + DECODER_ARRAY_DELTA), in splash_register()
142 bcopy(decoder_set, p, sizeof(*p)*decoders); in splash_register()
146 i = decoders++; in splash_register()
176 for (i = 0; i < decoders; ++i) { in splash_init()
185 for (++i; i < decoders; ++i) { in splash_init()
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_DECODER.pod46 B<OSSL_DECODER> is a method for decoders, which know how to
134 To list all decoders in a provider to a bio_out:
152 STACK_OF(OSSL_DECODER) *decoders;
155 decoders = sk_OSSL_DECODER_new_null();
157 BIO_printf(bio_out, "DECODERs provided by %s:\n", provider);
159 decoders);
161 for (i = 0; i < sk_OSSL_DECODER_num(decoders); i++) {
162 OSSL_DECODER *decoder = sk_OSSL_DECODER_value(decoders, i);
171 sk_OSSL_DECODER_pop_free(decoders, OSSL_DECODER_free);
H A DOSSL_DECODER_CTX.pod86 The B<OSSL_DECODER_CTX> holds data about multiple decoders, as needed to
88 several possible related results. This also includes chaining decoders, so
90 generic format decoders such as PEM to DER, as well as more specialized
91 decoders like DER to RSA.
125 decoders that have been added to the I<ctx> so far. Parameters that an
134 OSSL_DECODER_CTX_add_extra() finds decoders that generate input for already
135 added decoders, and adds them as well. This is used to build decoder
147 OSSL_DECODER_CTX_get_num_decoders() gets the number of decoders currently
232 OSSL_DECODER_CTX_num_decoders() returns the current number of decoders. It
H A DOSSL_DECODER_from_bio.pod64 /* error: no suitable potential decoders found */
92 /* error: no suitable potential decoders found */
/freebsd/secure/lib/libcrypto/man/man3/
H A DOSSL_DECODER.3181 \&\fB\s-1OSSL_DECODER\s0\fR is a method for decoders, which know how to
265 To list all decoders in a provider to a bio_out:
284 \& STACK_OF(OSSL_DECODER) *decoders;
287 \& decoders = sk_OSSL_DECODER_new_null();
289 \& BIO_printf(bio_out, "DECODERs provided by %s:\en", provider);
291 \& decoders);
293 \& for (i = 0; i < sk_OSSL_DECODER_num(decoders); i++) {
294 \& OSSL_DECODER *decoder = sk_OSSL_DECODER_value(decoders, i);
303 \& sk_OSSL_DECODER_pop_free(decoders, OSSL_DECODER_free);
H A DOSSL_DECODER_CTX.3221 The \fB\s-1OSSL_DECODER_CTX\s0\fR holds data about multiple decoders, as needed to
223 several possible related results. This also includes chaining decoders, so
225 generic format decoders such as \s-1PEM\s0 to \s-1DER,\s0 as well as more specialized
226 decoders like \s-1DER\s0 to \s-1RSA.\s0
259 decoders that have been added to the \fIctx\fR so far. Parameters that an
267 \&\fBOSSL_DECODER_CTX_add_extra()\fR finds decoders that generate input for already
268 added decoders, and adds them as well. This is used to build decoder
280 \&\fBOSSL_DECODER_CTX_get_num_decoders()\fR gets the number of decoders currently
356 \&\fBOSSL_DECODER_CTX_num_decoders()\fR returns the current number of decoders. It
/freebsd/contrib/opencsd/decoder/include/common/
H A Docsd_lib_dcd_register.h45 * @class OcsdLibDcdRegister : Registers decoders with the library
47 …* library decoder register class allows decoders to be registered by name, and the register allows…
48 * the list of names of registerd decoders.
50 …* The decoders in the library are accessed through the decoder manager interface. This provides a …
51 * the creation, manipulation and destruction of registered decoders
75 …void deRegisterCustomDecoders(); //!< delete all custom decoders registered with the librar…
H A Docsd_dcd_mngr_i.h55 // create and destroy decoders
59 //! Get the built in protocol type ID managed by this instance - extern for custom decoders
62 // connect decoders to other components - (replace current / 0 pointer value to detach );
63 // compatible with all decoders
H A Dtrc_pkt_decode_base.h46 /** @defgroup ocsd_pkt_decode OpenCSD Library : Packet Decoders.
50 Packet decoders convert incoming protocol packets from a packet processor,
53 Packet decoders can be:-
54 - PE decoders - converting ETM or PTM packets into instruction and data trace elements
56 - Bus decoders - converting HTM packets into bus transaction elements.
H A Docsd_dcd_tree_elem.h63 * Decoder tree elements are references to individual decoders in the tree.
64 * These allow iteration of all decoders in the tree to perform common operations.
/freebsd/sys/contrib/device-tree/Bindings/display/bridge/
H A Dlvds-codec.yaml7 title: Transparent LVDS encoders and decoders
13 This binding supports transparent LVDS encoders and decoders that don't
45 - const: lvds-decoder # Generic LVDS decoders compatible fallback
58 For LVDS decoders, port 0 is the LVDS input
79 For LVDS decoders, port 1 is the parallel output
/freebsd/crypto/openssl/crypto/encode_decode/
H A Ddecoder_lib.c60 "No decoders were found. For standard decoders you need " in OSSL_DECODER_from_bio()
351 size_t w_prev_start, w_prev_end; /* "previous" decoders */
352 size_t w_new_start, w_new_end; /* "new" decoders */
458 * |ctx->decoder_insts|, and tries to fetch new decoders that produce in OSSL_DECODER_CTX_add_extra()
460 * decoders on top of the same stack. in OSSL_DECODER_CTX_add_extra()
462 * decoders, until there are no more decoders to be fetched, or in OSSL_DECODER_CTX_add_extra()
498 BIO_printf(trc_out, "(ctx %p) Looking for extra decoders\n", in OSSL_DECODER_CTX_add_extra()
522 * 0. All decoders that have the same name as their input type. in OSSL_DECODER_CTX_add_extra()
523 * This allows for decoders that unwrap some data in a specific in OSSL_DECODER_CTX_add_extra()
525 * 1. All decoders that a different name than their input type. in OSSL_DECODER_CTX_add_extra()
[all …]
H A Ddecoder_pkey.c326 "(ctx %p) Looking for decoders producing %s%s%s%s%s%s\n", in ossl_decoder_ctx_setup_for_pkey()
388 * Finally, find all decoders that have any keymgmt of the collected in ossl_decoder_ctx_setup_for_pkey()
406 "(ctx %p) Got %d decoders producing keys\n", in ossl_decoder_ctx_setup_for_pkey()
445 "(ctx %p) Looking for %s decoders with selection %d\n", in OSSL_DECODER_CTX_new_for_pkey()
458 BIO_printf(trc_out, "(ctx %p) Got %d decoders\n", in OSSL_DECODER_CTX_new_for_pkey()
H A Dencoder_local.h90 * Decoders that are components of any current decoding path.
146 * Decoders that are components of any current decoding path.
/freebsd/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api_custom_obj.h52 // create and destroy decoders
56 //! Get the built in protocol type ID managed by this instance - extern for custom decoders
59 // connect decoders to other components - (replace current / 0 pointer value to detach );
60 // compatible with all decoders
H A Docsd_c_api_obj.h66 // void specialisation for custom decoders that pass packets as const void * pointers
121 // void specialisation for custom decoders that pass packets as const void * pointers
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_private.h96 * If any of the BCJ filter decoders are wanted, define XZ_DEC_BCJ.
97 * XZ_DEC_BCJ is used to enable generic support for BCJ decoders.
133 * Allocate memory for BCJ decoders. xz_dec_bcj_reset() must be used before
/freebsd/secure/usr.bin/openssl/man/
H A Dopenssl-list.1159 [\fB\-decoders\fR]
238 .IP "\fB\-decoders\fR" 4
239 .IX Item "-decoders"
240 Display a list of decoders.
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-list.pod.in30 [B<-decoders>]
126 =item B<-decoders>
128 Display a list of decoders.
/freebsd/crypto/openssl/apps/
H A Dlist.c563 * Decoders
584 STACK_OF(OSSL_DECODER) *decoders; in list_decoders()
587 decoders = sk_OSSL_DECODER_new(decoder_cmp); in list_decoders()
588 if (decoders == NULL) { in list_decoders()
592 BIO_printf(bio_out, "Provided DECODERs:\n"); in list_decoders()
594 decoders); in list_decoders()
595 sk_OSSL_DECODER_sort(decoders); in list_decoders()
597 for (i = 0; i < sk_OSSL_DECODER_num(decoders); i++) { in list_decoders()
598 OSSL_DECODER *k = sk_OSSL_DECODER_value(decoders, i); in list_decoders()
624 sk_OSSL_DECODER_pop_free(decoders, OSSL_DECODER_fre in list_decoders()
[all...]
/freebsd/crypto/openssl/doc/man7/
H A Dprovider-decoder.pod45 not limited to deserialization as individual decoders can also do
153 Structures currently recognised by built-in decoders:
264 built-in decoders.
/freebsd/contrib/opencsd/decoder/include/opencsd/
H A Docsd_if_types.h140 OCSD_ERR_DCDREG_TOOMANY, /**< attempted to register too many custom decoders */
248 #define OCSD_DFRMTR_RESET_ON_4X_FSYNC 0x20 /**< Deformatter Config : reset downstream decoders if …
539 Flags to use when creating decoders by name.
563 /* Built in library decoders */
574 /* Custom / external decoders */
575 …COL_CUSTOM_0 = 100, /**< Values from this onwards are assigned to external registered decoders */
642 …Counts total bytes sent to decoders registered against a trace ID, bytes in the input stream that …
/freebsd/secure/lib/libcrypto/man/man7/
H A Dfips_module.7512 .SS "Using Encoders and Decoders with the \s-1FIPS\s0 module"
513 .IX Subsection "Using Encoders and Decoders with the FIPS module"
514 Encoders and decoders are used to read and write keys or parameters from or to
522 the key or parameter object. The built-in OpenSSL encoders and decoders are
526 therefore these encoders/decoders have the \f(CW\*(C`fips=yes\*(C'\fR property against them.
/freebsd/contrib/opencsd/decoder/include/opencsd/c_api/
H A Docsd_c_api_custom.h41 @brief Set of types, structures and interfaces for attaching custom decoders via the C-API
45 resources in the same way as the built-in decoders.
235 then decoders of the type can be created on the decode tree.
/freebsd/sys/contrib/device-tree/Bindings/media/i2c/
H A Dtvp5150.txt1 * Texas Instruments TVP5150 and TVP5151 video decoders
3 The TVP5150 and TVP5151 are video decoders that convert baseband NTSC and PAL

12345