Searched defs:cutoff (Results 1 - 24 of 24) sorted by relevance

/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/openssh/openbsd-compat/
H A Dstrtoll.c53 long long acc, cutoff; local
84 * Compute the cutoff value between legal numbers and illegal
92 * is 10, cutoff will be set to 922337203685477580 and cutlim to
101 cutoff = neg ? LLONG_MIN : LLONG_MAX;
102 cutlim = cutoff % base;
103 cutoff /= base;
107 cutoff += 1;
123 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
133 if (acc > cutoff || (ac
[all...]
H A Dstrtoul.c51 unsigned long acc, cutoff; local
79 cutoff = ULONG_MAX / (unsigned long)base;
92 if (acc > cutoff || acc == cutoff && c > cutlim) {
H A Dstrtoull.c53 unsigned long long acc, cutoff; local
81 cutoff = ULLONG_MAX / (unsigned long long)base;
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
/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/sonivox/arm-wt-22k/lib_src/
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...]
H A Deas_wtsynth.c1022 EAS_I32 cutoff; local
1031 /* determine the dynamic cutoff frequency */
1032 cutoff = MULT_EG1_EG1(pWTVoice->eg2Value, pArt->eg2ToFc);
1033 cutoff += pArt->filterCutoff;
1036 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
1038 /* limit the cutoff frequency */
1039 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENTS)
1040 cutoff = FILTER_CUTOFF_MAX_PITCH_CENTS;
1041 else if (cutoff < FILTER_CUTOFF_MIN_PITCH_CENTS)
1042 cutoff
1247 WT_SetFilterCoeffs(S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance) argument
[all...]
/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/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c3665 // Pick cutoff threshold
3666 const int cutoff = (VPXMIN(cm->width, cm->height) >= 720) ? local
3726 if (hist[VAR_HIST_BINS - 1] < cutoff) {
3730 if (sum > 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/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/ ...
/external/robolectric/v1/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 775 milliseconds