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

12

/external/chromium_org/ui/base/l10n/
H A Dtime_format.cc38 int cutoff,
45 // Negative cutoff: always use two-value format.
46 if (cutoff < 0)
47 cutoff = std::numeric_limits<int>::max();
58 // unit if mandated by |cutoff|.
66 } else if (delta < one_hour - (cutoff < 60 ? half_minute : half_second)) {
67 // Anything up to 59.5 minutes (respectively 59:59.500 when |cutoff| permits
70 if (delta >= cutoff * one_minute - half_second) {
81 } else if (delta < one_day - (cutoff < 24 ? half_hour : half_minute)) {
82 // Anything up to 23.5 hours (respectively 23:59:30.000 when |cutoff|
36 Detailed(TimeFormat::Format format, TimeFormat::Length length, int cutoff, const base::TimeDelta& delta) argument
[all...]
H A Dtime_format.h46 // Two-value output can be forced by setting |cutoff| to -1. Single-value
47 // output can be forced by using Simple() or setting |cutoff| to 0.
48 // Otherwise, choice of format happens automatically and the value of |cutoff|
51 // precision. (Applied to the examples above, a |cutoff| of 2 or smaller
52 // would yield the first string and a |cutoff| of 3 or larger would return the
59 // |cutoff| (e.g. 5% for a |cutoff| of 10) and a second unit is only used when
73 int cutoff,
/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/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_unittest.cc73 const time_t cutoff = 1325376000; // 00:00 Jan 1 2012 UTC local
78 // A form on https://www.google.com/ older than the cutoff. Will be ignored.
88 true, true, cutoff - 1 },
89 // A form on https://www.google.com/ older than the cutoff. Will be ignored.
99 true, true, cutoff - 1 },
100 // A form on https://www.google.com/ newer than the cutoff.
110 true, true, cutoff + 1 },
111 // A form on https://accounts.google.com/ older than the cutoff.
121 true, true, cutoff - 1 },
122 // A form on http://bar.example.com/ older than the cutoff
[all...]
H A Dpassword_store.h80 void set_ignore_logins_cutoff(base::Time cutoff) { argument
81 ignore_logins_cutoff_ = cutoff;
84 // Removes any logins in the result list that were saved before the cutoff.
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DBiquad.cpp209 void Biquad::setLowpassParams(double cutoff, double resonance)
211 // Limit cutoff to 0 to 1.
212 cutoff = std::max(0.0, std::min(cutoff, 1.0));
214 if (cutoff == 1) {
215 // When cutoff is 1, the z-transform is 1.
218 } else if (cutoff > 0) {
224 double theta = piDouble * cutoff;
238 // When cutoff is zero, nothing gets through the filter, so set
245 void Biquad::setHighpassParams(double cutoff, doubl
[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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dsampler_test.cc153 double cutoff = 0.01265 + 0.1757 / n; local
155 if (x < cutoff) {
156 t = x / cutoff;
160 t = (x - cutoff) / (0.8 - cutoff);
550 uint64_t cutoff = static_cast<uint64_t>(10) local
552 LOG(INFO) << "Acceptable value is < " << cutoff;
554 CHECK_LE(smallest_sample_step, cutoff);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dsampler_test.cc153 double cutoff = 0.01265 + 0.1757 / n; local
155 if (x < cutoff) {
156 t = x / cutoff;
160 t = (x - cutoff) / (0.8 - cutoff);
550 uint64_t cutoff = static_cast<uint64_t>(10) local
552 LOG(INFO) << "Acceptable value is < " << cutoff;
554 CHECK_LE(smallest_sample_step, cutoff);
/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/chromium_org/third_party/speex/libspeex/
H A Dresample.c124 float cutoff; member in struct:SpeexResamplerState_
226 { 32, 4, 0.882f, 0.910f, KAISER6 }, /* Q2 */ /* 82.3% cutoff ( ~60 dB stop) 6 */
227 { 48, 8, 0.895f, 0.917f, KAISER8 }, /* Q3 */ /* 84.9% cutoff ( ~80 dB stop) 8 */
228 { 64, 8, 0.921f, 0.940f, KAISER8 }, /* Q4 */ /* 88.7% cutoff ( ~80 dB stop) 8 */
229 { 80, 16, 0.922f, 0.940f, KAISER10}, /* Q5 */ /* 89.1% cutoff (~100 dB stop) 10 */
230 { 96, 16, 0.940f, 0.945f, KAISER10}, /* Q6 */ /* 91.5% cutoff (~100 dB stop) 10 */
231 {128, 16, 0.950f, 0.950f, KAISER10}, /* Q7 */ /* 93.1% cutoff (~100 dB stop) 10 */
232 {160, 16, 0.960f, 0.960f, KAISER10}, /* Q8 */ /* 94.5% cutoff (~100 dB stop) 10 */
233 {192, 32, 0.968f, 0.968f, KAISER12}, /* Q9 */ /* 95.5% cutoff (~100 dB stop) 10 */
234 {256, 32, 0.975f, 0.975f, KAISER12}, /* Q10 */ /* 96.6% cutoff (~10
272 sinc(float cutoff, float x, int N, struct FuncDef *window_func) argument
285 sinc(float cutoff, float x, int N, struct FuncDef *window_func) argument
[all...]
/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/chromium_org/chrome/browser/extensions/activity_log/
H A Dcounting_policy.h113 bool CleanOlderThan(sql::Connection* db, const base::Time& cutoff);
H A Dcounting_policy.cc407 base::Time cutoff = (Now() - retention_time()).LocalMidnight(); local
408 if (!CleanOlderThan(db, cutoff))
764 const base::Time& cutoff) {
769 cleaner.BindInt64(0, cutoff.ToInternalValue());
763 CleanOlderThan(sql::Connection* db, const base::Time& cutoff) argument
/external/apache-http/src/org/apache/http/impl/conn/
H A DSingleClientConnManager.java357 final long cutoff =
359 if (lastReleaseTime <= cutoff) {
/external/chromium_org/third_party/smhasher/src/
H A DSpeedTest.cpp87 double cutoff = mean + stdv*3; local
89 return v[len-1] > cutoff;
/external/openssl/crypto/x509v3/
H A Dv3_ocsp.c185 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, argument
189 if(!ASN1_GENERALIZEDTIME_print(bp, cutoff)) return 0;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dclient_side_detection_service.cc574 base::Time cutoff = local
577 // Erase items older than cutoff because we will never care about them again.
579 report_times->front() < cutoff) {
583 // Return the number of elements that are above the cutoff.
/external/chromium_org/ui/file_manager/file_manager/common/js/
H A Dutil.js699 var cutoff = Date.now();
703 map[keys[obsolete]].expire < cutoff) {

Completed in 7623 milliseconds

12