/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
ClassWriter.java | 261 * The threshold of the constant pool's hash table.
263 int threshold;
field in class:ClassWriter 538 threshold = (int) (0.75d * items.length);
[all...] |
/external/opencv/ml/src/ |
mlboost.cpp | 1223 double sum, threshold; local [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/ |
pshalgo.c | 1683 FT_Int threshold; local [all...] |
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/ |
ttinterp.h | 229 FT_F26Dot6 threshold; member in struct:TT_ExecContextRec_
|
/external/qemu/audio/ |
alsaaudio.c | 140 unsigned int threshold; member in struct:__anon32940 500 static void alsa_set_threshold (snd_pcm_t *handle, snd_pcm_uframes_t threshold) 514 err = FF(snd_pcm_sw_params_set_start_threshold) (handle, sw_params, threshold); 517 alsa_logerr (err, "Failed to set software threshold to %ld\n", 518 threshold); 710 if (!in && conf.threshold) { 711 snd_pcm_uframes_t threshold; local 732 threshold = (conf.threshold * bytes_per_sec) / 1000; 733 alsa_set_threshold (handle, threshold); [all...] |
/external/smack/src/org/jivesoftware/smack/util/collections/ |
AbstractHashedMap.java | 60 * The default threshold to use 91 protected transient int threshold; field in class:AbstractHashedMap 121 * @param threshold the threshold, must be sensible 123 protected AbstractHashedMap(int initialCapacity, float loadFactor, int threshold) { 127 this.threshold = threshold; 160 this.threshold = calculateThreshold(initialCapacity, loadFactor); 574 * This implementation uses the threshold to check if the map needs enlarging 577 if (size >= threshold) { [all...] |
/external/tcpdump/ |
print-slow.c | 164 u_int8_t threshold[8]; member in struct:slow_oam_link_event_t 599 "\n\t Errored Threshold %" PRIu64 605 EXTRACT_64BITS(&tlv.slow_oam_link_event->threshold),
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
adj_thr.c | 19 Content: Threshold compensation functions 66 * description: loudness calculation (threshold to the power of redExp) 171 Word32 threshold; local 203 threshold = HOLE_THR_LONG; 205 threshold = HOLE_THR_SHORT; 229 tmpMinSnr = max(tmpMinSnr, threshold); 385 /* threshold reduction formula */ 473 /* new threshold */ 480 reduce threshold 488 increase threshold [all...] |
/frameworks/av/media/libstagefright/httplive/ |
PlaylistFetcher.cpp | 532 // the remaining time is too short (within a resume threshold) stop immediately 561 // Don't resume if we would stop within a resume threshold. 1639 int64_t durationUs, threshold; local [all...] |
/frameworks/base/services/core/java/com/android/server/ |
AssetAtlasService.java | 681 int threshold = (int) (pixelCount * PACKING_THRESHOLD); local 683 while (threshold > MAX_SIZE * MAX_SIZE) { 684 threshold >>= 1; 686 mThreshold = threshold;
|
/frameworks/base/services/core/java/com/android/server/storage/ |
DeviceStorageMonitorService.java | 60 * than a tunable threshold value (a secure settings parameter; 71 * storage differential goes below a threshold (again a secure 117 // This is the raw threshold that has been set at which we consider 120 // This is the threshold at which we start trying to flush caches 121 // to get below the low threshold limit. It is less than the low 122 // threshold; we will allow storage to get a bit beyond the limit 125 // This is the threshold that we try to get to when deleting cache 126 // files. This is greater than the low threshold so that we will flush 203 // Read the reporting threshold from secure settings 204 long threshold = Settings.Global.getLong(mResolver local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
pickinter.c | 466 unsigned int threshold = (xd->block[0].dequant[1] local 469 if(threshold < x->encode_breakout) 470 threshold = x->encode_breakout; 472 if (sse < threshold ) 751 * If so then prevent it from being tested and increase the threshold 759 /* Increase the threshold for coding this mode to make it less [all...] |
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/ |
ThermalZone.java | 164 Log.i(TAG, "states-threshold map:" + s.toString()); 346 // In Uevent mode, if any threshold specified for a particular 347 // zone exceeds the max threshold temp, we de-activate that zone. 387 // Zone de-activated when any threshold for that zone is 388 // above the allowed Max threshold. 391 ". Zone Threshold exceeds max trip temp:" + mTripMax); 397 Log.i(TAG, "deactivate zone:" + getZoneName() + " threshold list is NULL! "); 433 + " mismatch of polldelay and threshold list in polling mode!"); 527 int threshold = ThermalUtils.getLowerThresholdTemp(prevZoneState, mZoneTempThresholds); local 530 if (newZoneState < prevZoneState && getZoneTemp() > (threshold - getDBInterval())) [all...] |
/hardware/intel/img/libdrm/libdrm/intel/ |
intel_bufmgr_gem.c | 1353 unsigned int threshold = bufmgr_gem->gtt_size * 3 \/ 4; local [all...] |
/libcore/luni/src/main/java/java/util/ |
HashMap.java | 109 * The table is rehashed when its size exceeds this threshold. 114 private transient int threshold; field in class:HashMap 127 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE 147 threshold = -1; // Forces first put() to replace EMPTY_TABLE 243 // Restore clone to empty state, retaining our capacity and threshold 399 if (size++ > threshold) { 546 * Allocate a table of the given capacity and set the threshold accordingly. 553 threshold = (newCapacity >> 1) + (newCapacity >> 2); // 3/4 capacity [all...] |
Hashtable.java | 88 * The table is rehashed when its size exceeds this threshold. 93 private transient int threshold; field in class:Hashtable 107 threshold = -1; // Forces first put invocation to replace EMPTY_TABLE 126 threshold = -1; // Forces first put() to replace EMPTY_TABLE 221 // Restore clone to empty state, retaining our capacity and threshold 378 if (size++ > threshold) { 483 * Allocate a table of the given capacity and set the threshold accordingly. 490 threshold = (newCapacity >> 1) + (newCapacity >> 2); // 3/4 capacity [all...] |
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 1631 float max_val,threshold; local 1730 float max_val,threshold; local [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 1631 float max_val,threshold; local 1730 float max_val,threshold; local [all...] |
/art/dex2oat/ |
dex2oat.cc | 172 UsageError(" --huge-method-max=<method-instruction-count>: the threshold size for a huge"); 177 UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge"); 182 UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large"); 187 UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small"); 192 UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny"); 197 UsageError(" --num-dex-methods=<method-count>: threshold size for a small dex file for"); 968 const char* threshold = option.substr(strlen("--huge-method-max=")).data(); local 976 const char* threshold = option.substr(strlen("--large-method-max=")).data(); local 984 const char* threshold = option.substr(strlen("--small-method-max=")).data(); local 992 const char* threshold = option.substr(strlen("--tiny-method-max=")).data(); local 1000 const char* threshold = option.substr(strlen("--num-dex-methods=")).data(); local [all...] |
/external/chromium_org/chrome/browser/ui/views/tabs/ |
tab_drag_controller.cc | 776 // Determine the horizontal move threshold. This is dependent on the width 778 // the threshold. 779 int threshold = kHorizontalMoveThreshold; local 784 threshold = static_cast<int>(ratio * kHorizontalMoveThreshold); 796 if ((abs(point_in_screen.x() - last_move_screen_loc_) > threshold || [all...] |
/external/chromium_org/third_party/freetype/src/autofit/ |
aflatin2.c | 300 /* same Y coordinate. Threshold the `closeness'... */ 566 FT_Pos threshold; local 575 threshold = 40; 582 threshold = 52; 584 fitted = ( scaled + threshold ) & ~63; [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
rdopt.c | 1141 /* 64 makes this threshold really big effectively making it so that we 1776 unsigned int threshold = (xd->block[0].dequant[1] local [all...] |
/external/chromium_org/third_party/opus/src/src/ |
opus_encoder.c | 111 middle (memoriless) threshold. The second column is the hysteresis 137 /* Threshold bit-rates for switching between mono and stereo */ 141 /* Threshold bit-rate for switching between SILK/hybrid and CELT-only */ 1258 int threshold, hysteresis; local [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
tcmalloc.cc | 183 // infinite loop. So by default we set the threshold to a huge number 196 "trace to be dumped to stderr. The threshold for " 198 "every time we print a message so that the threshold " 1049 const int64 threshold = large_alloc_threshold; local [all...] |
/external/deqp/modules/egl/ |
teglImageFormatTests.cpp | 804 float threshold = 0.05f; local 805 bool match = tcu::fuzzyCompare(m_log, "ComparisonResult", "Image comparison result", referenceScreen, screen, threshold, tcu::COMPARE_LOG_RESULT); 1236 float threshold = 0.05f; local [all...] |