HomeSort by relevance Sort by last modified time
    Searched refs:cutoff (Results 1 - 25 of 30) sorted by null

1 2

  /packages/apps/Email/emailcommon/src/org/apache/commons/io/filefilter/
AgeFileFilter.java 26 * Filters files based on a cutoff time, can filter either newer
35 * long cutoff = System.currentTimeMillis() - (24 * 60 * 60 * 1000);
36 * String[] files = dir.list( new AgeFileFilter(cutoff) );
48 /** The cutoff time threshold. */
49 private final long cutoff; field in class:AgeFileFilter
55 * a certain cutoff
57 * @param cutoff the threshold age of the files
59 public AgeFileFilter(long cutoff) {
60 this(cutoff, true);
65 * of a certain cutoff.
    [all...]
FileFilterUtils.java 172 * the specified cutoff time.
174 * @param cutoff the time threshold
178 public static IOFileFilter ageFileFilter(long cutoff) {
179 return new AgeFileFilter(cutoff);
183 * Returns a filter that filters files based on a cutoff time.
185 * @param cutoff the time threshold
190 public static IOFileFilter ageFileFilter(long cutoff, boolean acceptOlder) {
191 return new AgeFileFilter(cutoff, acceptOlder);
196 * the specified cutoff date.
207 * Returns a filter that filters files based on a cutoff date.
    [all...]
  /bionic/libc/stdlib/
strtoimax.c 46 intmax_t acc, cutoff; local
77 * Compute the cutoff value between legal numbers and illegal
85 * is 10, cutoff will be set to 922337203685477580 and cutlim to
100 cutoff = INTMAX_MIN / x; \
103 cutoff = INTMAX_MAX / x; \
111 cutoff = INTMAX_MIN / 4;
114 cutoff = INTMAX_MAX / 4;
122 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
123 cutlim = cutoff % base;
124 cutoff /= base
    [all...]
strtol.c 47 long acc, cutoff; local
78 * Compute the cutoff value between legal numbers and illegal
86 * cutoff will be set to 214748364 and cutlim to either
94 cutoff = neg ? LONG_MIN : LONG_MAX;
95 cutlim = cutoff % base;
96 cutoff /= base;
100 cutoff += 1;
116 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
126 if (acc > cutoff || (acc == cutoff && c > cutlim))
    [all...]
strtoumax.c 46 uintmax_t acc, cutoff; local
76 case x: cutoff = UINTMAX_MAX / x; \
85 cutoff = UINTMAX_MAX / base;
100 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoul.c 46 unsigned long acc, cutoff; local
74 cutoff = ULONG_MAX / (unsigned long)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
  /external/webkit/Source/WebCore/webaudio/
HighPass2FilterNode.idl 32 readonly attribute AudioParam cutoff;
LowPass2FilterNode.idl 32 readonly attribute AudioParam cutoff;
HighPass2FilterNode.h 42 AudioParam* cutoff() { return biquadProcessor()->parameter1(); } function in class:WebCore::HighPass2FilterNode
LowPass2FilterNode.h 42 AudioParam* cutoff() { return biquadProcessor()->parameter1(); } function in class:WebCore::LowPass2FilterNode
  /external/webkit/Source/WebCore/platform/audio/
Biquad.h 51 // cutoff is 0-1 normalized, resonance is in dB >= 0.0
52 void setLowpassParams(double cutoff, double resonance);
53 void setHighpassParams(double cutoff, double resonance);
55 void setLowShelfParams(double cutoff, double dbGain);
58 // void setHighShelfParams(double cutoff, double dbGain);
59 // void setParametricEQParams(double cutoff, double resonance);
Biquad.cpp 191 void Biquad::setLowpassParams(double cutoff, double resonance)
199 double theta = piDouble * cutoff;
212 void Biquad::setHighpassParams(double cutoff, double resonance)
220 double theta = piDouble * cutoff;
233 void Biquad::setLowShelfParams(double cutoff, double dbGain)
235 double theta = piDouble * cutoff;
  /external/dbus/tools/
strtoll.c 70 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))
strtoull.c 71 unsigned long long cutoff; local
104 cutoff = ULLONG_MAX / base;
117 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wtsynth.h 36 /* adjust the filter cutoff frequency to the sample rate */
61 void WT_SetFilterCoeffs (S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance);
eas_wtsynth.c 996 EAS_I32 cutoff; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_wtsynth.h 36 /* adjust the filter cutoff frequency to the sample rate */
61 void WT_SetFilterCoeffs (S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance);
eas_wtsynth.c 1002 EAS_I32 cutoff; local
    [all...]
eas_dlssynth.c 249 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_CENTS
    [all...]
  /external/bison/lib/
strtol.c 256 register unsigned LONG int cutoff; local
359 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
377 if (i > cutoff || (i == cutoff && c > cutlim))
  /external/speex/libspeex/
resample.c 128 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 (~100 dB stop) 10 *
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 353 final long cutoff =
355 if (lastReleaseTime <= cutoff) {
  /external/openssl/crypto/x509v3/
v3_ocsp.c 185 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff,
189 if(!ASN1_GENERALIZEDTIME_print(bp, cutoff)) return 0;
  /external/chromium/chrome/browser/safe_browsing/
client_side_detection_service.cc 414 base::Time cutoff = base::Time::Now() - kReportsInterval; local
416 // Erase items older than cutoff because we will never care about them again.
418 phishing_report_times_.front() < cutoff) {
422 // Return the number of elements that are above the cutoff.
  /external/bluetooth/glib/glib/
gstrfuncs.c 706 guint64 cutoff; local
757 cutoff = G_MAXUINT64 / base;
774 if (ui64 > cutoff || (ui64 == cutoff && c > cutlim))
    [all...]

Completed in 409 milliseconds

1 2