/external/srec/srec/Semproc/include/ |
D | SR_SemprocDefinitions.h | 207 #define MEMCHK(rc, val, threshold) \ argument 209 if(val > threshold) \ 212 PLogError(L("%s: %d > %d\n"), ESR_rc2str(rc), (val), (threshold)); \ 216 #define LENCHK(rc, val, threshold) \ argument 218 if(LSTRLEN(val) > threshold) \ 221 PLogError(L("%s: %s > %d\n"), ESR_rc2str(rc), (val), (threshold)); \
|
/external/srec/srec/clib/ |
D | voicing.c | 60 int threshold; in voicing_analysis() local 96 threshold = (chan->b1 + (SHIFT_DOWN( in voicing_analysis() 101 if (enval > (threshold + chan->margin)) in voicing_analysis() 108 if (enval > (threshold + chan->fast_margin)) in voicing_analysis() 113 if (enval <= (threshold + chan->quiet_margin)) in voicing_analysis()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | prune.h | 34 Weight threshold; variable 46 : threshold(t), filter(f), idistance(id), fdistance(fd) {} in threshold() function 90 Weight ceiling = Times((*fdistance)[fst->Start()], opts.threshold); in Prune() 128 void Prune(MutableFst<Arc> *fst, typename Arc::Weight threshold) { in Prune() argument 129 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>()); in Prune() 175 Weight ceiling = Times((*fdistance)[ifst.Start()], opts.threshold); in Prune() 240 typename Arc::Weight threshold) { in Prune() argument 241 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>()); in Prune()
|
/external/iptables/extensions/ |
D | libip6t_NFLOG.c | 39 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD; in init() 103 info->threshold = n; in parse() 125 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD) in nflog_print() 126 printf("%snflog-threshold %u ", prefix, info->threshold); in nflog_print()
|
D | libipt_NFLOG.c | 39 info->threshold = XT_NFLOG_DEFAULT_THRESHOLD; in init() 103 info->threshold = n; in parse() 125 if (info->threshold != XT_NFLOG_DEFAULT_THRESHOLD) in nflog_print() 126 printf("%snflog-threshold %u ", prefix, info->threshold); in nflog_print()
|
/external/chromium/base/ |
D | mime_util_linux.cc | 94 threshold(2) { in SubDirInfo() 100 size_t threshold; // Maximum difference from desired size. 2 by default. member in __anon08cd0f800111::IconTheme::SubDirInfo 298 current_info->threshold = atoi(value.c_str()); in LoadIndexTheme() 325 if (size >= info->size - info->threshold && in MatchesSize() 326 size <= info->size + info->threshold) { in MatchesSize() 329 return abs(size - info->size - info->threshold) < in MatchesSize() 330 abs(size - info->size + info->threshold) in MatchesSize() 331 ? size - info->size - info->threshold in MatchesSize() 332 : size - info->size + info->threshold; in MatchesSize()
|
/external/freetype/src/autofit/ |
D | afcjk.c | 901 FT_Pos threshold = 64; in af_hint_normal_stem() local 910 threshold = 64 - AF_LIGHT_MODE_MAX_HORZ_GAP; in af_hint_normal_stem() 912 threshold = 64 - AF_LIGHT_MODE_MAX_VERT_GAP; in af_hint_normal_stem() 917 threshold = 64 - AF_LIGHT_MODE_MAX_HORZ_GAP / 3; in af_hint_normal_stem() 919 threshold = 64 - AF_LIGHT_MODE_MAX_VERT_GAP / 3; in af_hint_normal_stem() 941 if ( cur_len <= threshold ) in af_hint_normal_stem() 954 if ( threshold < 64 ) in af_hint_normal_stem() 956 if ( d_off1 >= threshold || u_off1 >= threshold || in af_hint_normal_stem() 957 d_off2 >= threshold || u_off2 >= threshold ) in af_hint_normal_stem() 969 offset = 64 - threshold; in af_hint_normal_stem() [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | UDPMessageProcessor.java | 213 … float threshold = ((float)(messageQueue.size() - LOWAT))/ ((float)(HIGHWAT - LOWAT)); in run() local 214 boolean decision = Math.random() > 1.0 - threshold; in run() 217 … sipStack.getStackLogger().logDebug("Dropping message with probability " + (1.0 - threshold)); in run()
|
/external/qemu/audio/ |
D | alsaaudio.c | 124 unsigned int threshold; member 305 static void alsa_set_threshold (snd_pcm_t *handle, snd_pcm_uframes_t threshold) in alsa_set_threshold() argument 319 err = FF(snd_pcm_sw_params_set_start_threshold) (handle, sw_params, threshold); in alsa_set_threshold() 323 threshold); in alsa_set_threshold() 516 if (!in && conf.threshold) { in alsa_open() 517 snd_pcm_uframes_t threshold; in alsa_open() local 538 threshold = (conf.threshold * bytes_per_sec) / 1000; in alsa_open() 539 alsa_set_threshold (handle, threshold); in alsa_open() 1027 {"THRESHOLD", AUD_OPT_INT, &conf.threshold,
|
D | fmodaudio.c | 50 int threshold; member 248 && (conf.threshold && live <= conf.threshold)) { in fmod_run_out() 653 {"THRESHOLD", AUD_OPT_INT, &conf.threshold,
|
/external/freetype/src/pshinter/ |
D | pshalgo.c | 1520 FT_Int threshold, in psh_hint_table_find_strong_points() argument 1555 if ( d < threshold && -d < threshold ) in psh_hint_table_find_strong_points() 1575 if ( d < threshold && -d < threshold ) in psh_hint_table_find_strong_points() 1612 if ( d < threshold && -d < threshold ) in psh_hint_table_find_strong_points() 1629 if ( d < threshold && -d < threshold ) in psh_hint_table_find_strong_points() 1684 FT_Int threshold; in psh_glyph_find_strong_points() local 1687 threshold = (FT_Int)FT_DivFix( PSH_STRONG_THRESHOLD, scale ); in psh_glyph_find_strong_points() 1688 if ( threshold > PSH_STRONG_THRESHOLD_MAXIMUM ) in psh_glyph_find_strong_points() 1689 threshold = PSH_STRONG_THRESHOLD_MAXIMUM; in psh_glyph_find_strong_points() 1717 threshold, major_dir ); in psh_glyph_find_strong_points() [all …]
|
D | pshglob.c | 420 FT_Int threshold = blues->blue_shift; in psh_blues_scale_zones() local 423 while ( threshold > 0 && FT_MulFix( threshold, scale ) > 32 ) in psh_blues_scale_zones() 424 threshold--; in psh_blues_scale_zones() 426 blues->blue_threshold = threshold; in psh_blues_scale_zones()
|
/external/quake/quake/src/WinQuake/kit/ |
D | JOYSTICK.TXT | 34 The following variables control your threshold settings: 39 …threshold settings allow you to control your dead-zone (or no-movement zone). The default thresho… 41 The joystick sensitivity settings and the threshold settings are not saved after you quit your game… 52 5. threshold setting for any control (allows dead-zone setting) 80 4. make any desired threshold changes
|
/external/e2fsprogs/e2fsck/ |
D | dirinfo.c | 42 unsigned int threshold; in setup_tdb() local 50 "numdirs_threshold", 0, 0, &threshold); in setup_tdb() 55 (threshold && num_dirs <= threshold)) in setup_tdb()
|
/external/srec/portable/src/ |
D | phashtable.c | 62 unsigned int threshold; member 121 tmp->threshold = (unsigned int)(tmp->args.capacity * tmp->args.maxLoadFactor); in PHashTableCreate() 291 table->threshold = (unsigned int)(newCapacity * table->args.maxLoadFactor); in PHashTableRehash() 361 if (table->size >= table->threshold) in PHashTablePutValue()
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
D | SDL_x11mouse.c | 257 &mouse_accel.threshold); in X11_CheckMouseModeNoLock() 273 mouse_accel.threshold); in X11_CheckMouseModeNoLock()
|
D | SDL_x11video.h | 99 int threshold; member
|
/external/openssl/crypto/rc4/asm/ |
D | rc4-ia64.pl | 192 $threshold = (3 * ($phases * ($unroll_count + 1)) + 7); 581 cmp.gtu pSmall, p0 = $threshold, DataLen
|
/external/libvpx/vp8/common/ |
D | onyx.h | 214 … unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
|
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/ |
D | SDL_cgxvideo.h | 78 int threshold; member
|
/external/guava/src/com/google/common/collect/ |
D | CustomConcurrentHashMap.java | 757 int threshold; field in CustomConcurrentHashMap.Impl.Segment 777 this.threshold = newTable.length() * 3 / 4; in setTable() 929 if (count++ > this.threshold) { // ensure capacity in put() 995 threshold = newTable.length() * 3 / 4; in expand() 2026 if (count++ > segment.threshold) { // ensure capacity in get()
|
/external/freetype/src/truetype/ |
D | ttinterp.h | 186 FT_F26Dot6 threshold; member
|
/external/chromium/base/third_party/dmg_fp/ |
D | gcc_warnings.patch | 56 /* threshold was rounded to zero */
|
/external/libvpx/examples/ |
D | vp8_set_maps.txt | 22 columns, where the quantizer, loopfilter, and static threshold differ
|
/external/bluetooth/glib/glib/ |
D | gslice.c | 517 …guint threshold = MAX (MIN_MAGAZINE_SIZE, allocator->max_page_size / MAX (5 * chunk_size, 5 * 32)); in allocator_get_magazine_threshold() local 523 threshold = MAX (threshold, contention_counter); in allocator_get_magazine_threshold() 525 return threshold; in allocator_get_magazine_threshold()
|