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

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
pcm_ioplug.h 46 SND_PCM_IOPLUG_HW_RATE, /**< rate */
114 unsigned int rate; /**< rate; filled after hw_params is called */ member in struct:snd_pcm_ioplug
pcm_rate.h 3 * \brief External Rate-Converter-Plugin SDK
7 * External Rate-Converter-Plugin SDK
11 * ALSA external PCM rate-converter plugin SDK (draft version)
46 unsigned int rate; member in struct:snd_pcm_rate_side_info
58 /** Callback table of rate-converter */
124 * Define the object entry for external PCM rate-converter plugins
  /prebuilts/gdb/darwin-x86/lib/python2.7/
audiodev.py 82 def setoutrate(self, rate):
84 if rate == raw:
89 raise error, 'bad output rate'
165 def setoutrate(self, rate):
166 self.outrate = rate
  /prebuilts/gdb/linux-x86/lib/python2.7/
audiodev.py 82 def setoutrate(self, rate):
84 if rate == raw:
89 raise error, 'bad output rate'
165 def setoutrate(self, rate):
166 self.outrate = rate
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
audiodev.py 82 def setoutrate(self, rate):
84 if rate == raw:
89 raise error, 'bad output rate'
165 def setoutrate(self, rate):
166 self.outrate = rate
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
audiodev.py 82 def setoutrate(self, rate):
84 if rate == raw:
89 raise error, 'bad output rate'
165 def setoutrate(self, rate):
166 self.outrate = rate
  /device/google/contexthub/firmware/os/drivers/leds/
leds_gpio.c 100 static bool sensorLedsSetRate(uint32_t rate, uint64_t latency, void *cookie)
106 ledsRatesRateVals, rate), 0, 50, sensorLedsTimerCallback, NULL, false);
108 return sensorSignalInternalEvt(mTask.sHandle, SENSOR_INTERNAL_EVT_RATE_CHG, rate, latency);
leds_lp3943.c 205 static bool sensorLP3943SetRate(uint32_t rate, uint64_t latency, void *cookie)
211 ledsRatesRateVals, rate), 0, 50, sensorLP3943TimerCallback, NULL, false);
213 return sensorSignalInternalEvt(mTask.sHandle, SENSOR_INTERNAL_EVT_RATE_CHG, rate, latency);
  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
resnet_v1.py 79 rate=1,
97 rate: An integer, rate for atrous convolution.
119 residual, depth_bottleneck, 3, stride, rate=rate, scope='conv2')
resnet_v2.py 73 rate=1,
91 rate: An integer, rate for atrous convolution.
116 residual, depth_bottleneck, 3, stride, rate=rate, scope='conv2')
  /external/webrtc/webrtc/modules/rtp_rtcp/include/
