Home
last modified time | relevance | path

Searched full:part (Results 12801 - 12825 of 23898) sorted by relevance

1...<<511512513514515516517518519520>>...956

/third_party/skia/bench/
H A DPathOpsBench.cpp203 // force bounds calc as part of the test
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_add_dead_continue.cpp71 // Because the structured CFG analysis does not regard a loop header as part in IsApplicable()
/third_party/spirv-tools/source/
H A Doperand.h109 // original type argument. The pattern must encode the fact that if any part
/third_party/spirv-tools/source/opt/
H A Dconst_folding_rules.h125 // The context that the instruction to be folded will be a part of.
H A Dcontrol_dependence.cpp94 // actually part of the function.) in ComputePostDominanceFrontiers()
H A Dinst_buff_addr_check_pass.h87 // error records. The validation-specific part of the error record will
/third_party/spirv-tools/source/reduce/
H A Dstructured_construct_to_block_reduction_opportunity_finder.cpp51 // this block is part of a region, or spoils a region (by having an in GetAvailableOpportunities()
/third_party/spirv-tools/source/val/
H A Dconstruct.h137 /// construct, the case construct that are part of the same OpSwitch
/third_party/spirv-tools/utils/
H A Dgenerate_vim_syntax.py38 " The assembler treats the leading minus sign as part of the number token.
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_i.h144 void wps_pwd_auth_fail_event(struct wps_context *wps, int enrollee, int part,
/third_party/vk-gl-cts/modules/egl/
H A DteglInfoTests.cpp105 log << TestLog::Message << " Fail, first part of the string must be in the format <major_version.minor_version>" << TestLog::EndMessage; in validateString()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_i.h144 void wps_pwd_auth_fail_event(struct wps_context *wps, int enrollee, int part,
/third_party/skia/third_party/externals/angle2/src/common/
H A Ddebug.cpp83 // type on the LHS of the unused part of the ternary operator.
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DVertexAttribute.cpp132 // We account for the floor() part rounding by adding a rounding constant. in updateCachedElementLimit()
/third_party/zlib/contrib/minizip/
H A Dcrypt.h86 /* "last resort" source for second part of crypt seed pattern */
H A Dioapi.c2 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
H A Dioapi.h2 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
/third_party/zlib/
H A Dinflate.h7 part of the implementation of the compression library and is
H A Dzutil.h7 part of the implementation of the compression library and is
/third_party/mbedtls/docs/
H A Dpsa-transition.md37 * Mbed TLS legacy APIs require passing around a random generator argument where needed. This has historically been problematic with functions that were created without an RNG argument but later needed one as part of a security countermeasure. The PSA crypto subsystem maintains a global random generator, resolving this problem.
262 * To compare a MAC with a reference value, use `psa_mac_verify` rather than `psa_mac_compute` followed by `mbedtls_ct_memcmp`, or use `psa_mac_verify_setup` and `psa_mac_verify_finish` in the multi-part case. See “[MAC calculation](#mac-calculation)”.
371 * [`psa_cipher_encrypt`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__cipher/#group__cipher_1ga61f02fbfa681c2659546eca52277dbf1) to perform encryption with a random IV of the default size (indicated by [`PSA_CIPHER_IV_LENGTH`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_IV_LENGTH)). (To encrypt with a specified IV, use the multi-part API described below.) You can use the macro [`PSA_CIPHER_ENCRYPT_OUTPUT_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_ENCRYPT_OUTPUT_SIZE) or [`PSA_CIPHER_ENCRYPT_OUTPUT_MAX_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_ENCRYPT_OUTPUT_MAX_SIZE) to determine a sufficient size for the output buffer.
374 For a multi-part operation, the equivalent workflow with the PSA API is as follows:
380 5. Call [`psa_cipher_finish`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__cipher/#group__cipher_1ga1dcb58b8befe23f8a4d7a1d49c99249b) to obtain the last part of the output. You can use [`PSA_CIPHER_FINISH_OUTPUT_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_FINISH_OUTPUT_SIZE) or [`PSA_CIPHER_FINISH_OUTPUT_MAX_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_FINISH_OUTPUT_MAX_SIZE) to determine a sufficient size for the output buffer.
393 6. Call `mbedtls_cipher_finish` to obtain the last part of the output. Then call `mbedtls_cipher_write_tag` (when encrypting) or `mbedtls_cipher_check_tag` (when decrypting) to process the authentication tag.
400 * [`psa_aead_encrypt`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__aead/#group__aead_1gae72e1eb3c2da3ebd843bb9c8db8df509) to perform authenticated encryption with a random nonce of the default size (indicated by [`PSA_AEAD_NONCE_LENGTH`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_AEAD_NONCE_LENGTH)), with the authentication tag written at the end of the output. (To encrypt with a specified nonce, or to separate the tag from the rest of the ciphertext, use the multi-part API described below.) You can use the macro [`PSA_AEAD_ENCRYPT_OUTPUT_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_AEAD_ENCRYPT_OUTPUT_SIZE) or [`PSA_AEAD_ENCRYPT_OUTPUT_MAX_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_AEAD_ENCRYPT_OUTPUT_MAX_SIZE) to determine a sufficient size for the output buffer.
401 * [`psa_aead_decrypt`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__aead/#group__aead_1gae799f6196a22d50c216c947e0320d3ba) to perform authenticated decryption of a ciphertext with the authentication tag at the end. (If the tag is separate, use the multi-part API described below.) You can use the macro [`PSA_AEAD_DECRYPT_OUTPUT_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_DECRYPT_OUTPUT_SIZE) or [`PSA_AEAD_DECRYPT_OUTPUT_MAX_SIZE`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/file/crypto__sizes_8h/#c.PSA_CIPHER_DECRYPT_OUTPUT_MAX_SIZE) to determine a sufficient size for the output buffer.
403 For a multi-part operation, the equivalent workflow with the PSA API is as follows:
411 * When encrypting, call [`psa_aead_finish`](https://mbed-tls.readthedocs.io/projects/api/en/development/api/group/group__aead/#group__aead_1ga759791bbe1763b377c3b5447641f1fc8) to obtain the last part o
[all...]
/third_party/python/Doc/library/
H A Dssl.rst1675 provided as part of the operating system, though, it is likely to be
2094 Certificates in general are part of a public-key / private-key system. In this
2096 organization) is assigned a unique two-part encryption key. One part of the key
2097 is public, and is called the *public key*; the other part is kept secret, and is
2099 message with one of the parts, you can decrypt it with the other part, and
2100 **only** with the other part.
2420 data at the upper SSL layer. For example, only part of an SSL frame might
2713 If using this module as part of a multi-processed application (using,
2736 - Session tickets are no longer sent as part o
[all...]
/foundation/ability/form_fwk/interfaces/inner_api/src/
H A Dform_mgr_stub.cpp73 * @brief the first part of handle remote request.
125 * @brief the second part of handle remote request.
175 * @brief the third part of handle remote request.
221 * @brief the fourth part of handle remote request.
/third_party/ffmpeg/libavcodec/
H A Dlibx264.c5 * This file is part of FFmpeg.
164 /* Write the SEI as part of the first frame. */ in encode_nals()
1221 .p.long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1257 .p.long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
/third_party/ffmpeg/libavformat/
H A Drmdec.c5 * This file is part of FFmpeg.
722 len -= 14; // we already read part of the index header in rm_sync()
772 if(type != 3){ // not frame as a part of packet in rm_assemble_video_frame()
786 if(type == 3){ // frame as a part of packet in rm_assemble_video_frame()
/third_party/gn/src/gn/
H A Dfunction_toolchain.cc569 or part of the command to send to the tool which allows you to get
622 The short name of the label of the target. This is the part after the
683 The file part of the source including the extension (with no directory
688 The filename part of the source file with no directory or extension.

Completed in 59 milliseconds

1...<<511512513514515516517518519520>>...956