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

1 2 3

  /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)) {
  /toolchain/binutils/binutils-2.25/libiberty/
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))
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))
  /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))
  /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) {
  /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 1013 EAS_I32 cutoff; local
    [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/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;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 182 final long cutoff = System.currentTimeMillis() - MAX_HISTORY_IN_MILLIS; local
183 return db.query(TABLE_RECENT, projection, RecentColumns.TIMESTAMP + ">" + cutoff,
214 final long cutoff = System.currentTimeMillis() - MAX_HISTORY_IN_MILLIS; local
215 db.delete(TABLE_RECENT, RecentColumns.TIMESTAMP + "<" + cutoff, null);
  /toolchain/binutils/binutils-2.25/bfd/
bfd.c 1283 bfd_vma cutoff; local
    [all...]
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
StringUtils.java 208 final int cutoff = s.offsetByCodePoints(0, 1); local
209 return s.substring(0, cutoff).toUpperCase(getLocaleUsedForToTitleCase(locale))
210 + s.substring(cutoff);
226 final int cutoff = s.offsetByCodePoints(0, 1); local
227 return s.substring(0, cutoff).toUpperCase(getLocaleUsedForToTitleCase(locale))
228 + s.substring(cutoff).toLowerCase(locale);
  /bionic/libc/kernel/uapi/sound/
sfnt_info.h 86 unsigned char cutoff; member in struct:soundfont_voice_parm
  /external/kernel-headers/original/uapi/sound/
sfnt_info.h 102 unsigned short pefe; /* modulation pitch & cutoff (0x0000) */
103 unsigned short fmmod; /* LFO1 pitch & cutoff (0x0000) */
106 unsigned char cutoff; /* initial cutoff (0xff) */ member in struct:soundfont_voice_parm

Completed in 8600 milliseconds

1 2 3