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

1 2

  /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...]
strtoul.c 46 unsigned long acc, cutoff; local
74 cutoff = ULONG_MAX / (unsigned long)base;
87 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
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)) {
  /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) {
  /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...]
  /external/sonivox/arm-wt-22k/lib_src/
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...]
eas_wtsynth.c 1002 EAS_I32 cutoff; local
    [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...]
  /external/chromium_org/third_party/smhasher/src/
SpeedTest.cpp 87 double cutoff = mean + stdv*3; local
89 return v[len-1] > 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/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/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/chromium_org/chrome/browser/extensions/activity_log/
counting_policy.cc 364 base::Time cutoff = (Now() - retention_time()).LocalMidnight(); local
365 if (!CleanOlderThan(db, cutoff))
473 const base::Time& cutoff) {
478 cleaner.BindInt64(0, cutoff.ToInternalValue());
  /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/sonivox/arm-hybrid-22k/lib_src/
eas_wtsynth.c 996 EAS_I32 cutoff; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
client_side_detection_service.cc 598 base::Time cutoff = local
601 // Erase items older than cutoff because we will never care about them again.
603 report_times->front() < cutoff) {
607 // Return the number of elements that are above the cutoff.
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 177 final long cutoff = System.currentTimeMillis() - MAX_HISTORY_IN_MILLIS; local
178 return db.query(TABLE_RECENT, projection, RecentColumns.TIMESTAMP + ">" + cutoff,
209 final long cutoff = System.currentTimeMillis() - MAX_HISTORY_IN_MILLIS; local
210 db.delete(TABLE_RECENT, RecentColumns.TIMESTAMP + "<" + cutoff, null);
  /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);
  /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/chrome/browser/prerender/
prerender_manager.cc 1339 base::TimeTicks cutoff = GetCurrentTimeTicks() - local
    [all...]

Completed in 528 milliseconds

1 2