/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)) {
|
/packages/apps/Email/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/bison/lib/ |
strtol.c | 256 register unsigned LONG int cutoff; local 359 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base; 377 if (i > cutoff || (i == cutoff && c > cutlim))
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_wtsynth.c | 996 EAS_I32 cutoff; local [all...] |
/external/bluetooth/glib/glib/ |
gstrfuncs.c | 706 guint64 cutoff; local 757 cutoff = G_MAXUINT64 / base; 774 if (ui64 > cutoff || (ui64 == cutoff && c > cutlim)) [all...] |
/external/speex/libspeex/ |
resample.c | 124 float cutoff; member in struct:SpeexResamplerState_ 226 { 32, 4, 0.882f, 0.910f, KAISER6 }, /* Q2 */ /* 82.3% cutoff ( ~60 dB stop) 6 */ 227 { 48, 8, 0.895f, 0.917f, KAISER8 }, /* Q3 */ /* 84.9% cutoff ( ~80 dB stop) 8 */ 228 { 64, 8, 0.921f, 0.940f, KAISER8 }, /* Q4 */ /* 88.7% cutoff ( ~80 dB stop) 8 */ 229 { 80, 16, 0.922f, 0.940f, KAISER10}, /* Q5 */ /* 89.1% cutoff (~100 dB stop) 10 */ 230 { 96, 16, 0.940f, 0.945f, KAISER10}, /* Q6 */ /* 91.5% cutoff (~100 dB stop) 10 */ 231 {128, 16, 0.950f, 0.950f, KAISER10}, /* Q7 */ /* 93.1% cutoff (~100 dB stop) 10 */ 232 {160, 16, 0.960f, 0.960f, KAISER10}, /* Q8 */ /* 94.5% cutoff (~100 dB stop) 10 */ 233 {192, 32, 0.968f, 0.968f, KAISER12}, /* Q9 */ /* 95.5% cutoff (~100 dB stop) 10 */ 234 {256, 32, 0.975f, 0.975f, KAISER12}, /* Q10 */ /* 96.6% cutoff (~100 dB stop) 10 * [all...] |
/prebuilt/common/jfreechart/ |
jfreechart-1.0.9.jar | |