Home
last modified time | relevance | path

Searched full:profiles (Results 1 – 25 of 228) sorted by relevance

12345678910

/freebsd/crypto/openssl/ssl/
H A Dd1_srtp.c97 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()
113 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/sys/contrib/ncsw/Peripherals/FM/Pcd/
H A Dfm_plcr.c547 /* 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/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h9 // This file contains definitions needed for reading sample profiles.
18 // Sample profiles are written as ASCII text. The file is divided into
350 : Profiles(), Ctx(C), Buffer(std::move(B)), Format(Format) {} in Profiles() function
364 /// Get the bitmask the discriminators: For FS profiles, return the bit
365 /// mask for this pass. For non FS profiles, return (unsigned) -1.
373 /// The interface to read sample profiles from the associated file.
383 /// The implementaion to read sample profiles from the associated file.
390 /// support loading function profiles on demand, return true when the
392 /// which doesn't support loading function profiles on demand.
395 /// Print all the profiles on stream \p OS.
[all …]
H A DInstrProfWriter.h152 /// specified. An error is returned if IR and FE profiles are mixed.
169 // Check if the profiles are in-compatible. Clang frontend profiles can't be in mergeProfileKind()
180 "cannot merge FunctionEntryOnly profiles and BB profiles together"); in mergeProfileKind()
222 // Writes compressed vtable names to profiles.
H A DSampleProfWriter.h9 // This file contains definitions needed for writing sample profiles.
93 /// Write sample profiles in \p S.
98 /// Write all the sample profiles in the given map of samples.
103 /// Write sample profiles up to given size limit, using the pruning strategy
140 // Write function profiles to the profile file.
231 // to read each section. To read function profiles on demand, sample
277 // profiles collected from running other targets.
336 std::error_code writeFuncMetadata(const SampleProfileMap &Profiles);
H A DSampleProf.h192 /// The common profile is usually merged from profiles collected
733 // NOTE: Using a StringMap here makes parsed profiles consume around 17% more
734 // memory, which is *very* significant for large profiles.
946 /// For Context-Sensitive profiles, this will prefer returning the head
1008 // The two profiles coming with different valid hash codes indicates
1373 /// context profiles. It also supports context profile canonicalization to make
1377 SampleContextTrimmer(SampleProfileMap &Profiles) : ProfileMap(Profiles){};
1381 // cold profiles or only cold base profiles. Trimming base profiles only is
1401 ProfileConverter(SampleProfileMap &Profiles);
1468 "There should be no inlinees' profiles after flattening.");
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dsrtp.h38 /* 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 DSSL_CTX_set_tlsext_use_srtp.pod15 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 Ddwatch.1177 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/utils/TableGen/
H A DRISCVTargetDefEmitter.cpp127 const std::vector<Record *> &Profiles, in printProfileTable() argument
132 OS << "Profiles[] = {\n"; in printProfileTable()
134 for (const Record *Rec : Profiles) { in printProfileTable()
152 auto Profiles = Records.getAllDerivedDefinitionsIfDefined("RISCVProfile"); in emitRISCVProfiles() local
154 if (!Profiles.empty()) { in emitRISCVProfiles()
155 printProfileTable(OS, Profiles, /*Experimental=*/false); in emitRISCVProfiles()
156 bool HasExperimentalProfiles = any_of(Profiles, [&](auto &Rec) { in emitRISCVProfiles()
160 printProfileTable(OS, Profiles, /*Experimental=*/true); in emitRISCVProfiles()
/freebsd/crypto/heimdal/lib/wind/
H A Dstringprep.c117 } 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/lib/ProfileData/
H A DProfileSummaryBuilder.cpp24 cl::desc("Merge context profiles before calculating thresholds."));
95 // instrumentation profiles. in addRecord()
118 // profiles. This can happen to CS nested profile. in addRecord()
194 const SampleProfileMap &Profiles) { in computeSummaryForProfiles() argument
198 const sampleprof::SampleProfileMap *ProfilesToUse = &Profiles; in computeSummaryForProfiles()
202 // more function profiles each with lower counts, which in turn leads to lower in computeSummaryForProfiles()
204 // profiles before computing profile summary. in computeSummaryForProfiles()
207 ProfileConverter::flattenProfile(Profiles, ContextLessProfiles, true); in computeSummaryForProfiles()
H A DSampleProf.cpp36 "generate-merged-base-profiles",
37 cl::desc("When generating nested context-sensitive profiles, always "
39 "profiles merged into it."));
357 // Trimming base profiles only is mainly to honor the preinliner decsion. When in trimAndMergeColdContextProfiles()
363 // Filter the cold profiles from ProfileMap and move them into a tmp in trimAndMergeColdContextProfiles()
389 // Move the merged profiles into ProfileMap; in trimAndMergeColdContextProfiles()
444 ProfileConverter::ProfileConverter(SampleProfileMap &Profiles) in ProfileConverter() argument
445 : ProfileMap(Profiles) { in ProfileConverter()
446 for (auto &FuncSample : Profiles) { in ProfileConverter()
497 // thus done optionally. It is seen that duplicating context profiles into in convertCSProfiles()
[all …]
H A DSampleProfReader.cpp9 // 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()
358 FunctionSamples &FProfile = Profiles.create(FContext); in readImpl()
435 assert((CSProfileCount == 0 || CSProfileCount == Profiles.size()) && in readImpl()
439 TopLevelProbeProfileCount == Profiles.size()) && in readImpl()
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set_tlsext_use_srtp.374 \& int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles);
75 \& int SSL_set_tlsext_use_srtp(SSL *ssl, const char *profiles);
140 protection profiles that it is willing to negotiate.
142 The currently configured list of protection profiles for either a client or a
171 success or NULL on error or if no protection profiles have been configured.
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DSampleContextTracker.h32 // profiles. The path from root node to a given node represents the context of
82 // Profile tracker that manages profiles and its associated context. It
86 // accurate post-inline profile for functions. Internally context profiles
94 SampleContextTracker(SampleProfileMap &Profiles,
116 // of all context profiles for contexts that are not inlined.
207 // Map from function name to context profiles (excluding base profile)
/freebsd/sys/contrib/dev/iwlwifi/fw/
H A Dacpi.c641 * Check the validity of n_profiles. The EWRD profiles start in iwl_acpi_get_ewrd_table()
656 /* parse non-cdb chains for all profiles */ in iwl_acpi_get_ewrd_table()
660 /* The EWRD profiles officially go from 2 to 4, but we in iwl_acpi_get_ewrd_table()
679 /* parse cdb chains for all profiles */ in iwl_acpi_get_ewrd_table()
714 u8 profiles; in iwl_acpi_get_wgds_table() member
720 .profiles = ACPI_NUM_GEO_PROFILES_REV3, in iwl_acpi_get_wgds_table()
726 .profiles = ACPI_NUM_GEO_PROFILES, in iwl_acpi_get_wgds_table()
731 .profiles = ACPI_NUM_GEO_PROFILES, in iwl_acpi_get_wgds_table()
751 u32 max_size = hdr_size + profile_size * rev_data[idx].profiles; in iwl_acpi_get_wgds_table()
768 num_profiles = rev_data[idx].profiles; in iwl_acpi_get_wgds_table()
[all …]
/freebsd/share/doc/psd/18.gprof/
H A Dprofiling.me30 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 Dcoverage14 # - 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 DMakefile31 tst.profiles.d \
32 tst.profiles.d.out \
/freebsd/usr.sbin/bluetooth/sdpd/
H A Dprofile.c64 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 Dllvm-profdata.166 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 Dllvm-profdata.cpp55 "Takes a profile data file and displays the profiles. See detailed "
66 "Computes and displays the overlap between two profiles. See detailed "
71 "Takes several profiles and merge them together. See detailed "
190 "Merge context sample profiles whose count is below cold threshold"));
195 "Trim context sample profiles whose count is below cold threshold"));
237 // profiles for simplicity. Changing this value between invocations could
262 "Fail only if all profiles are invalid.")));
291 cl::desc("Drop the profile symbol list when merging AutoFDO profiles "
297 cl::desc("If true, keep the vtable symbols in indexed profiles"));
331 cl::desc("For sample profiles, list function names (with calling context "
[all …]
/freebsd/share/doc/papers/kerntune/
H A D4.t47 Kernel profiles can be used to identify bottlenecks in performance.
62 input to generate the kernel profiles.
/freebsd/usr.sbin/pmcstat/
H A Dpmcstat.8175 profiles to file
323 Produce profiles in a format compatible with
468 compatible profiles from a sample file use:
516 compatible profiles generated by the

12345678910