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

12345

/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DExecutionCounter.cpp51 void ExecutionCounter::setNewThreshold(int32_t threshold, CodeBlock* codeBlock) argument
54 m_activeThreshold = threshold;
95 // This checks if the current count rounded up to the threshold we were targeting.
98 // 2000, but we will pretend as if the threshold was crossed if we reach 2000 -
100 // this method returns false, then the JIT's threshold for when it will again call
110 // small is arbitrarily picked to be half of the original threshold (i.e.
132 // Correct the threshold for current memory usage.
133 double threshold = applyMemoryUsageHeuristics(m_activeThreshold, codeBlock); local
136 ASSERT(threshold >= 0);
138 // Adjust the threshold accordin
[all...]
H A DExecutionCounter.h42 void setNewThreshold(int32_t threshold, CodeBlock*);
49 static T clippedThreshold(JSGlobalObject* globalObject, T threshold) argument
56 if (threshold > maxThreshold)
57 threshold = maxThreshold;
58 return threshold;
82 // the threshold we wish to reach is m_totalCount + m_counter, in the sense that
87 // threshold for in m_counter. Because m_counter's threshold is negative, the
92 // This is the threshold we were originally targetting, without any correction for
/macosx-10.9.5/xnu-2422.115.4/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:__anon15427
1097 uint64_t threshold; local
1364 uint64_t threshold; local
[all...]
/macosx-10.9.5/ruby-104/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.9.5/WebCore-7537.78.1/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.9.5/securityd-55199.3/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.9.5/tcl-102/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.9.5/CPANInternal-140/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.9.5/IOKitUser-907.100.13/hidsystem.subproj/
H A Devent_status_driver.h66 extern void NXSetKeyRepeatThreshold(NXEventHandle handle, double threshold);
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/
H A Dhfs_hotfiles.h96 u_int32_t threshold; member in struct:HotFilesInfo
/macosx-10.9.5/llvmCore-3425.0.33/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.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/XMLRPC/Transport/
H A DHTTP.pm160 Having options on client and server side that let you specify threshold
164 Compression will be enabled on client side IF: threshold is specified AND
165 size of current message is bigger than threshold AND module Compress::Zlib
167 if threshold is specified AND module Compress::Zlib is available.
170 and will respond with compressed message ONLY IF: threshold is specified AND
171 size of current message is bigger than threshold AND module Compress::Zlib
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/lib/XMLRPC/Transport/
H A DHTTP.pm160 Having options on client and server side that let you specify threshold
164 Compression will be enabled on client side IF: threshold is specified AND
165 size of current message is bigger than threshold AND module Compress::Zlib
167 if threshold is specified AND module Compress::Zlib is available.
170 and will respond with compressed message ONLY IF: threshold is specified AND
171 size of current message is bigger than threshold AND module Compress::Zlib
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/XMLRPC/Transport/
H A DHTTP.pm160 Having options on client and server side that let you specify threshold
164 Compression will be enabled on client side IF: threshold is specified AND
165 size of current message is bigger than threshold AND module Compress::Zlib
167 if threshold is specified AND module Compress::Zlib is available.
170 and will respond with compressed message ONLY IF: threshold is specified AND
171 size of current message is bigger than threshold AND module Compress::Zlib
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/t/
H A D029SysWide.t20 # System-wide threshold
34 log4perl.threshold = ERROR
H A D021AppThres.t32 $app0->threshold($ERROR); # As integer value
33 $app1->threshold("WARN"); # As string
78 # Appender threshold with config file
104 is($app0->buffer(), "ERROR - Yeah, loga\n", "appender threshold");
105 is($app1->buffer(), "ERROR - Yeah, loga\n", "appender threshold");
108 # Appender threshold with config file and a Java
135 is($app0->buffer(), "ERROR - Yeah, loga\n", "threshold/java");
136 is($app1->buffer(), "ERROR - Yeah, loga\n", "threshold/java");
139 # 'threshold' vs. 'Threshold'
149 log4j.appender.BUF1.threshold
[all...]
/macosx-10.9.5/tcl-102/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.9.5/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.9.5/securityd-55199.3/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.9.5/llvmCore-3425.0.33/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.9.5/llvmCore-3425.0.33/lib/Support/
H A DAllocator.cpp23 BumpPtrAllocator::BumpPtrAllocator(size_t size, size_t threshold, argument
25 : SlabSize(size), SizeThreshold(std::min(size, threshold)),

Completed in 407 milliseconds

12345