HomeSort by relevance Sort by last modified time
    Searched refs:rate (Results 51 - 75 of 924) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
resnet_utils.py 87 def conv2d_same(inputs, num_outputs, kernel_size, stride, rate=1, scope=None):
116 rate: An integer, rate for atrous convolution.
129 rate=rate,
133 kernel_size_effective = kernel_size + (kernel_size - 1) * (rate - 1)
144 rate=rate,
197 # The atrous convolution rate parameter.
198 rate =
    [all...]
  /external/curl/docs/cmdline-opts/
limit-rate.d 1 Long: limit-rate
3 Help: Limit transfer speed to RATE
5 Specify the maximum transfer rate you want curl to use - for both downloads
15 might cripple the rate-limiting slightly, to help keeping the speed-limit
  /external/libvpx/libvpx/vp8/encoder/
pickinter.h 24 extern void vp8_pick_intra_mode(MACROBLOCK *x, int *rate);
  /external/syslinux/gpxe/src/include/gpxe/
rc80211.h 6 * Rate-control algorithm prototype for 802.11.
16 void rc80211_update_rx ( struct net80211_device *dev, int retry, u16 rate );
  /external/webrtc/webrtc/common_audio/vad/include/
webrtc_vad.h 48 // consequence also the missed detection rate goes up.
73 // Checks for valid combinations of |rate| and |frame_length|. We support 10,
76 // - rate [i] : Sampling frequency (Hz).
80 int WebRtcVad_ValidRateAndFrameLength(int rate, size_t frame_length);
  /system/media/alsa_utils/
alsa_device_proxy.c 69 if (config->rate != 0 && profile_is_sample_rate_valid(profile, config->rate)) {
70 proxy->alsa_config.rate = config->rate;
72 proxy->alsa_config.rate = profile->default_config.rate;
73 ALOGW("Invalid sample rate %u - using default %u.",
74 config->rate, profile->default_config.rate);
75 // Indicate override when default rate was not requeste
    [all...]
  /external/adhd/cras/src/server/
rate_estimator.c 10 /* The max rate skew that considered reasonable */
41 struct rate_estimator *rate_estimator_create(unsigned int rate,
52 re->estimated_rate = rate;
68 void rate_estimator_reset_rate(struct rate_estimator *re, unsigned int rate)
70 re->estimated_rate = rate;
103 double rate = least_square_best_fit_slope(&re->lsq); local
104 if (fabs(re->estimated_rate - rate) < MAX_RATE_SKEW)
105 re->estimated_rate = rate * (1 - re->smooth_factor) +
  /external/esd/include/
esd.h 22 /* default sample rate for the EsounD server */
65 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */
129 /* rate, format = (bits | channels | stream | func) */
145 int esd_play_stream( esd_format_t format, int rate,
147 int esd_play_stream_fallback( esd_format_t format, int rate,
149 int esd_monitor_stream( esd_format_t format, int rate,
151 /* int esd_monitor_stream_fallback( esd_format_t format, int rate ); */
152 int esd_record_stream( esd_format_t format, int rate,
154 int esd_record_stream_fallback( esd_format_t format, int rate,
156 int esd_filter_stream( esd_format_t format, int rate,
201 int rate; \/* sample rate *\/ member in struct:esd_server_info
212 int rate; \/* sample rate *\/ member in struct:esd_player_info
227 int rate; \/* sample rate *\/ member in struct:esd_sample_info
    [all...]
  /frameworks/wilhelm/src/itf/
IPlaybackRate.cpp 22 static SLresult IPlaybackRate_SetRate(SLPlaybackRateItf self, SLpermille rate)
28 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate)) {
36 result = android_audioPlayer_setPlaybackRateAndConstraints(ap, rate, thiz->mProperties);
44 thiz->mRate = rate;
62 SLpermille rate = thiz->mRate; local
64 *pRate = rate;
128 SLpermille rate, SLuint32 *pCapabilities)
138 if (!(thiz->mMinRate <= rate && rate <= thiz->mMaxRate))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
esd.h 24 /* default sample rate for the EsounD server */
67 ESD_PROTO_SERVER_INFO, /* get server info (ver, sample rate, format) */
131 /* rate, format = (bits | channels | stream | func) */
147 int esd_play_stream( esd_format_t format, int rate,
149 int esd_play_stream_fallback( esd_format_t format, int rate,
151 int esd_monitor_stream( esd_format_t format, int rate,
153 /* int esd_monitor_stream_fallback( esd_format_t format, int rate ); */
154 int esd_record_stream( esd_format_t format, int rate,
156 int esd_record_stream_fallback( esd_format_t format, int rate,
158 int esd_filter_stream( esd_format_t format, int rate,
203 int rate; \/* sample rate *\/ member in struct:esd_server_info
214 int rate; \/* sample rate *\/ member in struct:esd_player_info
229 int rate; \/* sample rate *\/ member in struct:esd_sample_info
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
SoftVsyncObserver.cpp 84 void SoftVsyncObserver::setRefreshRate(int rate)
87 WTRACE("too late to set refresh rate");
88 } else if (rate < 1 || rate > 120) {
89 WTRACE("invalid refresh rate %d", rate);
91 mRefreshRate = rate;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/observers/
SoftVsyncObserver.cpp 80 void SoftVsyncObserver::setRefreshRate(int rate)
83 WLOGTRACE("too late to set refresh rate");
84 } else if (rate < 1 || rate > 120) {
85 WLOGTRACE("invalid refresh rate %d", rate);
87 mRefreshRate = rate;
  /prebuilts/go/darwin-x86/src/runtime/pprof/
protomem.go 15 func writeHeapProto(w io.Writer, p []runtime.MemProfileRecord, rate int64) error {
18 b.pb.int64Opt(tagProfile_Period, rate)
53 values[0], values[1] = scaleHeapSample(r.AllocObjects, r.AllocBytes, rate)
54 values[2], values[3] = scaleHeapSample(r.InUseObjects(), r.InUseBytes(), rate)
76 // rate R. The probability of a sample of size S to appear in that
78 func scaleHeapSample(count, size, rate int64) (int64, int64) {
83 if rate <= 1 {
84 // if rate==1 all samples were collected so no adjustment is needed.
85 // if rate<1 treat as unknown and skip scaling.
90 scale := 1 / (1 - math.Exp(-avgSize/float64(rate)))
    [all...]
  /prebuilts/go/linux-x86/src/runtime/pprof/
protomem.go 15 func writeHeapProto(w io.Writer, p []runtime.MemProfileRecord, rate int64) error {
18 b.pb.int64Opt(tagProfile_Period, rate)
53 values[0], values[1] = scaleHeapSample(r.AllocObjects, r.AllocBytes, rate)
54 values[2], values[3] = scaleHeapSample(r.InUseObjects(), r.InUseBytes(), rate)
76 // rate R. The probability of a sample of size S to appear in that
78 func scaleHeapSample(count, size, rate int64) (int64, int64) {
83 if rate <= 1 {
84 // if rate==1 all samples were collected so no adjustment is needed.
85 // if rate<1 treat as unknown and skip scaling.
90 scale := 1 / (1 - math.Exp(-avgSize/float64(rate)))
    [all...]