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

1 2 3

  /packages/apps/UnifiedEmail/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/upstream-openbsd/lib/libc/locale/
_wcstol.h 52 int_type acc, cutoff; local
92 cutoff = neg ? MIN_VALUE : MAX_VALUE;
93 cutlim = (int)(cutoff % base);
94 cutoff /= base;
98 cutoff += 1;
111 if (acc < cutoff || (acc == cutoff && i > cutlim)) {
121 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
_wcstoul.h 51 uint_type acc, cutoff; local
90 cutoff = MAX_VALUE / (uint_type)base;
100 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
  /bionic/libc/upstream-openbsd/lib/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
94 cutoff = neg ? INTMAX_MIN : INTMAX_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...]
strtol.c 47 long acc, cutoff; local
89 * Compute the cutoff value between legal numbers and illegal
97 * cutoff will be set to 214748364 and cutlim to either
105 cutoff = neg ? LONG_MIN : LONG_MAX;
106 cutlim = cutoff % base;
107 cutoff /= base;
111 cutoff += 1;
127 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
137 if (acc > cutoff || (acc == cutoff && c > cutlim))
    [all...]
strtoll.c 48 long long acc, cutoff; local
79 * Compute the cutoff value between legal numbers and illegal
87 * is 10, cutoff will be set to 922337203685477580 and cutlim to
96 cutoff = neg ? LLONG_MIN : LLONG_MAX;
97 cutlim = cutoff % base;
98 cutoff /= base;
102 cutoff += 1;
118 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
128 if (acc > cutoff || (acc == cutoff && c > cutlim))
    [all...]
strtoul.c 46 unsigned long acc, cutoff; local
74 cutoff = ULONG_MAX / (unsigned long)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoull.c 48 unsigned long long acc, cutoff; local
76 cutoff = ULLONG_MAX / (unsigned long long)base;
89 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoumax.c 46 uintmax_t acc, cutoff; local
74 cutoff = UINTMAX_MAX / (uintmax_t)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
  /external/chromium_org/ui/base/l10n/
time_format.cc 38 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|
    [all...]
time_format.h 46 // 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/
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/chromium_org/components/password_manager/core/browser/
password_store_unittest.cc 73 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...]
password_store.h 80 void set_ignore_logins_cutoff(base::Time cutoff) {
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/
Biquad.cpp 209 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, double resonance
    [all...]
  /external/bison/lib/
strtol.c 242 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/
nv10_state_tnl.c 259 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/
nv10_state_tnl.c 259 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/
sampler_test.cc 153 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/
sampler_test.cc 153 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);

Completed in 535 milliseconds

1 2 3