HomeSort by relevance Sort by last modified time
    Searched defs:threshold (Results 226 - 250 of 636) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/third_party/freetype/src/pshinter/
pshalgo.c 1579 FT_Int threshold; local
    [all...]
  /external/pdfium/third_party/freetype/src/truetype/
ttinterp.h 221 FT_F26Dot6 threshold; member in struct:TT_ExecContextRec_
  /external/tcpdump/
print-slow.c 156 uint8_t threshold[8]; member in struct:slow_oam_link_event_t
596 "\n\t Errored Threshold %" PRIu64
602 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/base/libs/hwui/
PathTessellator.cpp 158 float threshold = std::min(inverseScaleX, inverseScaleY) * ROUND_CAP_THRESH; local
159 return MathUtils::divisionsNeededToApproximateArc(halfStrokeWidth, PI, threshold);
733 // alter the bezier recursion threshold values we calculate in order to compensate for
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTracker.java 288 Integer threshold = mScanId - NUM_SCANS_TO_CONFIRM_AP_LOSS; local
292 if (e.getValue() < threshold) {
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 655 int threshold = (int) (pixelCount * PACKING_THRESHOLD); local
657 while (threshold > MAX_SIZE * MAX_SIZE) {
658 threshold >>= 1;
660 mThreshold = threshold;
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 59 * than a tunable threshold value (a secure settings parameter;
70 * storage differential goes below a threshold (again a secure
123 // This is the raw threshold that has been set at which we consider
126 // This is the threshold at which we start trying to flush caches
127 // to get below the low threshold limit. It is less than the low
128 // threshold; we will allow storage to get a bit beyond the limit
131 // This is the threshold that we try to get to when deleting cache
132 // files. This is greater than the low threshold so that we will flush
209 // Read the reporting threshold from secure settings
210 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...]
  /libcore/ojluni/src/main/java/java/util/
HashMap.java 172 int threshold; field in class:HashMap
217 // inflateTable() when table == EMPTY_TABLE. That method will take "threshold"
218 // to mean "capacity" and then replace it with the real threshold (i.e, multiplied with
220 threshold = initialCapacity;
255 inflateTable(threshold);
286 threshold = (int) thresholdFloat;
419 inflateTable(threshold);
492 * number of keys in this map reaches its threshold.
495 * resize the map, but sets threshold to Integer.MAX_VALUE.
507 threshold = Integer.MAX_VALUE
    [all...]
IdentityHashMap.java 186 private transient int threshold; field in class:IdentityHashMap
265 threshold = (initCapacity * 2)/3;
451 if (++size >= threshold)
468 if (threshold == MAXIMUM_CAPACITY-1)
470 threshold = MAXIMUM_CAPACITY-1; // Gigantic map!
477 threshold = newLength / 3;
507 if (n > threshold) // conservatively pre-expand
    [all...]
WeakHashMap.java 169 private int threshold; field in class:WeakHashMap
221 threshold = (int)(capacity * loadFactor);
447 if (++size >= threshold)
455 * number of keys in this map reaches its threshold.
458 * resize the map, but sets threshold to Integer.MAX_VALUE.
470 threshold = Integer.MAX_VALUE;
483 if (size >= threshold / 2) {
484 threshold = (int)(newCapacity * loadFactor);
529 * is greater than or equal to threshold. This is conservative; the
530 * obvious condition is (m.size() + size) >= threshold, but thi
    [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...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/shared/maven-invoker/2.0.11/
maven-invoker-2.0.11.jar 
  /art/compiler/optimizing/
bounds_check_elimination.cc 513 // Very large lengths are considered an anomaly. This is a threshold beyond which we don't
1263 size_t threshold = kThresholdForAddingDeoptimize + (base == nullptr ? 0 : 1); \/\/ extra test? local
    [all...]
  /external/ImageMagick/MagickWand/
mogrify.c 915 if (LocaleCompare("black-threshold",option+1) == 0)
918 Black threshold image.
1350 threshold; local
2774 threshold; local
2942 threshold; local
3088 threshold; local
    [all...]
  /external/ImageMagick/coders/
msl.c 94 #include "MagickCore/threshold.h"
7155 double threshold = 0; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineVertexInputTests.cpp 508 const tcu::Vec4 threshold = getFormatThreshold(attributeInfo.vkType); local
550 glslCode << "\tif (abs(" << accessStr << " + double(0.01 * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < double(" << threshold[rowNdx] << "))\n"; local
554 glslCode << "\tif (abs(" << accessStr << " + (0.01 * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < " << threshold[rowNdx] << ")\n"; local
559 glslCode << "\tif (abs(" << accessStr << " + (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0)) < " << threshold[rowNdx] << ")\n"; local
563 glslCode << "\t if (abs(" << accessStr << " - (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0)) < " << threshold[rowNdx] << ")\n"; local
569 glslCode << "\tif (abs(" << accessStr << " - (-1.0 + " << representableDiff << " * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < " << threshold[rowNdx] << ")\n"; local
575 glslCode << "\tif (abs(" << accessStr << " - " << "(" << representableDiff << " * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < " << threshold[rowNdx] << ")\n"; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktOpaqueTypeIndexingTests.cpp 610 const float threshold = 1.0f / 256.0f; local
615 isOk = boolAll(lessThanEqual(abs(reference-result), tcu::Vec4(threshold)));
    [all...]
  /external/deqp/modules/egl/
teglRenderTests.cpp 702 const float threshold = 0.02f; local
793 bool imagesOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, frame, threshold, tcu::COMPARE_LOG_RESULT);
905 const float threshold = 0.02f; local
1021 bool imagesOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, frame, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fClippingTests.cpp 88 const tcu::IVec4 threshold (20, 256, 256, 256);
90 return tcu::boolAll(tcu::lessThanEqual(tcu::abs(a - halfFilled), threshold));
96 const int threshold = 20; local
98 return a.x() + threshold < halfFilled;
110 const tcu::IVec4 threshold(20, 20, 20, 0);
117 return tcu::boolAll(tcu::lessThanEqual(tcu::abs(a - b), threshold));
823 const float threshold = 0.3f; local
824 if (!tcu::fuzzyCompare(log, "Images", "", referenceImageAccess, testImageAccess, threshold, tcu::COMPARE_LOG_ON_ERROR))
1018 const float threshold = 0.3f; local
    [all...]
es2fFboRenderTest.cpp 628 const float threshold = 0.03f; local
629 bool imagesOk = tcu::fuzzyCompare(log, "ComparisonResult", "Image comparison result", refFrame, gles2Frame, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
es2fVertexTextureTests.cpp 381 const tcu::RGBA threshold = renderCtx.getRenderTarget().getPixelFormat().getColorThreshold() + tcu::RGBA(15,15,15,15); local
382 return tcu::pixelThresholdCompare(log, "Result", "Image compare result", ref, res, threshold, tcu::COMPARE_LOG_RESULT);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fClippingTests.cpp 91 const tcu::IVec4 threshold (20, 256, 256, 256);
93 return tcu::boolAll(tcu::lessThanEqual(tcu::abs(a - halfFilled), threshold));
99 const int threshold = 20; local
101 return a.x() + threshold < halfFilled;
113 const tcu::IVec4 threshold(20, 20, 20, 0);
120 return tcu::boolAll(tcu::lessThanEqual(tcu::abs(a - b), threshold));
827 const float threshold = 0.3f; local
828 if (!tcu::fuzzyCompare(log, "Images", "", referenceImageAccess, testImageAccess, threshold, tcu::COMPARE_LOG_ON_ERROR))
1022 const float threshold = 0.3f; local
    [all...]

Completed in 4260 milliseconds

1 2 3 4 5 6 7 8 91011>>