Searched refs:profile (Results 226 - 250 of 266) sorted by relevance

1234567891011

/freebsd-9.3-release/tools/tools/crypto/
H A Dcryptotest.c47 * -p profile kernel crypto operations (must be root)
77 * then you can specify the -p option to get a "profile" of the time spent
158 printf("-p profile kernel crypto operation (must be root)\n");
428 runtests(struct alg *alg, int count, int size, u_long cmd, int threads, int profile) argument
453 if (profile) {
494 if (profile) {
523 int profile = 0; local
555 profile = 1;
597 runtests(alg, count, sizes[j], cmd, maxthreads, profile);
603 runtests(alg, count, sizes[i], cmd, maxthreads, profile);
[all...]
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Dradeon_pm.c74 if (rdev->pm.profile == PM_PROFILE_AUTO) {
85 switch (rdev->pm.profile) {
346 int cp = rdev->pm.profile;
366 rdev->pm.profile = PM_PROFILE_DEFAULT;
368 rdev->pm.profile = PM_PROFILE_AUTO;
370 rdev->pm.profile = PM_PROFILE_LOW;
372 rdev->pm.profile = PM_PROFILE_MID;
374 rdev->pm.profile = PM_PROFILE_HIGH;
399 (pm == PM_METHOD_DYNPM) ? "dynpm" : "profile");
417 } else if (strncmp("profile", bu
[all...]
/freebsd-9.3-release/etc/
H A DMakefile36 profile \
269 dot.profile ${DESTDIR}/root/.profile; \
270 rm -f ${DESTDIR}/.profile; \
271 ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp301 llvm::FoldingSetNodeID profile; local
304 NodeTy::Profile(profile, L, State, IsSink);
305 NodeTy* V = Nodes.FindNodeOrInsertPos(profile, InsertPos);
H A DPathDiagnostic.cpp259 llvm::FoldingSetNodeID profile; local
260 D->Profile(profile);
263 if (PathDiagnostic *orig = Diags.FindNodeOrInsertPos(profile, InsertPos)) {
/freebsd-9.3-release/sys/ofed/drivers/infiniband/hw/mthca/
H A Dmthca_main.c298 struct mthca_profile profile; local
341 profile = hca_profile;
342 profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
343 profile.uarc_size = 0;
345 profile.num_srq = dev_lim.max_srqs;
347 size = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca);
628 struct mthca_profile profile; local
671 profile = hca_profile;
672 profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
673 profile
[all...]
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_dummynet.c761 if (s->profile) {
762 free(s->profile, M_DUMMYNET);
763 s->profile = NULL;
873 * This routine only copies the initial part of a profile ? XXX
995 if (copy_profile(a, s->profile))
1241 /* remove profile if exists */
1242 if (s->profile) {
1243 free(s->profile, M_DUMMYNET);
1244 s->profile = NULL;
1357 struct dn_profile *pf = NULL; /* copy of old link profile */
[all...]
H A Dip_dn_private.h271 struct dn_profile *profile; /* delay profile, if any */ member in struct:dn_schk
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dvmstat-p.d109 profile:::tick-1sec
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Mem/
H A Dvmstat-p.d109 profile:::tick-1sec
/freebsd-9.3-release/contrib/gcc/
H A Dfunction.h171 (set only when profile feedback is available). */
176 (set only when profile feedback is available). */
417 unsigned int profile : 1;
504 #define current_function_profile (cfun->profile)
/freebsd-9.3-release/sys/contrib/altq/altq/
H A Daltq_cdnr.h95 struct tb_profile profile; member in struct:cdnr_add_tbmeter
105 struct tb_profile profile; member in struct:cdnr_modify_tbmeter
118 struct tb_profile cmtd_profile; /* profile for committed tb */
119 struct tb_profile peak_profile; /* profile for peak tb */
131 struct tb_profile cmtd_profile; /* profile for committed tb */
132 struct tb_profile peak_profile; /* profile for peak tb */
298 struct tbe cmtd_tb; /* committed tb profile */
299 struct tbe peak_tb; /* peak tb profile */
H A Daltq_cdnr.c523 tb_import_profile(tb, profile)
525 struct tb_profile *profile;
527 tb->rate = TB_SCALE(profile->rate / 8) / machclk_freq;
528 tb->depth = TB_SCALE(profile->depth);
541 tbm_create(top, profile, in_action, out_action)
543 struct tb_profile *profile;
556 tb_import_profile(&tbm->tb, profile);
977 tbm = tbm_create(top, &ap->profile, &ap->in_action, &ap->out_action);
994 tb_import_profile(&tbm->tb, &ap->profile);
H A Daltq_subr.c375 tbr_set(ifq, profile)
377 struct tb_profile *profile;
392 if (profile->rate == 0) {
413 tbr->tbr_rate = TBR_SCALE(profile->rate / 8) / machclk_freq;
414 tbr->tbr_depth = TBR_SCALE(profile->depth);
491 * get token bucket regulator profile
494 tbr_get(ifq, profile)
496 struct tb_profile *profile;
502 profile->rate = 0;
503 profile
[all...]
/freebsd-9.3-release/tools/test/dtrace/
H A DMakefile62 ${TESTSRCDIR}/tst/common/profile-n/tst.ufuncsort.c \
115 ${TESTSRCDIR}/tst/common/profile-n/tst.func.ksh \
116 ${TESTSRCDIR}/tst/common/profile-n/tst.mod.ksh \
117 ${TESTSRCDIR}/tst/common/profile-n/tst.sym.ksh \
118 ${TESTSRCDIR}/tst/common/profile-n/tst.ufunc.ksh \
119 ${TESTSRCDIR}/tst/common/profile-n/tst.ufuncsort.ksh \
120 ${TESTSRCDIR}/tst/common/profile-n/tst.umod.ksh \
121 ${TESTSRCDIR}/tst/common/profile-n/tst.usym.ksh \
/freebsd-9.3-release/usr.sbin/bluetooth/sdpd/
H A Dssr.c41 #include "profile.h"
189 puuid.b[2] = provider->profile->uuid >> 8;
190 puuid.b[3] = provider->profile->uuid;
H A Dprofile.c2 * profile.c
30 * $Id: profile.c,v 1.6 2004/01/13 19:31:54 max Exp $
38 #include "profile.h"
42 * Lookup profile descriptor
82 * Look attribute in the profile descripror
86 profile_get_attr(const profile_p profile, uint16_t attr) argument
88 attr_p ad = (attr_p) profile->attrs;
H A Dsar.c41 #include "profile.h"
46 * Prepare SDP attr/value pair. Check if profile implements the attribute
58 profile_attr_create_p cf = profile_get_attr(provider->profile, attr);
/freebsd-9.3-release/gnu/usr.bin/cc/cc_int/
H A DMakefile52 print-rtl.o print-tree.o profile.o value-prof.o var-tracking.o \
60 tree-profile.o rtlhooks.o cfgexpand.o lambda-mat.o \
/freebsd-9.3-release/sys/amd64/conf/
H A DNOTES12 profile 2
/freebsd-9.3-release/sys/pc98/conf/
H A DNOTES12 profile 2
/freebsd-9.3-release/sys/pci/
H A Dncr.c490 struct profile { struct
1103 struct profile profile; member in struct:ncb
5286 np->profile.num_fly++;
5300 np->profile.num_int++;
5808 np->profile.num_break++;
6878 np->profile.num_trans += 1;
6880 np->profile.num_bytes += cp->ccb->csio.dxfer_len;
6881 np->profile.num_disc += diff;
6882 np->profile
[all...]
/freebsd-9.3-release/crypto/openssh/contrib/redhat/
H A Dopenssh.spec280 install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/
281 install -m 755 contrib/redhat/gnome-ssh-askpass.csh $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/
282 install -m 755 contrib/redhat/gnome-ssh-askpass.sh $RPM_BUILD_ROOT%{_sysconfdir}/profile.d/
405 %attr(0755,root,root) %config %{_sysconfdir}/profile.d/gnome-ssh-askpass.*
418 - Don't install profile.d scripts when not building with GNOME/GTK askpass
502 - mark profile.d scriptlets as config files (#42337)
/freebsd-9.3-release/sys/i386/conf/
H A DNOTES12 profile 2
/freebsd-9.3-release/gnu/usr.bin/cc/cc_tools/
H A DMakefile104 $(srcdir)/dojump.c $(srcdir)/tree-profile.c \
108 $(srcdir)/profile.c $(srcdir)/regclass.c \
120 $(srcdir)/tree-profile.c $(srcdir)/tree-nested.c \

Completed in 373 milliseconds

1234567891011