HomeSort by relevance Sort by last modified time
    Searched refs:threshold (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 55 * {@link #getThreshold() the threshold}.</p>
485 * <p>When <code>threshold</code> is less than or equals 0, a threshold of
488 * @param threshold the number of characters to type before the drop down
495 public void setThreshold(int threshold) {
496 if (threshold <= 0) {
497 threshold = 1;
500 mThreshold = threshold;
764 + " threshold=" + mThreshold);
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
tns.c 187 tC->threshold = TNS_GAIN_THRESH;
254 tC->threshold = TNS_GAIN_THRESH;
302 temp = predictionGain - tC.threshold;
320 temp = predictionGain - tC.threshold;
    [all...]
adj_thr.c 19 Content: Threshold compensation functions
62 * description: loudness calculation (threshold to the power of redExp)
167 Word32 threshold; local
199 threshold = HOLE_THR_LONG;
201 threshold = HOLE_THR_SHORT;
225 tmpMinSnr = max(tmpMinSnr, threshold);
381 /* threshold reduction formula */
469 /* new threshold */
476 reduce threshold
484 increase threshold
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 233 * is less than two for the default load factor threshold.)
253 * can reveal that the table has grown but the threshold
279 * The table is rehashed when its size exceeds this threshold.
283 transient int threshold; field in class:ConcurrentHashMap.Segment
313 threshold = (int)(newTable.length * loadFactor);
429 if (c++ > threshold) // ensure capacity
469 * threshold, only about one-sixth of them need cloning when
477 threshold = (int)(newTable.length * loadFactor);
583 * @param loadFactor the load factor threshold, used to control resizing.
585 * bin exceeds this threshold
    [all...]
  /external/guava/src/com/google/common/collect/
CustomConcurrentHashMap.java 711 * is less than two for the default load factor threshold.)
731 * can reveal that the table has grown but the threshold
754 * The table is expanded when its size exceeds this threshold. (The
757 int threshold; field in class:CustomConcurrentHashMap.Impl.Segment
777 this.threshold = newTable.length() * 3 / 4;
    [all...]
  /hardware/ti/wlan/wl1271/TWD/Ctrl/
CmdBld.h 115 TI_STATUS cmdBld_CfgPacketDetectionThreshold (TI_HANDLE hCmdBld, TI_UINT32 threshold, void *fCb, TI_HANDLE hCb);
132 TI_STATUS cmdBld_CfgRtsThreshold (TI_HANDLE hCmdBld, TI_UINT16 threshold, void *fCb, TI_HANDLE hCb);
CmdBldCfgIE.c     [all...]
  /system/wlan/ti/wilink_6_1/TWD/Ctrl/
CmdBld.h 115 TI_STATUS cmdBld_CfgPacketDetectionThreshold (TI_HANDLE hCmdBld, TI_UINT32 threshold, void *fCb, TI_HANDLE hCb);
132 TI_STATUS cmdBld_CfgRtsThreshold (TI_HANDLE hCmdBld, TI_UINT16 threshold, void *fCb, TI_HANDLE hCb);
CmdBldCfgIE.c     [all...]
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerTest.java 229 assertTrue(outInfo.lowMemory == (outInfo.availMem <= outInfo.threshold));
  /external/bluetooth/glib/glib/
gslice.c 517 guint threshold = MAX (MIN_MAGAZINE_SIZE, allocator->max_page_size / MAX (5 * chunk_size, 5 * 32)); local
523 threshold = MAX (threshold, contention_counter);
525 return threshold;
644 /* free old magazines beyond a certain threshold */
    [all...]
  /external/webkit/WebCore/page/
EventHandler.cpp 2203 int threshold = GeneralDragHysteresis; local
    [all...]
  /frameworks/base/core/java/android/app/
SearchDialog.java     [all...]
  /dalvik/vm/compiler/
Compiler.c 393 memset(pJitProfTable, gDvmJit.threshold, JIT_PROF_SIZE);
  /dalvik/vm/interp/
Jit.c 477 hit, not_hit + hit, chains, gDvmJit.threshold,
    [all...]
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
TWDriverCtrl.c 359 TI_STATUS TWD_CfgPacketDetectionThreshold (TI_HANDLE hTWD, TI_UINT32 threshold)
365 return cmdBld_CfgPacketDetectionThreshold (pTWD->hCmdBld, threshold, NULL, NULL);
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/TWDriver/
TWDriverCtrl.c 354 TI_STATUS TWD_CfgPacketDetectionThreshold (TI_HANDLE hTWD, TI_UINT32 threshold)
360 return cmdBld_CfgPacketDetectionThreshold (pTWD->hCmdBld, threshold, NULL, NULL);
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 244 int threshold; member in struct:Options
    [all...]
  /external/freetype/src/truetype/
ttinterp.c     [all...]
ttobjs.c 426 exec->threshold = 0;
    [all...]
  /external/bluetooth/bluez/audio/
pcm_bluetooth.c 1036 snd_pcm_uframes_t threshold; local
1041 &threshold)) {
1042 if (io->appl_ptr >= threshold) {
    [all...]
  /external/e2fsprogs/e2fsck/
pass1.c 438 unsigned int threshold; local
449 "numdirs_threshold", 0, 0, &threshold);
458 (threshold && num_dirs <= threshold))
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionStack.java 1400 float threshold = ((float) (serverTransactionTable.size() - serverTransactionTableLowaterMark)) local
    [all...]
  /dalvik/vm/
Init.c 913 gDvmJit.threshold = atoi(argv[i] + 15);
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FirmwareApi/
public_infoele.h 1188 int16 threshold; member in struct:__anon10396
    [all...]

Completed in 1723 milliseconds

1 23 4 5