/external/compiler-rt/test/asan/TestCases/ |
D | coverage-reset.cc | 26 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/ |
D | basic.ll | 2 ; 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/ |
D | cfg.py | 406 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/ |
D | mixed_guards.ll | 2 ; 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/ |
D | sanitizer_coverage_libcdep.cc | 103 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/ |
D | guards-verify-tailcall.mir | 6 # That that tail calls are checked when using indirect jump guards (hazard variant). 8 # CHECK: Bad machine code: invalid instruction when using jump guards!
|
D | guards-verify-call.mir | 6 # 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/ |
D | CHANGELOG.md | 48 - 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/ |
D | README.angle | 19 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__.py | 1481 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/ |
D | SkSafe_math.h | 42 #error Hmm. Looks like math.h has changed its header guards.
|
/external/skia/include/private/ |
D | SkSafe_math.h | 42 #error Hmm. Looks like math.h has changed its header guards.
|
/external/llvm-project/polly/lib/External/isl/test_inputs/codegen/ |
D | stride7.in | 1 # Check that no redundant guards are introduced
|
/external/llvm-project/clang/test/Modules/ |
D | import-once.m | 4 // Test #import-ed headers are processed only once, even without header guards.
|
/external/llvm-project/llvm/test/Instrumentation/AddressSanitizer/ |
D | version-mismatch-check.ll | 1 ; Check that the ASan module constructor guards against compiler/runtime version
|
/external/llvm-project/llvm/test/Instrumentation/HeapProfiler/ |
D | version-mismatch-check.ll | 1 ; Check that the MemProf module constructor guards against compiler/runtime version
|
/external/rust/crates/scopeguard/ |
D | METADATA | 2 …cros `defer!`, `defer_on_unwind!`, `defer_on_success!` as shorthands for guards with one of the im…
|
D | Cargo.toml.orig | 15 shorthands for guards with one of the implemented strategies.
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | llvm-header-guard.rst | 6 Finds and fixes header guards that do not adhere to LLVM style.
|
/external/google-breakpad/src/common/android/include/asm-mips/ |
D | README.md | 4 the exception of changing the include guards to Breakpad ones. They are copied
|
/external/llvm-project/clang/test/SemaCXX/ |
D | modules-ts.cppm | 19 // 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/ |
D | frem.ll | 3 ; This unit test guards against the failure.
|
/external/llvm-project/llvm/test/ExecutionEngine/ |
D | frem.ll | 3 ; This unit test guards against the failure.
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 1717 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/ |
D | cups-compiler.m4 | 21 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
|