Searched refs:bandwidth (Results 1 - 20 of 20) sorted by relevance

/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-igrp.c47 register u_int delay, bandwidth; local
61 bandwidth = EXTRACT_24BITS(igr->igr_bw);
62 metric = bandwidth + delay;
68 10 * delay, bandwidth == 0 ? 0 : 10000000 / bandwidth,
H A Dprint-eigrp.c130 u_int8_t bandwidth[4]; member in struct:eigrp_tlv_ip_int_t
150 u_int8_t bandwidth[4]; member in struct:eigrp_tlv_ip_ext_t
169 u_int8_t bandwidth[4]; member in struct:eigrp_tlv_at_int_t
188 u_int8_t bandwidth[4]; member in struct:eigrp_tlv_at_ext_t
344 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
346 EXTRACT_32BITS(&tlv_ptr.eigrp_tlv_ip_int->bandwidth),
381 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
383 EXTRACT_32BITS(&tlv_ptr.eigrp_tlv_ip_ext->bandwidth),
413 printf("\n\t delay %u ms, bandwidth %u Kbps, mtu %u, hop %u, reliability %u, load %u",
415 EXTRACT_32BITS(&tlv_ptr.eigrp_tlv_at_int->bandwidth),
[all...]
H A Dprint-rsvp.c320 u_int8_t bandwidth[4]; member in struct:rsvp_obj_frr_t
1450 bw.i = EXTRACT_32BITS(obj_ptr.rsvp_obj_frr->bandwidth);
H A Dprint-802_11.c539 "Association denied due to QAP having insufficient bandwidth "
609 "TS deleted because QoS AP lacks sufficient bandwidth for this "
614 "Disassociated because QoS AP lacks sufficient bandwidth for this "
2052 * MCS index, it also includes bandwidth
2113 static const char *bandwidth[4] = { local
2131 * And we know both the bandwidth and
2142 * We don't know both the bandwidth
2170 bandwidth[u2.u8 & IEEE80211_RADIOTAP_MCS_BANDWIDTH_MASK]);
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWIsochChannel.cpp83 fBandwidth = 0; // no bandwidth allocated
87 // used in bandwidth allocation
106 // create command for reading bandwidth available and channel available register
124 // create lock cmd for updating the bandwidth available and channel available registers
572 // do bandwidth and channel allocation
648 // reserve bandwidth:
649 // bandwidth is in units of quads at 1600 Mbs
650 UInt32 bandwidth = 0; local
653 bandwidth = (fPacketSize/4 + 3) * 16 / (1 << inSpeed);
741 // Claim bandwidth fro
[all...]
H A DIOFireWireBus.h214 bool doIRM, UInt32 bandwidth, IOFWSpeed prefSpeed,
H A DIOFireWireController.cpp2511 // Tell all active isochronous channels to re-allocate bandwidth
6117 UInt32 bandwidth,
6132 if( !channel->init(this, doIRM, bandwidth, prefSpeed, stopProc, stopRefCon) )
6271 // Initialize the address for the current IRM's bandwidth available register
6276 // Start with the default, no-bandwidth allocated value for the old val!
6372 // Initialize the address for the current IRM's bandwidth available register
6377 // Start with the default, no-bandwidth available value for the old val!
6477 // Initialize the address for the current IRM's bandwidth available register
6591 // Initialize the address for the current IRM's bandwidth available register
6116 createIsochChannel( bool doIRM, UInt32 bandwidth, IOFWSpeed prefSpeed, FWIsochChannelForceStopNotificationProc stopProc, void * stopRefCon ) argument
/macosx-10.10/xnu-2782.1.97/bsd/netinet/
H A Dip_dummynet.h216 bandwidth to different flows) and a "pipe", which essentially
220 A PIPE emulates a fixed-bandwidth link, whose bandwidth is
226 The bandwidth available on the pipe is shared by the queues
241 to delay and bandwidth;
391 int bandwidth; /* really, bytes/tick. */ member in struct:dn_pipe
529 int bandwidth; /* really, bytes/tick. */ member in struct:dn_pipe_32
654 int bandwidth; /* really, bytes/tick. */ member in struct:dn_pipe_64
H A Dip_dummynet.c60 * This module implements IP dummynet, a bandwidth limiter/delay emulator
275 p->bandwidth = user_pipe_32.bandwidth;
321 p->bandwidth = user_pipe_64.bandwidth;
466 pipe_bp->bandwidth = p->bandwidth;
507 pipe_bp->bandwidth = p->bandwidth;
779 ((_m)->m_pkthdr.len*8*(hz*10) - (q)->numbytes + p->bandwidth
[all...]
/macosx-10.10/network_cmds-457/dnctl/
H A Ddnctl.c146 { "bandwidth", TOK_BW },
436 double b = p->bandwidth;
796 NEED1("bw needs bandwidth or interface\n");
798 errx(EX_DATAERR, "bandwidth only valid for pipes");
800 * set clocking interface or bandwidth value
807 p.bandwidth = 0;
810 p.bandwidth = (int)strtoul(av[0], &end, 0);
813 p.bandwidth *= 1000;
816 p.bandwidth *= 1000000;
819 p.bandwidth *
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/pktsched/
H A Dpktsched_fairq.c106 * altq on em0 fairq bandwidth 650Kb queue { std, bulk }
107 * queue std priority 3 bandwidth 200Kb \
109 * queue bulk priority 2 bandwidth 100Kb \
112 * NOTE: When the aggregate bandwidth is less than the link bandwidth
113 * any remaining bandwidth is dynamically assigned using the
114 * existing bandwidth specs as weightings.
314 u_int64_t bandwidth, u_int32_t nbuckets, int flags, u_int64_t hogs_m1,
325 if (bandwidth == 0 || (bandwidth /
313 fairq_add_queue(struct fairq_if *fif, int priority, u_int32_t qlimit, u_int64_t bandwidth, u_int32_t nbuckets, int flags, u_int64_t hogs_m1, u_int64_t lssc_m1, u_int64_t lssc_d, u_int64_t lssc_m2, u_int32_t qid, struct fairq_class **clp) argument
344 fairq_class_create(struct fairq_if *fif, int pri, u_int32_t qlimit, u_int64_t bandwidth, u_int32_t nbuckets, int flags, u_int64_t hogs_m1, u_int64_t lssc_m1, u_int64_t lssc_d, u_int64_t lssc_m2, u_int32_t qid) argument
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/altq/
H A Daltq_fairq.c188 err = fairq_add_queue(fif, a->priority, a->qlimit, a->bandwidth,
/macosx-10.10/vim-55/runtime/syntax/
H A Dmplayerconf.vim26 syn keyword mplayerconfOption hardframedrop nomouseinput bandwidth dumpstream
/macosx-10.10/IOFireWireIP-226.2/KernelHeaders/IOKit/
H A DIOFWIPDefinitions.h209 UInt32 bandwidth; /* Not yet utilized */ member in struct:__anon1611
/macosx-10.10/network_cmds-457/ipfw.tproj/
H A Dipfw2.c306 { "bandwidth", TOK_BW },
1534 double b = p->bandwidth;
2443 NEED1("bw needs bandwidth or interface\n");
2445 errx(EX_DATAERR, "bandwidth only valid for pipes");
2447 * set clocking interface or bandwidth value
2454 p.bandwidth = 0;
2457 p.bandwidth = strtoul(av[0], &end, 0);
2460 p.bandwidth *= 1000;
2463 p.bandwidth *= 1000000;
2466 p.bandwidth *
[all...]
/macosx-10.10/OpenAL-54/Source/OpenAL/
H A DoalImp.cpp5242 Float32 bandwidth = *(ALfloat *) data; local
5243 if ((bandwidth < 0.5) || (bandwidth > 4.0))
5245 oalContext->SetReverbEQBandwidth(bandwidth);
/macosx-10.10/rsync-45/rsync/
H A Dtech_report.tex17 two machines are connected by a low-bandwidth high-latency
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Dxs.tcl3843 # label $w.r.f11.l -text "Analysis bandwidth (Hz):" -width 25 -anchor w
4305 label $w.r.f2.l -text "Analysis bandwidth (Hz):" -width 25 -anchor w
4324 # label $w.r.f11.l -text "Analysis bandwidth (Hz):" -width 25 -anchor w
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dpfvar.h1650 u_int64_t hogs_m1; /* hog detection bandwidth */
1658 /* bandwidth types */
1660 #define PF_ALTQ_BW_PERCENT 2 /* bandwidth in percentage */
1679 u_int32_t bwtype; /* bandwidth type */
1684 u_int64_t ifbandwidth; /* interface bandwidth */
1700 u_int64_t bandwidth; /* queue bandwidth */ member in struct:pf_altq
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dtommath.tex2780 reduce the memory bandwidth to two \textbf{mp\_digit} reads per iteration.
2815 one mp\_word per iteration. On processors such as the Athlon XP and P4 this did not matter much since the cache bandwidth
2910 \item To a lesser extent memory bandwidth and function call overheads. Provided the values are in the processor cache this is less of an

Completed in 339 milliseconds