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

/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/sonivox/arm-hybrid-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.c996 EAS_I32 cutoff; local
1005 /* determine the dynamic cutoff frequency */
1006 cutoff = MULT_EG1_EG1(pWTVoice->eg2Value, pArt->eg2ToFc);
1007 cutoff += pArt->filterCutoff;
1010 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
1012 /* limit the cutoff frequency */
1013 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENTS)
1014 cutoff = FILTER_CUTOFF_MAX_PITCH_CENTS;
1015 else if (cutoff < FILTER_CUTOFF_MIN_PITCH_CENTS)
1016 cutoff
1221 WT_SetFilterCoeffs(S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance) argument
[all...]
/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.c1002 EAS_I32 cutoff; local
1011 /* determine the dynamic cutoff frequency */
1012 cutoff = MULT_EG1_EG1(pWTVoice->eg2Value, pArt->eg2ToFc);
1013 cutoff += pArt->filterCutoff;
1016 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
1018 /* limit the cutoff frequency */
1019 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENTS)
1020 cutoff = FILTER_CUTOFF_MAX_PITCH_CENTS;
1021 else if (cutoff < FILTER_CUTOFF_MIN_PITCH_CENTS)
1022 cutoff
1227 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/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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DParticleDepositionHeightMap.java134 float cutoff;
229 cutoff = calderaStartPoint * (1.0f - caldera);
260 if (tempBuffer[calderaX][calderaY] > cutoff
267 2 * cutoff - tempBuffer[calderaX][calderaY];
/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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java194 float cutoff = ShaderUtils.clamp(0.5f / swidth, 0, maxFreq);
196 for (f = minFreq; f < 0.5 * cutoff; f *= 2) {
199 float fade = ShaderUtils.clamp(2 * (cutoff - f) / cutoff, 0, 1);
/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/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDecimalFormat.java1103 long cutoff = Long.MIN_VALUE / multiplier;
1104 tooBig = (number <= cutoff); // number == cutoff can only happen if multiplier == -1
1106 long cutoff = Long.MAX_VALUE / multiplier;
1107 tooBig = (number > cutoff);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c3131 // Pick cutoff threshold
3132 const int cutoff = (MIN(cm->width, cm->height) >= 720) ? local
3167 if (hist[VAR_HIST_BINS - 1] < cutoff) {
3171 if (sum > cutoff) {
/external/robolectric/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 ...

Completed in 948 milliseconds