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

1 2 3 4

  /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 45 intmax_t acc, cutoff; local
87 * Compute the cutoff value between legal numbers and illegal
95 * is 10, cutoff will be set to 922337203685477580 and cutlim to
104 cutoff = neg ? INTMAX_MIN : INTMAX_MAX;
105 cutlim = cutoff % base;
106 cutoff /= base;
110 cutoff += 1;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (acc == cutoff && c > cutlim))
    [all...]
strtol.c 46 long acc, cutoff; local
88 * Compute the cutoff value between legal numbers and illegal
96 * cutoff will be set to 214748364 and cutlim to either
104 cutoff = neg ? LONG_MIN : LONG_MAX;
105 cutlim = cutoff % base;
106 cutoff /= base;
110 cutoff += 1;
126 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
136 if (acc > cutoff || (acc == cutoff && c > cutlim))
    [all...]
strtoll.c 48 long long acc, cutoff; local
90 * Compute the cutoff value between legal numbers and illegal
98 * is 10, cutoff will be set to 922337203685477580 and cutlim to
107 cutoff = neg ? LLONG_MIN : LLONG_MAX;
108 cutlim = cutoff % base;
109 cutoff /= base;
113 cutoff += 1;
129 if (acc < cutoff || (acc == cutoff && c > cutlim)) {
139 if (acc > cutoff || (acc == cutoff && c > cutlim))
    [all...]
strtoul.c 46 unsigned long acc, cutoff; local
81 cutoff = ULONG_MAX / (unsigned long)base;
94 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoull.c 48 unsigned long long acc, cutoff; local
83 cutoff = ULLONG_MAX / (unsigned long long)base;
96 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
strtoumax.c 45 uintmax_t acc, cutoff; local
80 cutoff = UINTMAX_MAX / (uintmax_t)base;
93 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
  /external/chromium-trace/catapult/experimental/heatmap/
math.js 14 var cutoff = values.length * percentile;
15 return values.slice(cutoff, cutoff + 1)[0];
draw.js 22 var cutoff = percentile(counts, 0.9);
23 if (cutoff < 2)
24 cutoff = 2;
40 var brightness = mapRange(count / cutoff, 0, 1, 2, 0.5);
  /toolchain/binutils/binutils-2.25/libiberty/
strtol.c 95 register unsigned long cutoff; local
121 * Compute the cutoff value between legal numbers and illegal
129 * cutoff will be set to 214748364 and cutlim to either
137 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
138 cutlim = cutoff % (unsigned long)base;
139 cutoff /= (unsigned long)base;
149 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
strtoll.c 103 register ullong_type cutoff; local
129 * Compute the cutoff value between legal numbers and illegal
137 * cutoff will be set to 214748364 and cutlim to either
145 cutoff = neg ? -(ullong_type)LLONG_MIN : LLONG_MAX;
146 cutlim = cutoff % (ullong_type)base;
147 cutoff /= (ullong_type)base;
157 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
strtoul.c 66 register unsigned long cutoff; local
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
strtoull.c 71 register ullong_type cutoff; local
93 cutoff = (ullong_type)ULLONG_MAX / (ullong_type)base;
104 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
  /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/autotest/site_utils/
count_jobs.py 24 cutoff = datetime.now() - delta
25 return models.Job.objects.filter(created_on__gt=cutoff).count()
  /packages/apps/TV/src/com/android/tv/dvr/
ScheduledProgramReaper.java 46 long cutoff = mClock.currentTimeMillis() - TimeUnit.DAYS.toMillis(DAYS); local
48 if (r.getEndTimeMs() < cutoff) {
  /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 1013 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/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
SemiVariance.java 26 * <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
    [all...]
  /device/google/dragon/audio/hal/dsp/
biquad.c 41 static void biquad_lowpass(struct biquad *bq, double cutoff, double resonance)
43 /* Limit cutoff to 0 to 1. */
44 cutoff = max(0.0, min(cutoff, 1.0));
46 if (cutoff == 1) {
47 /* When cutoff is 1, the z-transform is 1. */
49 } else if (cutoff > 0) {
55 double theta = M_PI * cutoff;
69 /* When cutoff is zero, nothing gets through the filter, so set
76 static void biquad_highpass(struct biquad *bq, double cutoff, double resonance
    [all...]

Completed in 316 milliseconds

1 2 3 4