Searched refs:threshold (Results 1 - 25 of 82) sorted by relevance

1234

/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DExecutionCounter.cpp61 void ExecutionCounter<countingVariant>::setNewThreshold(int32_t threshold, CodeBlock* codeBlock) argument
64 m_activeThreshold = threshold;
106 // This checks if the current count rounded up to the threshold we were targeting.
109 // 2000, but we will pretend as if the threshold was crossed if we reach 2000 -
111 // this method returns false, then the JIT's threshold for when it will again call
121 // small is arbitrarily picked to be half of the original threshold (i.e.
144 // Correct the threshold for current memory usage.
145 double threshold = applyMemoryUsageHeuristics(m_activeThreshold, codeBlock); local
148 ASSERT(threshold >= 0);
150 // Adjust the threshold accordin
[all...]
H A DExecutionCounter.h62 void setNewThreshold(int32_t threshold, CodeBlock*);
81 static T clippedThreshold(JSGlobalObject* globalObject, T threshold) argument
88 if (threshold > maxThreshold)
89 threshold = maxThreshold;
90 return threshold;
103 // the threshold we wish to reach is m_totalCount + m_counter, in the sense that
108 // threshold for in m_counter. Because m_counter's threshold is negative, the
113 // This is the threshold we were originally targetting, without any correction for
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dtimer_call.c90 * beyond the short-term, local timer queue threshold. The boot processor
92 * if and when that timer becomes due within the threshold.
108 timer_call_data_t timer; /* timer used by threshold management */
110 uint64_t scans; /* num threshold timer scans */
111 uint64_t preempts; /* num threshold reductions */
112 uint64_t latency; /* average threshold latency */
113 uint64_t latency_min; /* minimum threshold latency */
114 uint64_t latency_max; /* maximum threshold latency */
123 threshold_t threshold; /* longterm timer threshold */ member in struct:__anon15445
1190 uint64_t threshold; local
1457 uint64_t threshold; local
[all...]
/macosx-10.10/ruby-106/ruby/lib/minitest/
H A Dbenchmark.rb114 # +threshold+. Note: because we're testing for a slope of 0, R^2
115 # is not a good determining factor for the fit, so the threshold
134 def assert_performance_constant threshold = 0.99, &work
137 assert_in_delta 0, b, 1 - threshold
146 # match a exponential curve within a given error +threshold+.
160 def assert_performance_exponential threshold = 0.99, &work
161 assert_performance validation_for_fit(:exponential, threshold), &work
166 # match a straight line within a given error +threshold+.
180 def assert_performance_linear threshold = 0.99, &work
181 assert_performance validation_for_fit(:linear, threshold),
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DDynamicsCompressorNode.idl29 readonly attribute AudioParam threshold; // in Decibels
H A DDynamicsCompressorNode.cpp49 m_threshold = AudioParam::create(context, "threshold", -24, -100, 0);
69 float threshold = m_threshold->value(); local
75 m_dynamicsCompressor->setParameterValue(DynamicsCompressor::ParamThreshold, threshold);
H A DDynamicsCompressorNode.h52 AudioParam* threshold() { return m_threshold.get(); } function in class:WebCore::DynamicsCompressorNode
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dacls.cpp122 if (ThresholdAclSubject *threshold = env->standardSubject(context)) {
123 unsigned size = threshold->count();
124 if (dynamic_cast<KeychainPromptAclSubject *>(threshold->subject(size-1))) {
126 secdebug("acl", "adding new subject %p to from of threshold ACL", subject);
127 threshold->add(subject, 0);
168 static const unsigned threshold = 6; local
181 secdebug("codesign", "matched %d of %zd candididates (threshold=%d)",
182 matches, sizeof(prototypicalDotMacPath) / sizeof(char *) - 1, threshold);
183 return matches >= threshold;
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffdither.c47 int threshold = 128; variable
52 * Floyd-Steinberg error propragation with threshold.
109 if (v > threshold) {
219 threshold = atoi(optarg);
220 if (threshold < 0)
221 threshold = 0;
222 else if (threshold > 255)
223 threshold = 255;
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D003Layout-Rr.t135 while (my ($name, $threshold) = each %appenders) {
141 $appender->threshold($INFO);
H A D029SysWide.t27 # System-wide threshold
36 log4perl.threshold = ERROR
51 # System-wide threshold with appender threshold
65 log4perl.threshold = ERROR
82 # System-wide threshold shouldn't lower appender thresholds
88 log4perl.threshold = DEBUG
101 ok($app0->buffer(), "", "syswide threshold shouldn't lower app thresholds");
104 # System-wide threshold shouldn't lower appender thresholds
110 log4perl.threshold
[all...]
/macosx-10.10/IOKitUser-1050.1.21/hidsystem.subproj/
H A Devent_status_driver.h66 extern void NXSetKeyRepeatThreshold(NXEventHandle handle, double threshold);
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_hotfiles.h96 u_int32_t threshold; member in struct:HotFilesInfo
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DAllocator.h98 /// SizeThreshold - For any allocation larger than this threshold, we should
140 BumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
192 SpecificBumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
194 : Allocator(size, threshold, allocator) {}
/macosx-10.10/WebCore-7600.1.25/Modules/mediasource/
H A DSampleMap.h82 reverse_iterator findSyncSamplePriorToPresentationTime(const MediaTime&, const MediaTime& threshold = MediaTime::positiveInfiniteTime());
84 iterator findSyncSampleAfterPresentationTime(const MediaTime&, const MediaTime& threshold = MediaTime::positiveInfiniteTime());
H A DSampleMap.cpp186 DecodeOrderSampleMap::reverse_iterator DecodeOrderSampleMap::findSyncSamplePriorToPresentationTime(const MediaTime& time, const MediaTime& threshold) argument
198 if (foundSample->second->presentationTime() < time - threshold)
208 DecodeOrderSampleMap::iterator DecodeOrderSampleMap::findSyncSampleAfterPresentationTime(const MediaTime& time, const MediaTime& threshold) argument
217 MediaTime upperBound = time + threshold;
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dtknewsbiff252 proc _isgood {ng threshold} {
258 # skip if the threshold isn't exceeded
259 if {$db($ng,hi) - $db($ng,seen) < $threshold} {return 0}
299 set threshold 1
308 -threshold {
309 set threshold [lindex $watch 1]
318 _abort "watch: expecting -threshold -display or -new but found: [lindex $watch 0]"
324 if {[_isgood $ng $threshold]} {
431 watch dc.general -threshold 5
432 watch *.sources.* -threshold 2
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/shapes/
H A DShape.h70 static std::unique_ptr<Shape> createRasterShape(Image*, float threshold, const LayoutRect& imageRect, const LayoutRect& marginRect, WritingMode, float margin);
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Ddictionary.h45 double threshold; member in class:dictionary
H A Ddictionary.cpp41 dictionary::dictionary(int n) : size(n), used(0), threshold(0.5), factor(1.5)
69 if ((double)used/(double)size >= threshold || used + 1 >= size) {
/macosx-10.10/Security-57031.1.35/securityd/tests/
H A Dtestacls.cpp124 detail("Testing threshold ACLs");
126 TypedList &threshold = cred += TypedList(alloc, CSSM_SAMPLE_TYPE_THRESHOLD, local
131 threshold += new(alloc) ListElement(TypedList(alloc, CSSM_SAMPLE_TYPE_PASSWORD,
134 threshold += new(alloc) ListElement(TypedList(alloc, CSSM_SAMPLE_TYPE_PASSWORD,
138 threshold += new(alloc) ListElement(TypedList(alloc, CSSM_SAMPLE_TYPE_PASSWORD,
140 threshold += new(alloc) ListElement(TypedList(alloc, CSSM_SAMPLE_TYPE_PASSWORD,
142 threshold += new(alloc) ListElement(TypedList(alloc, CSSM_SAMPLE_TYPE_PASSWORD,
/macosx-10.10/llvmCore-3425.0.34/bindings/ocaml/transforms/scalar/
H A Dscalar_opts_ocaml.c59 CAMLprim value llvm_add_scalar_repl_aggregation_with_threshold(value threshold, argument
61 LLVMAddScalarReplAggregatesPassWithThreshold(PM, Int_val(threshold));
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DAllocator.cpp23 BumpPtrAllocator::BumpPtrAllocator(size_t size, size_t threshold, argument
25 : SlabSize(size), SizeThreshold(std::min(size, threshold)),
/macosx-10.10/vim-55/runtime/plugin/
H A Dtohtml.vim13 " * Implementation detail: add threshold for writing the lines to the html
/macosx-10.10/objc4-646/runtime/
H A Dobjc-auto.h66 OBJC_COLLECT_IF_NEEDED = (1 << 3), // run collection only if needed (allocation threshold exceeded)
92 OBJC_EXPORT void objc_setCollectionThreshold(size_t threshold)
187 OBJC_EXPORT void objc_set_collection_threshold(size_t threshold)
214 static OBJC_INLINE void objc_setCollectionThreshold(size_t threshold __unused) { }
277 static OBJC_INLINE void objc_set_collection_threshold(size_t threshold __unused) { }

Completed in 478 milliseconds

1234