Home
last modified time | relevance | path

Searched refs:guards (Results 1 – 25 of 150) sorted by relevance

123456

/external/compiler-rt/test/asan/TestCases/
Dcoverage-reset.cc26 if (guards[i]) bitset |= 1U << i; \
33 size_t *guards = 0; in main() local
35 size_t n_guards = __sanitizer_get_coverage_guards(&guards); in main()
/external/llvm-project/llvm/test/Transforms/MakeGuardsExplicit/
Dbasic.ll2 ; RUN: opt -S -make-guards-explicit < %s | FileCheck %s
3 ; RUN: opt -S -passes=make-guards-explicit < %s | FileCheck %s
7 ; Check that a sole guard can be turned into explicit guards form.
25 ; Check that a sequence of guards can be turned into explicit guards form.
59 ; Check that all instructions between the guards preserve.
/external/tensorflow/tensorflow/python/autograph/pyct/
Dcfg.py406 def _add_jump_node(self, ast_node, guards): argument
422 self.finally_sections[node] = guards
438 def add_exit_node(self, ast_node, section_id, guards): argument
451 node = self._add_jump_node(ast_node, guards)
455 def add_continue_node(self, ast_node, section_id, guards): argument
466 node = self._add_jump_node(ast_node, guards)
695 try_node, guards = self._get_enclosing_finally_scopes(exits_nodes_of_type)
699 node = self.builder.add_exit_node(node, try_node, guards)
707 try_node, guards = self._get_enclosing_finally_scopes(
712 self.builder.add_continue_node(node, try_node, guards)
/external/llvm-project/llvm/test/Transforms/GuardWidening/
Dmixed_guards.ll2 ; RUN: opt -S -guard-widening-widen-branch-guards=true -guard-widening < %s | FileCheck %s
3 ; RUN: opt -S -guard-widening-widen-branch-guards=true -passes=guard-widening < %s | FileCheck %s
5 ; Interaction between intrinsic and widenable condition guards.
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_libcdep.cc103 void InitializeGuardArray(s32 *guards);
104 void InitializeGuards(s32 *guards, uptr n, const char *module_name,
242 void CoverageData::InitializeGuardArray(s32 *guards) { in InitializeGuardArray() argument
244 s32 n = guards[0]; in InitializeGuardArray()
248 guards[j] = -static_cast<s32>(idx + 1); in InitializeGuardArray()
374 void CoverageData::InitializeGuards(s32 *guards, uptr n, in InitializeGuards() argument
380 guards[0] = static_cast<s32>(n); in InitializeGuards()
381 InitializeGuardArray(guards); in InitializeGuards()
386 guard_array_vec.push_back(guards); in InitializeGuards()
971 __sanitizer_cov_module_init(s32 *guards, uptr npcs, u8 *counters, in __sanitizer_cov_module_init() argument
[all …]
/external/llvm-project/llvm/test/CodeGen/Mips/indirect-jump-hazard/
Dguards-verify-tailcall.mir6 # That that tail calls are checked when using indirect jump guards (hazard variant).
8 # CHECK: Bad machine code: invalid instruction when using jump guards!
Dguards-verify-call.mir6 # Test that calls are checked when using indirect jumps guards (hazard variant).
8 # CHECK: Bad machine code: invalid instruction when using jump guards!
/external/rust/crates/spin/
DCHANGELOG.md48 - More dynamic `Send`/`Sync` bounds for lock guards
56 - Made `Debug` impls of lock guards just show the inner type like `std`
/external/angle/src/common/third_party/base/
DREADME.angle19 base/), and update the header guards and macros.
27 - header guards and macros are changed from BASE to ANGLEBASE to prevent conflicts.
/external/python/cpython2/Lib/test/support/
D__init__.py1481 def impl_detail(msg=None, **guards): argument
1482 if check_impl_detail(**guards):
1485 guardnames, default = _parse_guards(guards)
1494 def _parse_guards(guards): argument
1496 if not guards:
1498 is_true = guards.values()[0]
1499 assert guards.values() == [is_true] * len(guards) # all True or all False
1500 return (guards, not is_true)
1504 def check_impl_detail(**guards): argument
1511 guards, default = _parse_guards(guards)
[all …]
/external/skqp/include/private/
DSkSafe_math.h42 #error Hmm. Looks like math.h has changed its header guards.
/external/skia/include/private/
DSkSafe_math.h42 #error Hmm. Looks like math.h has changed its header guards.
/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/
Dstride7.in1 # Check that no redundant guards are introduced
/external/llvm-project/clang/test/Modules/
Dimport-once.m4 // Test #import-ed headers are processed only once, even without header guards.
/external/llvm-project/llvm/test/Instrumentation/AddressSanitizer/
Dversion-mismatch-check.ll1 ; Check that the ASan module constructor guards against compiler/runtime version
/external/llvm-project/llvm/test/Instrumentation/HeapProfiler/
Dversion-mismatch-check.ll1 ; Check that the MemProf module constructor guards against compiler/runtime version
/external/rust/crates/scopeguard/
DMETADATA2 …cros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the im…
DCargo.toml.orig15 shorthands for guards with one of the implemented strategies.
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dllvm-header-guard.rst6 Finds and fixes header guards that do not adhere to LLVM style.
/external/google-breakpad/src/common/android/include/asm-mips/
DREADME.md4 the exception of changing the include guards to Breakpad ones. They are copied
/external/llvm-project/clang/test/SemaCXX/
Dmodules-ts.cppm19 // expected-note@-3 {{unguarded header; consider using #ifdef guards or #pragma once}}
26 // expected-note@-3 {{unguarded header; consider using #ifdef guards or #pragma once}}
/external/llvm/test/ExecutionEngine/
Dfrem.ll3 ; This unit test guards against the failure.
/external/llvm-project/llvm/test/ExecutionEngine/
Dfrem.ll3 ; This unit test guards against the failure.
/external/python/cpython3/Lib/test/support/
D__init__.py1717 def impl_detail(msg=None, **guards): argument
1718 if check_impl_detail(**guards):
1721 guardnames, default = _parse_guards(guards)
1730 def _parse_guards(guards): argument
1732 if not guards:
1734 is_true = list(guards.values())[0]
1735 assert list(guards.values()) == [is_true] * len(guards) # all True or all False
1736 return (guards, not is_true)
1740 def check_impl_detail(**guards): argument
1747 guards, default = _parse_guards(guards)
[all …]
/external/libcups/config-scripts/
Dcups-compiler.m421 AC_ARG_ENABLE(debug_guards, [ --enable-debug-guards build with memory allocation guards])
38 dnl Debug guards use an extra 4 bytes for some structures like strings in the

123456