HomeSort by relevance Sort by last modified time
    Searched defs:cutoff (Results 1 - 25 of 57) 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)) {
  /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) {
strtoull.c 53 unsigned long long acc, cutoff; local
81 cutoff = ULLONG_MAX / (unsigned long long)base;
94 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/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/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...]
  /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/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/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
  /external/speex/libspeex/
resample.c 128 float cutoff; member in struct:SpeexResamplerState_
230 { 32, 4, 0.882f, 0.910f, KAISER6 }, /* Q2 */ /* 82.3% cutoff ( ~60 dB stop) 6 */
231 { 48, 8, 0.895f, 0.917f, KAISER8 }, /* Q3 */ /* 84.9% cutoff ( ~80 dB stop) 8 */
232 { 64, 8, 0.921f, 0.940f, KAISER8 }, /* Q4 */ /* 88.7% cutoff ( ~80 dB stop) 8 */
233 { 80, 16, 0.922f, 0.940f, KAISER10}, /* Q5 */ /* 89.1% cutoff (~100 dB stop) 10 */
234 { 96, 16, 0.940f, 0.945f, KAISER10}, /* Q6 */ /* 91.5% cutoff (~100 dB stop) 10 */
235 {128, 16, 0.950f, 0.950f, KAISER10}, /* Q7 */ /* 93.1% cutoff (~100 dB stop) 10 */
236 {160, 16, 0.960f, 0.960f, KAISER10}, /* Q8 */ /* 94.5% cutoff (~100 dB stop) 10 */
237 {192, 32, 0.968f, 0.968f, KAISER12}, /* Q9 */ /* 95.5% cutoff (~100 dB stop) 10 */
238 {256, 32, 0.975f, 0.975f, KAISER12}, /* Q10 */ /* 96.6% cutoff (~100 dB stop) 10 *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/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 733 milliseconds

1 2 3