Home
last modified time | relevance | path

Searched refs:safety (Results 1 – 25 of 272) sorted by relevance

1234567891011

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DMultistepIntegrator.java82 private double safety; field in MultistepIntegrator
281 return safety; in getSafety()
287 public void setSafety(final double safety) { in setSafety() argument
288 this.safety = safety; in setSafety()
296 … return FastMath.min(maxGrowth, FastMath.max(minReduction, safety * FastMath.pow(error, exp))); in computeStepGrowShrinkFactor()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DEmbeddedRungeKuttaIntegrator.java87 private double safety; field in EmbeddedRungeKuttaIntegrator
180 return safety; in getSafety()
186 public void setSafety(final double safety) { in setSafety() argument
187 this.safety = safety; in setSafety()
294 FastMath.max(minReduction, safety * FastMath.pow(error, exp))); in integrate()
318 … FastMath.min(maxGrowth, FastMath.max(minReduction, safety * FastMath.pow(error, exp))); in integrate()
/external/webrtc/webrtc/modules/audio_device/mac/portaudio/
Dpa_memorybarrier.h93 # warning For SMP safety, you should fix this.
98 …his system. You can still compile by defining ALLOW_SMP_DANGERS, but SMP safety will not be guaran…
120 # warning For SMP safety, you should fix this.
125 …his system. You can still compile by defining ALLOW_SMP_DANGERS, but SMP safety will not be guaran…
/external/clang/docs/
DThreadSafetyAnalysis.rst16 Thread safety analysis works very much like a type system for multi-threaded
69 analysis issues a warning. Thread safety analysis is not inter-procedural, so
85 To run the analysis, simply compile with the ``-Wthread-safety`` flag, e.g.
89 clang -c -Wthread-safety example.cpp
99 Thread safety analysis provides a way of protecting *resources* with
141 The thread safety analysis uses attributes to declare threading constraints.
147 For historical reasons, prior versions of thread safety used macro names that
314 turns off thread safety checking for that method. It provides an escape hatch
438 * ``-Wthread-safety``: Umbrella flag which turns on the following three:
440 + ``-Wthread-safety-attributes``: Sanity checks on attribute syntax.
[all …]
/external/llvm/docs/HistoricalNotes/
D2001-01-31-UniversalIRIdea.txt13 static and runtime optimization; some higher-level like type-safety and
21 machine-independent features like type-safety and access safety should be
32 without type-safety as the intermediate representation.
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/
D2001-01-31-UniversalIRIdea.txt13 static and runtime optimization; some higher-level like type-safety and
21 machine-independent features like type-safety and access safety should be
32 without type-safety as the intermediate representation.
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/
D2001-01-31-UniversalIRIdea.txt13 static and runtime optimization; some higher-level like type-safety and
21 machine-independent features like type-safety and access safety should be
32 without type-safety as the intermediate representation.
/external/clang/test/SemaObjC/
Dwarn-thread-safety-analysis.m1 // RUN: %clang_cc1 -fsyntax-only -verify -Wthread-safety -Wthread-safety-beta -Wno-objc-root-class …
Dblock-type-safety.m2 // test for block type safety.
89 // strict type safety requires this:
/external/tensorflow/tensorflow/contrib/integrate/python/ops/
Dodes.py218 safety=0.9, argument
231 math_ops.minimum(error_ratio**exponent / safety,
310 safety=0.9, argument
323 y0, t, rtol, atol, safety, ifactor, dfactor, max_num_steps
328 safety = ops.convert_to_tensor(safety, dtype=t.dtype, name='safety')
367 dt_next = _optimal_step_size(dt, error_ratio, safety, ifactor, dfactor)
/external/owasp/sanitizer/lib/commons-codec-1.4/
DRELEASE-NOTES.txt33 o [CODEC-70] Thread safety and malicious code safety improvements.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Linker/
D2003-08-23-RecursiveOpaqueTypeResolve.ll1 ; It's a bad idea to go recursively traipsing through types without a safety
/external/llvm/test/Linker/
D2003-08-23-RecursiveOpaqueTypeResolve.ll1 ; It's a bad idea to go recursively traipsing through types without a safety
/external/swiftshader/third_party/LLVM/test/Linker/
D2003-08-23-RecursiveOpaqueTypeResolve.ll1 ; It's a bad idea to go recursively traipsing through types without a safety
/external/llvm/docs/
DFaultMaps.rst13 are required for safety but never fail in practice. In such cases, it
16 exploited by folding such safety checks into operations that can be
/external/autotest/test_suites/
Dcontrol.sanity17 on the safety checks built into the provisioning code to identify bad builds.
/external/protobuf/objectivec/google/protobuf/
DEmpty.pbobjc.m21 // about thread safety of the singleton.
DSourceContext.pbobjc.m21 // about thread safety of the singleton.
DFieldMask.pbobjc.m21 // about thread safety of the singleton.
DDuration.pbobjc.m21 // about thread safety of the singleton.
DTimestamp.pbobjc.m21 // about thread safety of the singleton.
/external/clang/include/clang/Basic/
DDiagnosticGroups.td615 def TypeSafety : DiagGroup<"type-safety">;
666 def ThreadSafetyAttributes : DiagGroup<"thread-safety-attributes">;
667 def ThreadSafetyAnalysis : DiagGroup<"thread-safety-analysis">;
668 def ThreadSafetyPrecise : DiagGroup<"thread-safety-precise">;
669 def ThreadSafetyReference : DiagGroup<"thread-safety-reference">;
670 def ThreadSafetyNegative : DiagGroup<"thread-safety-negative">;
671 def ThreadSafety : DiagGroup<"thread-safety",
676 def ThreadSafetyVerbose : DiagGroup<"thread-safety-verbose">;
677 def ThreadSafetyBeta : DiagGroup<"thread-safety-beta">;
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DFaultMaps.rst13 are required for safety but never fail in practice. In such cases, it
16 exploited by folding such safety checks into operations that can be
/external/bcc/
DAndroid.bp24 "-Wthread-safety",
/external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/
Dloads.ll26 ; we need to have some instruction to move the result to safety.

1234567891011