HomeSort by relevance Sort by last modified time
    Searched refs:cutoff (Results 1 - 25 of 60) 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/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/openssh/openbsd-compat/
strtoll.c 53 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 || (acc == cutoff && c > cutlim))
    [all...]
strtoul.c 51 unsigned long acc, cutoff; local
79 cutoff = ULONG_MAX / (unsigned long)base;
92 if (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/chromium_org/third_party/WebKit/Source/core/platform/audio/
Biquad.cpp 207 void Biquad::setLowpassParams(double cutoff, double resonance)
209 // Limit cutoff to 0 to 1.
210 cutoff = std::max(0.0, std::min(cutoff, 1.0));
212 if (cutoff == 1) {
213 // When cutoff is 1, the z-transform is 1.
216 } else if (cutoff > 0) {
222 double theta = piDouble * cutoff;
236 // When cutoff is zero, nothing gets through the filter, so set
243 void Biquad::setHighpassParams(double cutoff, double resonance
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store_unittest.cc 137 const time_t cutoff = 1325376000; // 00:00 Jan 1 2012 UTC local
142 // A form on https://www.google.com/ older than the cutoff. Will be ignored.
152 true, true, cutoff - 1 },
153 // A form on https://www.google.com/ older than the cutoff. Will be ignored.
163 true, true, cutoff - 1 },
164 // A form on https://www.google.com/ newer than the cutoff.
174 true, true, cutoff + 1 },
175 // A form on https://accounts.google.com/ older than the cutoff.
185 true, true, cutoff - 1 },
186 // A form on http://bar.example.com/ older than the cutoff
    [all...]
password_store.h 60 void set_ignore_logins_cutoff(const base::Time& cutoff) {
61 ignore_logins_cutoff_ = cutoff;
64 // Removes any logins in the result list that were saved before the cutoff.
  /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/chrome/browser/extensions/activity_log/
counting_policy.h 64 bool CleanOlderThan(sql::Connection* db, const base::Time& cutoff);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ParticleDepositionHeightMap.java 134 float cutoff; local
229 cutoff = calderaStartPoint * (1.0f - caldera);
260 if (tempBuffer[calderaX][calderaY] > cutoff
267 2 * cutoff - tempBuffer[calderaX][calderaY];
  /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;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
StringUtils.java 143 final int cutoff = s.offsetByCodePoints(0, 1); local
144 return s.substring(0, cutoff).toUpperCase(locale) + s.substring(cutoff);
159 final int cutoff = s.offsetByCodePoints(0, 1); local
160 return s.substring(0, cutoff).toUpperCase(locale) + s.substring(cutoff).toLowerCase(locale);
  /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);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
ShaderUtils.java 194 float cutoff = ShaderUtils.clamp(0.5f / swidth, 0, maxFreq); local
196 for (f = minFreq; f < 0.5 * cutoff; f *= 2) {
199 float fade = ShaderUtils.clamp(2 * (cutoff - f) / cutoff, 0, 1);

Completed in 2079 milliseconds

1 2 3