rtp_rtcp_defines.h 39 uint32_t rate; member in struct:webrtc::AudioPayload
214 const uint32_t rate) = 0;
337 const uint32_t rate) override {
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
codec_test.cc 38 codec_instance->rate = 15200;
40 codec_instance->rate = 13300;
57 EXPECT_EQ(64000, codec_instance_.rate);
  /frameworks/base/media/java/android/media/audiofx/
Visualizer.java 51 * The rate at which the listener capture method is called as well as the type of data returned is
294 * Returns the maximum capture rate for the callback capture method. This is the maximum value
295 * for the rate parameter of the
297 * @return the maximum capture rate expressed in milliHertz
409 * Returns the sampling rate of the captured audio.
410 * @return the sampling rate in milliHertz.
446 * the sampling rate returned by {@link #getSamplingRate()}. The capture returns the real and
553 * @param samplingRate sampling rate of the visualized audio.
581 * @param samplingRate sampling rate of the visualized audio.
587 * Registers an OnDataCaptureListener interface and specifies the rate at which the captur
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/hardware/
CarSensorManagerEmbedded.java 95 int rate) throws CarNotConnectedException, IllegalArgumentException {
97 return mCarSensorsProxy.registerSensorListener(listener, sensorType, rate);
110 return mManager.registerListener(proxy, sensorType, rate);
  /prebuilts/go/darwin-x86/src/runtime/
mprof.go 376 // an average of one blocking event per rate nanoseconds spent blocked.
378 // To include every blocking event in the profile, pass rate = 1.
379 // To turn off profiling entirely, pass rate <= 0.
380 func SetBlockProfileRate(rate int) {
382 if rate <= 0 {
384 } else if rate == 1 {
388 r = int64(float64(rate) * float64(tickspersecond()) / (1000 * 1000 * 1000))
407 rate := int64(atomic.Load64(&blockprofilerate))
408 if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles)
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mprof.go 376 // an average of one blocking event per rate nanoseconds spent blocked.
378 // To include every blocking event in the profile, pass rate = 1.
379 // To turn off profiling entirely, pass rate <= 0.
380 func SetBlockProfileRate(rate int) {
382 if rate <= 0 {
384 } else if rate == 1 {
388 r = int64(float64(rate) * float64(tickspersecond()) / (1000 * 1000 * 1000))
407 rate := int64(atomic.Load64(&blockprofilerate))
408 if rate <= 0 || (rate > cycles && int64(fastrand())%rate > cycles)
    [all...]
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 301 uint32_t rate = proxy_get_sample_rate(&((struct stream_out*)stream)->proxy); local
302 ALOGV("out_get_sample_rate() = %d", rate);
303 return rate;
306 static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate)
590 /* Rate */
592 proxy_config.rate = config->sample_rate = profile_get_default_sample_rate(out->profile);
594 proxy_config.rate = config->sample_rate;
596 proxy_config.rate = config->sample_rate = profile_get_default_sample_rate(out->profile);
697 /* TODO This needs to be calculated based on format/channels/rate */
706 uint32_t rate = proxy_get_sample_rate(&((const struct stream_in *)stream)->proxy) local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
scan.c 1667 int rate = 0; local
2133 int rate; \/* max legacy rate in 500 kb\/s units *\/ local
    [all...]
  /external/adhd/cras/src/alsa_plugin/
pcm_cras.c 262 audio_format = cras_audio_format_create(io->format, io->rate,
338 latency.tv_sec * io->rate +
339 latency.tv_nsec / (1000000000L / (long)io->rate);
355 latency.tv_sec * io->rate +
356 latency.tv_nsec / (1000000000L / (long)io->rate);
  /external/python/cpython2/Modules/
linuxaudiodev.c 242 int rate, ssize, nchannels, n, fmt, emulate=0; local
245 &rate, &ssize, &nchannels, &fmt, &emulate))
248 if (rate < 0) {
249 PyErr_Format(PyExc_ValueError, "expected rate >= 0, not %d",
250 rate);
295 if (ioctl(self->x_fd, SNDCTL_DSP_SPEED, &rate) == -1) {
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
poisson_lognormal.py 172 Poisson rate parameter. Unfortunately, the non-approximate distribution lacks
368 rate = array_ops.gather(
369 array_ops.reshape(self.distribution.rate, shape=[-1]), ids)
370 rate = array_ops.reshape(
371 rate, shape=concat_vectors([n], self.batch_shape_tensor()))
373 lam=rate, shape=[], dtype=self.dtype, seed=seed)
408 # log(self.distribution.variance()) = log(Var[d]) = log(rate[d])
  /external/tensorflow/tensorflow/python/ops/
nn_ops.py 400 raise ValueError("rate must be rank 1")
403 raise ValueError("rate must have known shape")
445 # zero-padded value tensor are multiples of rate.
528 # introduce (rate - 1) zeros between consecutive filter values.
682 specifying the filter upsampling/input downsampling rate, and an optional list
726 upsampling/input downsampling rate. In the literature, the same parameter
729 (spatial_filter_shape - 1) * (rate - 1)`, obtained by inserting
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c 59 double rate; local
140 printf("-rlim rateLim... rate limit in bits/sec, default is the maximum\n");
143 printf("-ave file....... record average rate of 3 sec intervales and\n");
157 fprintf(stderr, "\nfixed bottleneck rate of %d bits/s\n\n", bottleneck);
180 printf("cannot open file to write rate %s", averageFileName);
289 printf("cannot set the maximum rate %d.\n", rateLimit);
437 rate = ((double)totalbits * (sampFreqKHz)) / (double)totalsmpls;
441 printf("Sampling Rate............... %d kHz\n", sampFreqKHz);
443 printf("Rate Limit.................. %d bits/sec \n", rateLimit);
454 sampFreqKHz, framecnt, bottleneck, rateLB, rateUB, rate);
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_qclient.cpp 294 ALOGW("%s: Ignoring binder request to change refresh-rate",
297 uint32_t rate = roundOff(refresh_rate); local
298 if((rate >= mdpHw.getMinFpsSupported() &&
299 rate <= mdpHw.getMaxFpsSupported())) {
300 setRefreshRate(ctx, dpy, rate);
302 ALOGE("%s: Requested refresh-rate should be between \
305 mdpHw.getMaxFpsSupported(), rate);
  /device/google/contexthub/firmware/os/drivers/st_mag40/
st_mag40.c 220 uint32_t rate; member in struct:st_mag40_Task
432 static uint8_t st_mag40_computeOdr(uint32_t rate)
437 if (st_mag40_Rates[i] == rate)
479 static bool magSetRate(uint32_t rate, uint64_t latency, void *cookie)
483 INFO_PRINT("magSetRate %lu Hz - %llu ns\n", rate, latency);
485 num = st_mag40_computeOdr(rate);
487 mTask.rate = rate;
666 #define DEC_OPS(power, firmware, rate, flush, test, cal, cfg) \
669 .sensorSetRate = rate, \
    [all...]

Completed in 1276 milliseconds

<<11121314151617181920>>