| /freebsd/crypto/openssl/ssl/ |
| H A D | d1_srtp.c | 97 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles; in ssl_ctx_make_profiles() 103 if ((profiles = sk_SRTP_PROTECTION_PROFILE_new_null()) == NULL) { in ssl_ctx_make_profiles() 112 if (sk_SRTP_PROTECTION_PROFILE_find(profiles, in ssl_ctx_make_profiles() 119 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, in ssl_ctx_make_profiles() 135 *out = profiles; in ssl_ctx_make_profiles() 139 sk_SRTP_PROTECTION_PROFILE_free(profiles); in ssl_ctx_make_profiles() 143 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) in SSL_CTX_set_tlsext_use_srtp() argument 148 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_tlsext_use_srtp() 151 int SSL_set_tlsext_use_srtp(SSL *s, const char *profiles) in SSL_set_tlsext_use_srtp() argument 158 return ssl_ctx_make_profiles(profiles, &sc->srtp_profiles); in SSL_set_tlsext_use_srtp()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | SampleProfReader.h | 9 // This file contains definitions needed for reading sample profiles. 18 // Sample profiles are written as ASCII text. The file is divided into 351 : Profiles(), Ctx(C), Buffer(std::move(B)), Format(Format) {} in Profiles() function 365 /// Get the bitmask the discriminators: For FS profiles, return the bit 366 /// mask for this pass. For non FS profiles, return (unsigned) -1. 374 /// The interface to read sample profiles from the associated file. 384 /// Read sample profiles for the given functions. 388 if (Profiles.find(FunctionId(F)) == Profiles.end()) in read() 390 if (std::error_code EC = read(S, Profiles)) in read() 395 /// The implementaion to read sample profiles from the associated file. [all …]
|
| H A D | SampleProfWriter.h | 9 // This file contains definitions needed for writing sample profiles. 94 /// Write sample profiles in \p S. 99 /// Write all the sample profiles in the given map of samples. 104 /// Write sample profiles up to given size limit, using the pruning strategy 141 // Write function profiles to the profile file. 242 // to read each section. To read function profiles on demand, sample 289 // profiles collected from running other targets. 352 std::error_code writeFuncMetadata(const SampleProfileMap &Profiles);
|
| H A D | InstrProfWriter.h | 167 /// specified. An error is returned if IR and FE profiles are mixed. 184 // Check if the profiles are in-compatible. Clang frontend profiles can't be in mergeProfileKind() 197 "cannot merge FunctionEntryOnly profiles and BB profiles together"); in mergeProfileKind() 258 // Writes compressed vtable names to profiles.
|
| /freebsd/sys/contrib/ncsw/Peripherals/FM/Pcd/ |
| H A D | fm_plcr.c | 547 /* Find numOfProfiles free profiles (may be spread) */ in AllocSharedProfiles() 550 if (!p_FmPcd->p_FmPcdPlcr->profiles[i].profilesMng.allocated) in AllocSharedProfiles() 567 p_FmPcd->p_FmPcdPlcr->profiles[profilesIds[i]].profilesMng.allocated = TRUE; in AllocSharedProfiles() 568 p_FmPcd->p_FmPcdPlcr->profiles[profilesIds[i]].profilesMng.ownerId = 0; in AllocSharedProfiles() 585 ASSERT_COND(p_FmPcd->p_FmPcdPlcr->profiles[profilesIds[i]].profilesMng.allocated); in FreeSharedProfiles() 586 p_FmPcd->p_FmPcdPlcr->profiles[profilesIds[i]].profilesMng.allocated = FALSE; in FreeSharedProfiles() 587 p_FmPcd->p_FmPcdPlcr->profiles[profilesIds[i]].profilesMng.ownerId = p_FmPcd->guestId; in FreeSharedProfiles() 597 ASSERT_COND(p_FmPcd->p_FmPcdPlcr->profiles[absoluteProfileId].valid); in UpdateRequiredActionFlag() 600 p_FmPcd->p_FmPcdPlcr->profiles[absoluteProfileId].requiredActionFlag = TRUE; in UpdateRequiredActionFlag() 603 p_FmPcd->p_FmPcdPlcr->profiles[absoluteProfileId].requiredAction = 0; in UpdateRequiredActionFlag() [all …]
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | srtp.h | 38 /* AEAD SRTP protection profiles from RFC 7714 */ 42 /* DOUBLE AEAD SRTP protection profiles from RFC 8723 */ 46 /* ARIA SRTP protection profiles from RFC 8269 */ 56 __owur int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 57 __owur int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_set_tlsext_use_srtp.pod | 15 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 16 int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); 36 B<profiles> parameters should point to a NUL-terminated, colon delimited list of 97 protection profiles that it is willing to negotiate. 99 The currently configured list of protection profiles for either a client or a 129 success or NULL on error or if no protection profiles have been configured.
|
| /freebsd/cddl/usr.sbin/dwatch/ |
| H A D | dwatch.1 | 177 Profiles can be written for more complex routines and/or convenience. 178 To list available profiles use the 319 List available profiles in DWATCH_PROFILES_PATH and exit. 374 .Sh PROFILES 375 Profiles customize the data printed during events. 376 Profiles are loaded from a colon-separated list of directories in 378 This is an incomplete list of profiles with basic descriptions: 462 searches for profiles in the colon-separated list of directories in that 466 profiles are not loaded. 476 List available profiles, [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | SampleProfReader.cpp | 9 // This file implements the class that reads LLVM sample profiles. It 54 // It only applies to text, and binary format profiles. 55 // For ext-binary format profiles, the flag is set in the summary. 69 /// Dump all the function profiles found on stream \p OS. 72 sortFuncProfiles(Profiles, V); in dump() 136 /// Dump all the function profiles found on stream \p OS in the JSON format. 139 sortFuncProfiles(Profiles, V); in dumpJson() 229 // to skip profiles even they have no use for ThinLTO. in ParseLine() 368 FunctionSamples &FProfile = Profiles.create(FContext); in readImpl() 455 Profiles.erase(*FlatSample); in readImpl() [all …]
|
| H A D | ProfileSummaryBuilder.cpp | 24 cl::desc("Merge context profiles before calculating thresholds.")); 104 // instrumentation profiles. in addRecord() 127 // profiles. This can happen to CS nested profile. in addRecord() 203 const SampleProfileMap &Profiles) { in computeSummaryForProfiles() argument 207 const sampleprof::SampleProfileMap *ProfilesToUse = &Profiles; in computeSummaryForProfiles() 211 // more function profiles each with lower counts, which in turn leads to lower in computeSummaryForProfiles() 213 // profiles before computing profile summary. in computeSummaryForProfiles() 216 ProfileConverter::flattenProfile(Profiles, ContextLessProfiles, true); in computeSummaryForProfiles()
|
| H A D | SampleProf.cpp | 37 "generate-merged-base-profiles", 38 cl::desc("When generating nested context-sensitive profiles, always " 40 "profiles merged into it.")); 385 // Trimming base profiles only is mainly to honor the preinliner decsion. When in trimAndMergeColdContextProfiles() 391 // Filter the cold profiles from ProfileMap and move them into a tmp in trimAndMergeColdContextProfiles() 417 // Move the merged profiles into ProfileMap; in trimAndMergeColdContextProfiles() 472 ProfileConverter::ProfileConverter(SampleProfileMap &Profiles) in ProfileConverter() argument 473 : ProfileMap(Profiles) { in ProfileConverter() 474 for (auto &FuncSample : Profiles) { in ProfileConverter() 525 // thus done optionally. It is seen that duplicating context profiles into in convertCSProfiles() [all …]
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | stringprep.c | 117 } profiles[] = { variable 138 for (i = 0; i < sizeof(profiles)/sizeof(profiles[0]); i++) { in wind_profile() 139 if (strcasecmp(profiles[i].name, name) == 0) { in wind_profile() 140 *flags = profiles[i].flags; in wind_profile()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | RISCVTargetDefEmitter.cpp | 128 ArrayRef<const Record *> Profiles, in printProfileTable() argument 133 OS << "Profiles[] = {\n"; in printProfileTable() 135 for (const Record *Rec : Profiles) { in printProfileTable() 153 auto Profiles = Records.getAllDerivedDefinitionsIfDefined("RISCVProfile"); in emitRISCVProfiles() local 155 if (!Profiles.empty()) { in emitRISCVProfiles() 156 printProfileTable(OS, Profiles, /*Experimental=*/false); in emitRISCVProfiles() 157 bool HasExperimentalProfiles = any_of(Profiles, [&](auto &Rec) { in emitRISCVProfiles() 161 printProfileTable(OS, Profiles, /*Experimental=*/true); in emitRISCVProfiles()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | CtxProfAnalysis.h | 40 PGOCtxProfile Profiles; variable 43 // participating in one or more contextual profiles. 47 // we'll need when we maintain the profiles during IPO transformations. 64 return Profiles.Contexts; in contexts() 67 const PGOCtxProfile &profiles() const { return Profiles; } in profiles() function
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | SSL_CTX_set_tlsext_use_srtp.3 | 77 \& int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles); 78 \& int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles); 143 protection profiles that it is willing to negotiate. 145 The currently configured list of protection profiles for either a client or a 174 success or NULL on error or if no protection profiles have been configured.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | SampleContextTracker.h | 33 // profiles. The path from root node to a given node represents the context of 85 // Profile tracker that manages profiles and its associated context. It 89 // accurate post-inline profile for functions. Internally context profiles 98 SampleContextTracker(SampleProfileMap &Profiles, 120 // of all context profiles for contexts that are not inlined. 213 // Map from function name to context profiles (excluding base profile)
|
| /freebsd/sys/contrib/dev/iwlwifi/fw/ |
| H A D | acpi.c | 686 * Check the validity of n_profiles. The EWRD profiles start in iwl_acpi_get_ewrd_table() 701 /* parse non-cdb chains for all profiles */ in iwl_acpi_get_ewrd_table() 705 /* The EWRD profiles officially go from 2 to 4, but we in iwl_acpi_get_ewrd_table() 724 /* parse cdb chains for all profiles */ in iwl_acpi_get_ewrd_table() 759 u8 profiles; in iwl_acpi_get_wgds_table() member 765 .profiles = ACPI_NUM_GEO_PROFILES_REV3, in iwl_acpi_get_wgds_table() 771 .profiles = ACPI_NUM_GEO_PROFILES, in iwl_acpi_get_wgds_table() 776 .profiles = ACPI_NUM_GEO_PROFILES, in iwl_acpi_get_wgds_table() 796 u32 max_size = hdr_size + profile_size * rev_data[idx].profiles; in iwl_acpi_get_wgds_table() 813 num_profiles = rev_data[idx].profiles; in iwl_acpi_get_wgds_table() [all …]
|
| H A D | runtime.h | 114 * @sar_profiles: sar profiles as read from WRDS/EWRD BIOS tables 115 * @geo_profiles: geographic profiles as read from WGDS BIOS table 128 * @geo_num_profiles: number of geo profiles 129 * @geo_rev: geo profiles table revision
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | CtxProfAnalysis.cpp | 479 // We want to *only* keep the contextual profiles in modules that capture in run() 509 // we can also drop the flat profiles in run() 544 // .Profiles. in run() 545 Result.Profiles = std::move(*MaybeProfiles); in run() 578 convertCtxProfToYaml(OS, C.profiles()); in run() 637 static void preorderVisit(ProfilesTy &Profiles, in preorderVisit() argument 639 for (auto &[_, P] : Profiles) in preorderVisit() 650 Profiles.Contexts, [&](PGOCtxProfContext &Ctx) { in initIndex() 681 const PGOCtxProfContext>(Profiles.Contexts, V); in visit() 703 for (const auto &[_, CtxRoot] : Profiles.Contexts) { in flatten() [all …]
|
| /freebsd/share/doc/psd/18.gprof/ |
| H A D | profiling.me | 30 There are several different uses for program profiles, 31 and each may require different information from the profiles, 33 We distinguish two broad categories of profiles:
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | coverage | 14 # - LLVM raw profiles - generated by a program compiled with 16 # - LLVM indexed profiles - generated by 19 # - LCOV trace files, i.e. aggregated GCC profiles
|
| /freebsd/cddl/usr.sbin/dtrace/tests/common/profile-n/ |
| H A D | Makefile | 31 tst.profiles.d \ 32 tst.profiles.d.out \
|
| /freebsd/usr.sbin/bluetooth/sdpd/ |
| H A D | profile.c | 64 static const profile_p profiles[] = { in profile_get_descriptor() 81 for (i = 0; i < nitems(profiles); i++) in profile_get_descriptor() 82 if (profiles[i]->uuid == uuid) in profile_get_descriptor() 83 return (profiles[i]); in profile_get_descriptor() 63 static const profile_p profiles[] = { profile_get_descriptor() local
|
| /freebsd/usr.bin/clang/llvm-profdata/ |
| H A D | llvm-profdata.1 | 66 Profiles passed in via \fB\-weighted\-input\fP, \fB\-input\-files\fP, or via positional 167 fail if any profiles are invalid, and \(aqall\(aq causes the merge command to fail 168 only if all profiles are invalid. If \(aqall\(aq is set, information from any 169 invalid profiles is excluded from the final merged product. The default 236 Merge three profiles:
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 59 "Takes a profile data file and displays the profiles. See detailed " 70 "Computes and displays the overlap between two profiles. See detailed " 75 "Takes several profiles and merge them together. See detailed " 146 cl::desc("Use debug-info or binary correlation to correlate profiles with " 214 "Merge context sample profiles whose count is below cold threshold")); 219 "Trim context sample profiles whose count is below cold threshold")); 237 "profiles with inlined functions and the other without (only " 266 // profiles for simplicity. Changing this value between invocations could 290 "Fail only if all profiles are invalid."))); 319 cl::desc("Drop the profile symbol list when merging AutoFDO profiles " [all …]
|