Searched refs:rate (Results 51 - 75 of 129) sorted by relevance

123456

/macosx-10.10/libxslt-13/libxslt/tests/xmlspec/
H A DW3C-REC.css81 p.copyright { volume: x-soft; speech-rate: x-fast }
/macosx-10.10/xnu-2782.1.97/bsd/net/classq/
H A Dclassq_subr.c596 * rate: byte_per_unittime << 32
694 * if the specified rate is zero, the token bucket regulator is deleted.
702 u_int64_t rate, old_rate; local
712 rate = profile->rate;
720 rate = (eff_rate * profile->percent) / 100;
723 if (rate == 0) {
740 printf("%s: TBR %s (rate %llu bps depth %u)\n", if_name(ifp),
742 "enabled", rate, profile->depth);
747 tbr->tbr_rate_raw = rate;
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gstreamer/
H A DMediaPlayerPrivateGStreamer.cpp489 // negative playback rate. There's no upstream accepted patch for
541 if (!doSeek(clockTime, m_player->rate(), static_cast<GstSeekFlags>(GST_SEEK_FLAG_FLUSH | GST_SEEK_FLAG_ACCURATE))) {
552 bool MediaPlayerPrivateGStreamer::doSeek(gint64 position, float rate, GstSeekFlags seekType) argument
556 if (rate > 0) {
569 if (!rate)
570 rate = 1.0;
572 return gst_element_seek(m_playBin.get(), rate, GST_FORMAT_TIME, seekType,
587 // Mute the sound if the playback rate is too extreme and
602 ERROR_MEDIA_MESSAGE("Set rate to %f failed", m_playbackRate);
802 void MediaPlayerPrivateGStreamer::setRate(float rate) argument
[all...]
H A DMediaPlayerPrivateGStreamer.h160 bool doSeek(gint64 position, float rate, GstSeekFlags seekType);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.cpp305 void MediaPlayerPrivateAVFoundation::setRate(float rate) argument
307 LOG(Media, "MediaPlayerPrivateAVFoundation::setRate(%p) - seting to %f", this, rate);
308 m_requestedRate = rate;
318 return rate() == 0;
634 m_player->handlePlaybackCommand(rate() ? MediaSession::PlayCommand : MediaSession::PauseCommand);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateMediaSourceAVFObjC.mm107 - (float)rate;
108 - (void)setRate:(float)rate;
109 - (void)setRate:(float)rate time:(CMTime)time;
507 void MediaPlayerPrivateMediaSourceAVFObjC::setRateDouble(double rate)
509 m_rate = rate;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A Ddbrec.tcl9 set rate 16000
10 snack::sound t -rate $rate
11 snack::sound s -rate $rate
293 set end [expr int([s cget -rate] * $t)]
294 set start [expr $end - [s cget -rate] / 10]
H A DfourChan.tcl9 sound s -channels 4 -rate 8000
H A Dplaylist.tcl113 set t0 [expr [clock scan now] - $args / [s cget -rate]]
206 set pos [expr int([s cget -rate] * [snack::audio elapsed])]
H A Dsnamp.tcl113 set t0 [expr [clock scan now] - $args / [s cget -rate]]
201 set pos [expr int([s cget -rate] * [snack::audio elapsed])]
/macosx-10.10/libauto-186/
H A Dauto_impl_utilities.c125 static double rate = 0.0;
126 if (rate == 0.0) {
129 rate = (double)info.numer / (1.0E9 * (double)info.denom);
131 return (after - before) * rate;
/macosx-10.10/tcl-105/tcl_ext/snack/snack/unix/
H A DjkAudIO_osx.c46 static float rate; variable
146 rate = (float) freq;
225 float frac = rate / 44100.0f;
291 return((int) (A->tot * rate / 44100.0f));
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-sflow.c95 u_int8_t rate[4]; member in struct:sflow_flow_sample_t
108 u_int8_t rate[4]; member in struct:sflow_expanded_flow_sample_t
767 printf(" seqnum %u, type %u, idx %u, rate %u, pool %u, drops %u, input %u output %u records %u",
771 EXTRACT_32BITS(sflow_flow_sample->rate),
797 printf(" seqnum %u, type %u, idx %u, rate %u, pool %u, drops %u, records %u",
801 EXTRACT_32BITS(sflow_expanded_flow_sample->rate),
H A Dprint-802_11.c55 u_int8_t rate; member in struct:radiotap_state
72 PRINT_RATE(sep, p.rates.rate[z], \
73 (p.rates.rate[z] & 0x80 ? "*" : "")); \
757 if (rates.length > sizeof rates.rate)
763 memcpy(&rates.rate, p + offset, rates.length);
1907 /* Save state rate */
1908 state->rate = u.u8;
2023 * XXX On FreeBSD rate & 0x80 means we have an MCS. On
2029 * implementations that stuff a rate value into
2035 * an MCS value, otherwise it's a rate
[all...]
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSoundEngine.c933 int devChannels = -1, rate = -1, noPeeping = 0; local
1085 if (Tcl_GetIntFromObj(interp, objv[arg+1], &rate) != TCL_OK) {
1171 if (rate == -1) {
1172 rate = s->samprate;
1176 rate = 44100;
1181 startTime = (int) (dStart / 1000.0 * rate + .5);
1191 duration = (int) (dDuration / 1000.0 * rate + .5);
1246 f->si->rate = rate;
1272 if (SnackAudioOpen(&ado, interp, s->devStr, PLAY, rate, devChannel
[all...]
H A DjkSound.h193 #define Snack_SetSampleRate(s, rate) (s)->samprate = (rate)
195 #define Snack_SetFrequency(s, rate) (s)->samprate = (rate)
543 int rate; member in struct:SnackStreamInfo
644 extern Sound *Snack_NewSound(int rate, int encoding, int nchannels);
H A DjkFilter.c136 si->rate = s->samprate;
664 rf->nsmp[i] = (int) (rf->delay[i] * rf->si->rate / 1000.0) *
744 rf->nsmp[i] = (int) (rf->delay[i] * si->rate / 1000.0) * si->outWidth;
908 rf->nsmp[i] = (int) (rf->delay[i] * rf->si->rate / 1000.0) *
991 rf->nsmp[i] = (int) (rf->delay[i] * si->rate / 1000.0) * si->outWidth;
1331 mf->length = (int) (mf->msLength * si->rate / 1000.0);
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DDynamicsCompressorKernel.cpp301 // envelopeRate is the rate we slew from current compressor level to the desired level.
302 // The exact rate depends on if we're attacking or releasing and by how much.
348 // As long as we're still in attack mode, use a rate based off
405 float rate = isRelease ? satReleaseRate : 1; local
407 detectorAverage += (attenuation - detectorAverage) * rate;
/macosx-10.10/WebCore-7600.1.25/platform/mediastream/mac/
H A DAVCaptureDeviceManager.mm286 float rate = value.toFloat();
287 return rate > 0 && rate <= 60;
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DWebVideoFullscreenInterfaceAVKit.mm104 @property double rate;
199 return [self rate] != 0;
213 return [NSSet setWithObject:@"rate"];
619 NSTimeInterval anchorTimeStamp = ![playerController() rate] ? NAN : anchorTime;
621 anchorTimeStamp:anchorTimeStamp rate:0];
633 playerController().rate = isPlaying ? playbackRate : 0.;
/macosx-10.10/mDNSResponder-561.1.1/mDNSMacOSX/
H A Dpfkey.c301 * set the rate for SOFT lifetime against HARD one.
302 * If rate is more than 100 or equal to zero, then set to 100.
310 pfkey_set_softrate(type, rate)
311 u_int type, rate;
315 if (rate > 100 || rate == 0)
316 rate = 100;
320 soft_lifetime_allocations_rate = rate;
323 soft_lifetime_bytes_rate = rate;
326 soft_lifetime_addtime_rate = rate;
[all...]
/macosx-10.10/ppp-786.1.1/Drivers/L2TP/L2TP-plugin/
H A Dpfkey.c301 * set the rate for SOFT lifetime against HARD one.
302 * If rate is more than 100 or equal to zero, then set to 100.
310 pfkey_set_softrate(type, rate)
311 u_int type, rate;
315 if (rate > 100 || rate == 0)
316 rate = 100;
320 soft_lifetime_allocations_rate = rate;
323 soft_lifetime_bytes_rate = rate;
326 soft_lifetime_addtime_rate = rate;
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DSharedBitmap.cpp425 double rate = static_cast<double>(bmpWidth) / origSourceSize.width(); local
426 double temp = tileRect.width() * rate;
427 tileRect.setX(tileRect.x() * rate);
429 temp = tileRect.height() * rate;
430 tileRect.setY(tileRect.y() * rate);
/macosx-10.10/ncurses-44/ncurses/progs/
H A Dtset.c271 /* Baud rate conditionals for mapping. */
283 int conditional; /* Baud rate conditionals bitmask. */
284 int speed; /* Baud rate to compare against. */
354 tbaudrate(char *rate) argument
360 if (*rate == 'B')
361 ++rate;
364 if (!CaselessCmp(rate, sp->string)) {
370 err("unknown baud rate %s", rate);
377 * The baud rate test
[all...]
/macosx-10.10/postfix-255/postfix/src/smtpd/
H A Dsmtpd.c640 /* The per SMTP client connection count and request rate limits are
982 /* anvil(8), connection/rate limiting
1352 * Client connection and rate limiting.
2213 int rate; local
2245 * XXX The client event count/rate control must be consistent in its use
2247 * now we exclude xclient authorized hosts from event count/rate control.
2255 &rate) == ANVIL_STAT_OK
2256 && rate > var_smtpd_cmail_limit) {
2260 msg_warn("Message delivery request rate limit exceeded: %d from %s for service %s",
2261 rate, stat
2536 int rate; local
3378 int rate; local
4140 int rate; local
4330 int rate; local
[all...]

Completed in 387 milliseconds

123456