Searched refs:cutoff (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium-trace/catapult/experimental/heatmap/
H A Dmath.js14 var cutoff = values.length * percentile;
15 return values.slice(cutoff, cutoff + 1)[0];
H A Ddraw.js22 var cutoff = percentile(counts, 0.9);
23 if (cutoff < 2)
24 cutoff = 2;
40 var brightness = mapRange(count / cutoff, 0, 1, 2, 0.5);
H A Drenderer.js106 var cutoff = percentile(counts, 0.9);
107 if (cutoff < 2)
108 cutoff = 2;
124 var brightness = mapRange(count / cutoff, 0, 1, 2, 0);
/external/dbus/tools/
H A Dstrtoll.c70 unsigned long long cutoff; local
106 * Compute the cutoff value between legal numbers and illegal
114 * is 10, cutoff will be set to 922337203685477580 and cutlim to
123 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
125 cutlim = cutoff % base;
126 cutoff /= base;
138 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
H A Dstrtoull.c71 unsigned long long cutoff; local
104 cutoff = ULLONG_MAX / base;
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
/external/autotest/site_utils/
H A Dcount_jobs.py24 cutoff = datetime.now() - delta
25 return models.Job.objects.filter(created_on__gt=cutoff).count()
H A Ddiagnosis_utils.py165 cutoff = datetime.now() - time_delta_hours
168 host__id=host.id, started_on__gte=str(cutoff))
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_wtsynth.h36 /* adjust the filter cutoff frequency to the sample rate */
61 void WT_SetFilterCoeffs (S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance);
H A Deas_wtsynth.c1013 EAS_I32 cutoff; local
1022 /* determine the dynamic cutoff frequency */
1023 cutoff = MULT_EG1_EG1(pWTVoice->eg2Value, pArt->eg2ToFc);
1024 cutoff += pArt->filterCutoff;
1027 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
1029 /* limit the cutoff frequency */
1030 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENTS)
1031 cutoff = FILTER_CUTOFF_MAX_PITCH_CENTS;
1032 else if (cutoff < FILTER_CUTOFF_MIN_PITCH_CENTS)
1033 cutoff
1238 WT_SetFilterCoeffs(S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance) argument
[all...]
H A Deas_dlssynth.c249 EAS_I32 cutoff; local
259 /* start with base cutoff frequency */
260 cutoff = pDLSArt->filterCutoff;
274 cutoff += FMUL_15x15(temp, pWTVoice->modLFO.lfoValue);
277 cutoff += FMUL_15x15(pWTVoice->eg2Value, pDLSArt->eg2ToFc);
281 cutoff += (pVoice->velocity * pDLSArt->velToFc) >> 7;
285 cutoff += (pVoice->note * pDLSArt->keyNumToFc) >> 7;
288 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
290 /* limit the cutoff frequency */
291 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENT
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DSemiVariance.java26 * <p>Computes the semivariance of a set of values with respect to a given cutoff value.
28 * against the <i>cutoff value</i> <code>cutoff</code> to be <br/>
30 * where the sum is taken over all <code>i</code> such that <code>x[i] < cutoff</code>
34 * exceed the cutoff value.</p>
36 * <p>The cutoff value defaults to the mean, bias correction defaults to <code>true</code>
43 * is returned, regardless of the value of the <code>cutoff.</code>
58 * cutoff point will be used to calculate SemiVariance.
64 * the cutoff point will be used to calculate SemiVariance
223 * <p>Returns the {@link SemiVariance} of the designated values against the cutoff, usin
234 evaluate(final double[] values, final double cutoff) argument
251 evaluate(final double[] values, final double cutoff, final Direction direction) argument
273 evaluate(final double[] values, final double cutoff, final Direction direction, final boolean corrected, final int start, final int length) argument
[all...]
/external/autotest/server/cros/
H A Drepair_utils.py76 cutoff = (datetime.datetime.today() -
81 started_on__gte=str(cutoff))
/external/autotest/contrib/
H A Dsheriff_host_utils.py124 cutoff = django_timezone.now().date() - datetime.timedelta(days=days_back)
133 started_on__gte=cutoff).order_by('-started_on')[:limit_jobs])
143 message += ('\nNo jobs found for the following hosts within cutoff %s\n\t' %
144 cutoff)
H A Dlog_distiller.py36 """Returns true if the logs was created after cutoff days.
42 @param cutoff_days: Int representind the cutoff in days.
48 cutoff = now - datetime.timedelta(days=cutoff_days)
49 return log_time < cutoff
/external/autotest/frontend/health/
H A Dcomplete_failures.py138 cutoff = (datetime.datetime.today() -
140 return [name for name, last_pass in tests.items() if last_pass < cutoff]
/external/autotest/site_utils/admin/
H A Dclean_staged_images.py13 2. Check if the modified time of the timestamp file is older than a given cutoff
56 cutoff = time.time() - max_age_hours * _HOURS_TO_SECONDS
60 if age < cutoff:
/external/bison/lib/
H A Dstrtol.c242 register unsigned LONG int cutoff; local
345 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
363 if (i > cutoff || (i == cutoff && c > cutlim))
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_tnl.c259 float cutoff = MAX2(a3, 1 / (1 - l->_CosCutoff)); local
261 k[0] = MAX2(0, a0 + b0 * cutoff);
263 k[2] = a2 + b2 * cutoff;
264 k[3] = - cutoff * l->_NormSpotDirection[0];
265 k[4] = - cutoff * l->_NormSpotDirection[1];
266 k[5] = - cutoff * l->_NormSpotDirection[2];
267 k[6] = 1 - cutoff;
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h241 // This usually a faster alternative to ReadTag() when cutoff is a manifest
242 // constant. It does particularly well for cutoff >= 127. The first part
245 // then the tag is known to be in [0, cutoff]. If not, the tag either is
246 // above cutoff or is 0. (There's intentional wiggle room when tag is 0,
249 inline std::pair<uint32, bool> ReadTagWithCutoff(uint32 cutoff)
890 uint32 cutoff) {
891 // In performance-sensitive code we can expect cutoff to be a compile-time
892 // constant, and things like "cutoff >= kMax1ByteVarint" to be evaluated at
902 return make_pair(tag, cutoff >= kMax1ByteVarint || tag <= cutoff);
889 ReadTagWithCutoff( uint32 cutoff) argument
[all...]
/external/kernel-headers/original/uapi/sound/
H A Dsfnt_info.h102 unsigned short pefe; /* modulation pitch & cutoff (0x0000) */
103 unsigned short fmmod; /* LFO1 pitch & cutoff (0x0000) */
106 unsigned char cutoff; /* initial cutoff (0xff) */ member in struct:soundfont_voice_parm
/external/speex/libspeex/
H A Dresample.c128 float cutoff; member in struct:SpeexResamplerState_
230 { 32, 4, 0.882f, 0.910f, KAISER6 }, /* Q2 */ /* 82.3% cutoff ( ~60 dB stop) 6 */
231 { 48, 8, 0.895f, 0.917f, KAISER8 }, /* Q3 */ /* 84.9% cutoff ( ~80 dB stop) 8 */
232 { 64, 8, 0.921f, 0.940f, KAISER8 }, /* Q4 */ /* 88.7% cutoff ( ~80 dB stop) 8 */
233 { 80, 16, 0.922f, 0.940f, KAISER10}, /* Q5 */ /* 89.1% cutoff (~100 dB stop) 10 */
234 { 96, 16, 0.940f, 0.945f, KAISER10}, /* Q6 */ /* 91.5% cutoff (~100 dB stop) 10 */
235 {128, 16, 0.950f, 0.950f, KAISER10}, /* Q7 */ /* 93.1% cutoff (~100 dB stop) 10 */
236 {160, 16, 0.960f, 0.960f, KAISER10}, /* Q8 */ /* 94.5% cutoff (~100 dB stop) 10 */
237 {192, 32, 0.968f, 0.968f, KAISER12}, /* Q9 */ /* 95.5% cutoff (~100 dB stop) 10 */
238 {256, 32, 0.975f, 0.975f, KAISER12}, /* Q10 */ /* 96.6% cutoff (~10
276 sinc(float cutoff, float x, int N, struct FuncDef *window_func) argument
289 sinc(float cutoff, float x, int N, struct FuncDef *window_func) argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DSingleClientConnManager.java357 final long cutoff =
359 if (lastReleaseTime <= cutoff) {
/external/guice/extensions/struts2/lib/
H A Dcommons-io-1.3.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...
/external/opencv3/3rdparty/include/ffmpeg_/libavcodec/
H A Davcodec.h1920 * Audio cutoff bandwidth (0 means "automatic")
1924 int cutoff; member in struct:AVCodecContext
4208 * @param filter_length length of each FIR filter in the filterbank relative to the cutoff frequency
4212 * @param cutoff cutoff frequency, 1.0 corresponds to half the output sampling rate
4221 int linear, double cutoff);
4239 * @param filter_length length of each FIR filter in the filterbank relative to the cutoff freq
4243 * @param cutoff cutoff frequency, 1.0 corresponds to half the output sampling rate
4246 struct AVResampleContext *av_resample_init(int out_rate, int in_rate, int filter_length, int log2_phase_count, int linear, double cutoff);
[all...]
/external/libphonenumber/demo/war/WEB-INF/lib/
H A Dcommons-io-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/io/ ...

Completed in 855 milliseconds

12