/freebsd-src/crypto/heimdal/lib/asn1/ |
H A D | gen_encode.c | 110 int constructed = 1; in encode_type() local 143 constructed = 0; in encode_type() 147 constructed = 0; in encode_type() 151 constructed = 0; in encode_type() 159 constructed = 0; in encode_type() 247 constructed = 0; in encode_type() 252 constructed = 0; in encode_type() 379 constructed = 0; in encode_type() 383 constructed = 0; in encode_type() 387 constructed = 0; in encode_type() [all …]
|
/freebsd-src/crypto/heimdal/doc/ |
H A D | layman.asc | 245 input from a file stream) with a constructed, indefinite- 329 primitive, definite-length encoding; constructed, definite- 330 length encoding; and constructed, indefinite-length 333 the constructed methods; and simple string types employ any 337 tagging employ the constructed methods. 343 the method is primitive or constructed. 347 constructed, indefinite-length method, these 352 the value. For the constructed methods, these 356 End-of-contents octets. For the constructed, indefinite- 416 3.2 Constructed, definite-length method [all …]
|
/freebsd-src/sys/dev/isci/scil/ |
H A D | scif_remote_device.h | 116 * handle to be used to communicate with the newly constructed 144 * remote device object being constructed. 146 * by the remote device to be constructed. 148 * @return Indicate if the remote device was successfully constructed. 150 * successfully constructed. 152 * been constructed. 181 * constructed. 183 * associated with the remote device being constructed. 185 * @return Indicate if the remote device was successfully constructed. 187 * successfully constructed. [all …]
|
H A D | sci_base_request.h | 86 * This state indicates that the request has been constructed. This state 93 * entered from the CONSTRUCTED state. 107 * This state is entered from the CONSTRUCTED state. 191 * to be constructed.
|
H A D | sati_util.c | 81 * for which the command is being constructed. 104 * for which the command is being constructed. 127 * for which the command is being constructed. 367 * for which the command is being constructed. 414 * response IU to be constructed. 642 * @param[out] descriptor_len This parameter returns the length of constructed 669 * @param[out] descriptor_len This parameter returns the length of constructed 706 * @param[out] descriptor_len This parameter returns the length of constructed 742 * @param[out] descriptor_len This parameter returns the length of constructed 1517 * for which the command is being constructed [all...] |
H A D | scif_controller.h | 77 * library object associated with the controller being constructed. 79 * be constructed. 84 * @return Indicate if the controller was successfully constructed or if 87 * successfully constructed. 301 * (i.e. re-constructed). 325 * reused (i.e. re-constructed).
|
H A D | scic_remote_device.h | 142 * @return Indicate if the remote device was successfully constructed. 143 * @retval SCI_SUCCESS Returned if the device was successfully constructed. 145 * been constructed. If it's an additional phy for the target, then 174 * @return Indicate if the remote device was successfully constructed. 175 * @retval SCI_SUCCESS Returned if the device was successfully constructed. 177 * been constructed. If it's an additional phy for the target, then
|
H A D | scif_sas_internal_io_request.c | 109 * @param[in] io_tag The io tag for the internl io to be constructed. 113 * @return Indicate if the internal io was successfully constructed. 115 * successfully constructed. 117 * be constructed.
|
/freebsd-src/contrib/bearssl/src/x509/ |
H A D | asn1.t0 | 224 \ Read an ASN.1 tag. This function returns the "constructed" status 225 \ and the tag value. The constructed status is a boolean (-1 for 226 \ constructed, 0 for primitive). The tag value is either 0 to 31 for 232 : read-tag ( lim -- lim constructed value ) 235 \ Constructed flag is bit 5. 253 : read-tag-or-end ( lim -- lim constructed value ) 259 : iftag-skip ( lim constructed value ref -- lim constructed value ) 314 \ Check that a given tag is constructed and has the expected value. 315 : check-tag-constructed ( constructed value refvalue -- ) 317 check-constructed ; [all …]
|
/freebsd-src/crypto/openssl/doc/man3/ |
H A D | BIO_s_core.pod | 25 Once a BIO is constructed based on BIO_s_core(), the associated OSSL_CORE_BIO 27 operate correctly if it is associated with a library context constructed using 40 A failure will most commonly be because the library context was not constructed
|
H A D | PKCS12_add1_attr_by_NID.pod | 22 type B<type> constructed using B<len> bytes from B<bytes>. 25 ASN1 type B<type> constructed using B<len> bytes from B<bytes>.
|
/freebsd-src/contrib/wpa/src/tls/ |
H A D | asn1.c | 135 /* Check for allowed primitive/constructed values */ in asn1_valid_der() 136 if (hdr->constructed && in asn1_valid_der() 162 if (!hdr->constructed && in asn1_valid_der() 186 hdr->constructed = !!(hdr->identifier & (1 << 5)); in asn1_get_next() 278 wpa_printf(MSG_DEBUG, "%sclass %d constructed %d tag 0x%x", in asn1_print_hdr() 279 title, hdr->class, hdr->constructed, hdr->tag); in asn1_print_hdr() 285 wpa_printf(MSG_DEBUG, "%s - found class %d constructed %d tag 0x%x", in asn1_unexpected() 286 title, hdr->class, hdr->constructed, hdr->tag); in asn1_unexpected() 580 void asn1_put_hdr(struct wpabuf *buf, u8 class, int constructed, u8 tag, in asn1_put_hdr() argument 583 wpabuf_put_u8(buf, class << 6 | (constructed ? 0x20 : 0x00) | tag); in asn1_put_hdr()
|
H A D | asn1.h | 27 #define ASN1_TAG_SEQUENCE 0x10 /* shall be constructed */ 51 u8 identifier, class, constructed; member 79 void asn1_put_hdr(struct wpabuf *buf, u8 class, int constructed, u8 tag, 150 if (hdr->class != ASN1_CLASS_UNIVERSAL || hdr->constructed) in asn1_is_string_type()
|
/freebsd-src/crypto/openssl/crypto/asn1/ |
H A D | asn1_lib.c | 158 * constructed == 2 for indefinite length constructed 160 void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag, in ASN1_put_object() argument 166 i = (constructed) ? V_ASN1_CONSTRUCTED : 0; in ASN1_put_object() 183 if (constructed == 2) in ASN1_put_object() 222 int ASN1_object_size(int constructed, int length, int tag) in ASN1_object_size() argument 234 if (constructed == 2) { in ASN1_object_size()
|
H A D | tasn_dec.c | 21 * Constructed types with a recursive definition (such as can be found in PKCS7) 767 /* SEQUENCE and SET must be constructed */ in asn1_d2i_ex_primitive() 774 /* If indefinite length constructed find the real end */ in asn1_d2i_ex_primitive() 795 * may get this wrong. The relevant specs say that constructed string in asn1_d2i_ex_primitive() 978 /* If not indefinite length constructed just add length */ in asn1_find_end() 985 * Indefinite length constructed form. Find the end when enough EOCs are in asn1_find_end() 986 * found. If more indefinite length constructed headers are encountered in asn1_find_end() 1025 * This function collects the asn1 data from a constructed string type into 1027 * constructed type and 'inf' should be set if it is indefinite length. 1049 * If no buffer and not indefinite length constructed just pass over the in asn1_collect() [all …]
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/ |
H A D | adt_test.cpp | 23 EXPECT_TRUE(S.empty()) << "Default constructed span not empty"; in TEST() 24 EXPECT_EQ(S.size(), 0U) << "Default constructed span size not zero"; in TEST() 25 EXPECT_EQ(S.begin(), S.end()) << "Default constructed span begin != end"; in TEST()
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFVerifier.h | 307 /// constructed with. 316 /// constructed with. 324 /// constructed with. 333 /// constructed with. 342 /// constructed with. 350 /// constructed with. 359 /// constructed with.
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | PagedVector.h | 53 /// constructed and elements of the page are stored contiguously. 81 /// constructed elements. 108 /// all the elements of the page will be constructed. 129 // constructed not only the one effectively needed. in resize() 167 /// which have actually being constructed.
|
/freebsd-src/contrib/llvm-project/libcxx/include/__memory/ |
H A D | uninitialized_algorithms.h | 398 // If the object being constructed is an array, each element of the array is allocator-constructed, 414 // If an exception is thrown, destroy what we have constructed so far in reverse order. in __allocator_construct_at_multidimensional() 431 // If the object being constructed is an array, the argument is also assumed to be an array. Each 432 // each element of the array being constructed is allocator-constructed from the corresponding 454 // If an exception is thrown, destroy what we have constructed so far in reverse order. in __allocator_construct_at_multidimensional() 484 // If an exception is thrown, destroy what we have constructed so far in reverse order. in __uninitialized_allocator_fill_n_multidimensional() 502 // If an exception is thrown, destroy what we have constructed so far in reverse order. in __uninitialized_allocator_value_construct_n_multidimensional()
|
/freebsd-src/crypto/openssl/doc/internal/man3/ |
H A D | ossl_DER_w_begin_sequence.pod | 6 - internal DER writers for DER constructed elements 17 All functions described here are wrappers for constructed structures,
|
/freebsd-src/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | renesas,rzg2l-pinctrl.yaml | 44 The first cell contains the global GPIO port index, constructed using the 57 The first cell contains the global GPIO port index, constructed using the 95 Values are constructed from GPIO port number, pin number, and
|
/freebsd-src/stand/userboot/userboot/ |
H A D | bootinfo32.c | 46 * - The 'boothowto' argument is constructed 47 * - The 'bootdev' argument is constructed 48 * - The 'bootinfo' struct is constructed, and copied into the kernel space.
|
H A D | bootinfo64.c | 86 * - The 'boothowto' argument is constructed 87 * - The 'bootdev' argument is constructed 88 * - The 'bootinfo' struct is constructed, and copied into the kernel space.
|
/freebsd-src/contrib/libarchive/tar/test/ |
H A D | test_option_r.c | 32 /* Do some basic validation of the constructed archive. */ in DEFINE_TEST() 59 /* The constructed archive should just have the new entry appended. */ in DEFINE_TEST() 85 /* Validate the constructed archive. */ in DEFINE_TEST()
|
/freebsd-src/secure/lib/libcrypto/man/man3/ |
H A D | BIO_s_core.3 | 160 Once a \s-1BIO\s0 is constructed based on \fBBIO_s_core()\fR, the associated \s-1OSSL_CORE_BIO\s0 162 operate correctly if it is associated with a library context constructed using 174 A failure will most commonly be because the library context was not constructed
|