Home
last modified time | relevance | path

Searched refs:profile (Results 1 – 25 of 362) sorted by relevance

12345678910>>...15

/freebsd/sys/dev/mthca/
H A Dmthca_profile.c82 profile = kzalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL); in mthca_make_profile()
83 if (!profile) in mthca_make_profile()
116 profile[i].log_num = max(ffs(profile[i].num) - 1, 0); in mthca_make_profile()
117 profile[i].size *= profile[i].num; in mthca_make_profile()
119 profile[i].size = max(profile[i].size, (u64) PAGE_SIZE); in mthca_make_profile()
138 if (profile[j].size > profile[j - 1].size) in mthca_make_profile()
139 swap(profile[j], profile[j - 1]); in mthca_make_profile()
152 kfree(profile); in mthca_make_profile()
156 if (profile[i].size) in mthca_make_profile()
159 i, profile[i].type, profile[i].log_num, in mthca_make_profile()
[all …]
/freebsd/sys/dev/mlx4/mlx4_core/
H A Dmlx4_profile.c87 profile = kcalloc(MLX4_RES_NUM, sizeof(*profile), GFP_KERNEL); in mlx4_make_profile()
88 if (!profile) in mlx4_make_profile()
118 profile[i].num = roundup_pow_of_two(profile[i].num); in mlx4_make_profile()
119 profile[i].log_num = ilog2(profile[i].num); in mlx4_make_profile()
120 profile[i].size *= profile[i].num; in mlx4_make_profile()
121 profile[i].size = max(profile[i].size, (u64) PAGE_SIZE); in mlx4_make_profile()
132 if (profile[j].size > profile[j - 1].size) in mlx4_make_profile()
133 swap(profile[j], profile[j - 1]); in mlx4_make_profile()
146 kfree(profile); in mlx4_make_profile()
150 if (profile[i].size) in mlx4_make_profile()
[all …]
/freebsd/lib/libclang_rt/profile/
H A DMakefile4 LIB= clang_rt.profile-${CRTARCH}
13 SRCS+= profile/GCDAProfiling.c
14 SRCS+= profile/InstrProfiling.c
15 SRCS+= profile/InstrProfilingBuffer.c
16 SRCS+= profile/InstrProfilingFile.c
18 SRCS+= profile/InstrProfilingMerge.c
20 SRCS+= profile/InstrProfilingNameVar.c
24 SRCS+= profile/InstrProfilingUtil.c
25 SRCS+= profile/InstrProfilingValue.c
29 .PATH: ${CRTSRC}/include/profile
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/
H A Dtst.alignring.d42 profile:::profile-1009hz
47 profile:::profile-1237hz
61 profile:::profile-1789hz
71 profile-1543hz
74 profile-1361hz
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.ListProbesWithProviders39 * /usr/sbin/dtrace -lP profile
40 * RESULT: List of only profile probes.
47 * /usr/sbin/dtrace -lP profile:::
51 * /usr/sbin/dtrace -lP profile:::profile-97
55 * /usr/sbin/dtrace -lP profile -lP syscall
59 * /usr/sbin/dtrace -lP profile -lP foofile
60 * RESULT: List of only profile probes.
63 * /usr/sbin/dtrace -lP foofile -lP profile
64 * RESULT: List of only profile probes.
76 * RESULT: List of only profile probes.
[all …]
H A Dman.TraceProvider39 * /usr/sbin/dtrace -P profile
40 * RESULT: Trace of all profile probes.
47 * /usr/sbin/dtrace -P profile:::
51 * /usr/sbin/dtrace -P profile:::profile-97
55 * /usr/sbin/dtrace -P profile -P syscall
59 * /usr/sbin/dtrace -P profile -P foofile
60 * RESULT: Count of profile probes that matched and invalid
68 * /usr/sbin/dtrace -P profile'{printf("FOUND");}'
73 * /usr/sbin/dtrace -P profile '{printf("FOUND");}'
78 * profile'/probename == "profile-199"/{printf("FOUND");}'
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h57 profile.AddPointer(R); in Profile()
61 Profile(profile, R); in Profile()
116 profile.AddPointer(S); in Profile()
117 profile.AddPointer(LCtx); in Profile()
118 profile.Add(T); in Profile()
162 profile.AddPointer(r); in Profile()
199 profile.AddPointer(R); in Profile()
203 Profile(profile, R); in Profile()
260 profile.AddPointer(R); in Profile()
261 profile.AddPointer(S); in Profile()
[all …]
/freebsd/bin/sh/
H A Dprofile2 # System-wide .profile file for sh(1).
15 # Load each .sh file in /etc/profile.d/, then /usr/local/etc/profile,
16 # then each .sh file in /usr/local/etc/profile.d/.
17 _loaded=${_loaded:-/etc/profile}
20 for _file in "${_dir}"/profile "${_dir}"/profile.d/*.sh ; do
H A DMakefile5 ETC= profile
6 ROOT= dot.shrc dot.profile
10 ROOTNAME_dot.profile= .profile
74 rm -f ${DESTDIR}/.profile
78 ${INSTALL_LINK} ${TAG_ARGS} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
/freebsd/usr.sbin/bluetooth/sdpd/
H A Dsrr.c59 profile_t *profile = NULL; in server_prepare_service_register_response() local
83 profile = profile_get_descriptor(uuid); in server_prepare_service_register_response()
84 if (profile == NULL) in server_prepare_service_register_response()
88 if (req_end - req < profile->dsize || in server_prepare_service_register_response()
89 profile->valid == NULL || in server_prepare_service_register_response()
90 (profile->valid)(req, req_end - req) == 0) in server_prepare_service_register_response()
94 provider = provider_register(profile, bdaddr, fd, req, req_end - req); in server_prepare_service_register_response()
H A Dprovider.h40 struct profile;
44 struct profile *profile; /* profile */ member
61 provider_p provider_register (profile_p const profile,
H A Dprofile.h65 struct profile struct
73 typedef struct profile profile_t; argument
74 typedef struct profile *profile_p;
77 profile_attr_create_p profile_get_attr(const profile_p profile, uint16_t attr);
H A Dprovider.c69 sd->profile = &sd_profile_descriptor; in provider_register_sd()
74 bgd->profile = &bgd_profile_descriptor; in provider_register_sd()
89 provider_register(profile_p const profile, bdaddr_p const bdaddr, int32_t fd, in provider_register() argument
97 provider->profile = profile; in provider_register()
H A Dscr.c76 if (req_end - req < provider->profile->dsize || in server_prepare_service_change_response()
77 provider->profile->valid == NULL || in server_prepare_service_change_response()
78 (provider->profile->valid)(req, req_end - req) == 0) in server_prepare_service_change_response()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_COMM_COMM.CommitAftCommit.d45 profile:::tick-1sec
52 profile:::tick-1sec
60 profile:::tick-1sec
65 profile:::tick-1sec
H A Derr.D_SPEC_COMM.SpecAftCommit.d48 profile:::tick-1sec
56 profile:::tick-1sec
61 profile:::tick-1sec
/freebsd/libexec/rc/rc.d/
H A Dpower_profile73 profile="performance"
77 profile="economy"
88 eval value=\$${profile}_cx_lowest
96 eval value=\$${profile}_cpu_freq
/freebsd/contrib/opencsd/decoder/source/
H A Dtrc_core_arch_map.cpp143 ap.profile = profile_CortexA; in getPatternMatchCoreName()
145 ap.profile = profile_CortexR; in getPatternMatchCoreName()
147 ap.profile = profile_CortexM; in getPatternMatchCoreName()
166 ap.profile = profile_CortexA; in getPatternMatchCoreName()
169 ap.profile = profile_CortexR; in getPatternMatchCoreName()
171 ap.profile = profile_CortexM; in getPatternMatchCoreName()
/freebsd/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc12 * defined in this file affect the profile runtime ABI, the raw profile format,
127 raw profile format. */
181 * when the raw profile data is read during profile merging.
376 *The number of value profile kinds that has value profile data.
378 * have profile data if the number of value profile sites for the
441 * represent profile data in host tools (reader, writer, and profile-use)
460 * After extracting the value profile data from the value profile record,
584 * Extract value profile data of a function for the profile kind \c ValueKind
675 * generated profile, and 0 if this is a Clang FE generated profile.
743 /* Value profile nodes section. */
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc12 * defined in this file affect the profile runtime ABI, the raw profile format,
127 raw profile format. */
181 * when the raw profile data is read during profile merging.
376 *The number of value profile kinds that has value profile data.
378 * have profile data if the number of value profile sites for the
441 * represent profile data in host tools (reader, writer, and profile-use)
460 * After extracting the value profile data from the value profile record,
584 * Extract value profile data of a function for the profile kind \c ValueKind
675 * generated profile, and 0 if this is a Clang FE generated profile.
743 /* Value profile nodes section. */
[all …]
/freebsd/crypto/heimdal/lib/wind/
H A Drfc4013.txt31 user names and passwords. This profile is intended to be used by
49 This document defines the "SASLprep" profile of the "stringprep"
63 passwords are used. This profile is not intended for use in
78 algorithm [StringPrep]. This profile is intended for use in
81 This profile uses Unicode 3.2 [Unicode].
97 This profile specifies:
107 This profile specifies using Unicode normalization form KC, as
209 protocol. This profile has been registered in the stringprep profile
212 Name of this profile: SASLprep
213 RFC in which the profile is defined: RFC 4013
[all …]
H A Drfc3491.txt34 throughout the world. This profile of the stringprep protocol is
43 correct. It is a profile of stringprep [STRINGPREP]. These
49 - The intended applicability of the profile: internationalized
77 used for that purpose. Nameprep is a profile of Stringprep
97 This profile specifies mapping using the following tables from
105 This profile specifies using Unicode normalization form KC, as
136 outside of this profile.
234 in the stringprep profile registry
237 Name of this profile:
240 RFC in which the profile is defined:
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp168 llvm::FoldingSetNodeID profile; in getRegionValueSymbol() local
169 SymbolRegionValue::Profile(profile, R); in getRegionValueSymbol()
171 SymExpr *SD = DataSet.FindNodeOrInsertPos(profile, InsertPos); in getRegionValueSymbol()
186 llvm::FoldingSetNodeID profile; in conjureSymbol() local
189 SymExpr *SD = DataSet.FindNodeOrInsertPos(profile, InsertPos); in conjureSymbol()
202 llvm::FoldingSetNodeID profile; in getDerivedSymbol() local
203 SymbolDerived::Profile(profile, parentSymbol, R); in getDerivedSymbol()
205 SymExpr *SD = DataSet.FindNodeOrInsertPos(profile, InsertPos); in getDerivedSymbol()
217 llvm::FoldingSetNodeID profile; in getExtentSymbol() local
218 SymbolExtent::Profile(profile, R); in getExtentSymbol()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_tlsext_use_srtp.pod37 SRTP protection profile names.
39 The currently supported protection profile names are:
53 This corresponds to the profile of the same name defined in RFC7714.
57 This corresponds to the profile of the same name defined in RFC7714.
61 Supplying an unrecognised protection profile name will result in an error.
72 After a handshake has been completed the negotiated SRTP protection profile (if
75 protection profile was negotiated. The memory returned from this function should
78 If an SRTP protection profile has been successfully negotiated then the SRTP
83 master key length and the salt length as defined for the protection profile in
/freebsd/sys/modules/dtrace/profile/
H A DMakefile4 .PATH: ${SYSDIR}/cddl/dev/profile
6 KMOD= profile
7 SRCS= profile.c

12345678910>>...15