/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | cfg.py | 374 def _add_jump_node(self, ast_node, guards): argument 390 self.finally_sections[node] = guards 406 def add_exit_node(self, ast_node, section_id, guards): argument 417 node = self._add_jump_node(ast_node, guards) 420 def add_continue_node(self, ast_node, section_id, guards): argument 431 node = self._add_jump_node(ast_node, guards) 434 def add_error_node(self, ast_node, guards): argument 443 node = self._add_jump_node(ast_node, guards) 640 try_node, guards = self._get_enclosing_finally_scopes( 645 self.builder.add_exit_node(node, try_node, guards) [all …]
|
/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/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/swiftshader/third_party/llvm-7.0/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/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/python/cpython3/Lib/test/support/ |
D | __init__.py | 1820 def impl_detail(msg=None, **guards): argument 1821 if check_impl_detail(**guards): 1824 guardnames, default = _parse_guards(guards) 1833 def _parse_guards(guards): argument 1835 if not guards: 1837 is_true = list(guards.values())[0] 1838 assert list(guards.values()) == [is_true] * len(guards) # all True or all False 1839 return (guards, not is_true) 1843 def check_impl_detail(**guards): argument 1850 guards, default = _parse_guards(guards) [all …]
|
/external/skia/include/private/ |
D | SkSafe_math.h | 42 #error Hmm. Looks like math.h has changed its header guards.
|
/external/skqp/include/private/ |
D | SkSafe_math.h | 42 #error Hmm. Looks like math.h has changed its header guards.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/EarlyCSE/ |
D | guards.ll | 187 ; Check that we are able to remove the guards on the same condition even if the 203 ; Check that we deal correctly with stores when removing guards in the same 271 ; Make sure that non-dominating guards do not cause other guards removal. 312 ; Make sure that branching condition is applied to guards. 344 ; eliminate the dominated guards). 360 ; Check that we deal correctly with stores when removing guards due to assume. 427 ; Make sure that non-dominating assumes do not cause guards removal.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/ |
D | frem.ll | 3 ; This unit test guards against the failure.
|
/external/llvm/test/ExecutionEngine/ |
D | frem.ll | 3 ; This unit test guards against the failure.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/SanitizerCoverage/ |
D | tracing-comdat.ll | 1 ; Test that the coverage guards have proper comdat
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | stackguard-internal.ll | 5 ; Make sure we correctly lower stack guards even if __stack_chk_guard
|
/external/harfbuzz_ng/docs/ |
D | Makefile.am | 31 SCAN_OPTIONS=--rebuild-types --deprecated-guards="HB_DISABLE_DEPRECATED" \
|
/external/llvm/include/llvm/TableGen/ |
D | SearchableTable.td | 19 // and GET_MAPPINGKIND_IMPL guards.
|
/external/v8/src/regexp/ |
D | jsregexp.cc | 2809 if (alternative.guards() != nullptr && in FilterOneByte() 2810 alternative.guards()->length() != 0) { in FilterOneByte() 3870 ZoneList<Guard*>* guards = alternative.guards(); in AssertGuardsMentionRegisters() local 3871 int guard_count = (guards == nullptr) ? 0 : guards->length(); in AssertGuardsMentionRegisters() 3873 DCHECK(!trace->mentions_reg(guards->at(j)->reg())); in AssertGuardsMentionRegisters() 3901 if (choice_count == 1 && alternatives_->at(0).guards() == nullptr) { in Emit() 4028 if (alt1.guards() != nullptr && alt1.guards()->length() != 0) { in EmitOptimizedUnanchoredSearch() 4094 ZoneList<Guard*>* guards = alternative.guards(); in EmitChoices() local 4095 int guard_count = (guards == nullptr) ? 0 : guards->length(); in EmitChoices() 4150 GenerateGuard(macro_assembler, guards->at(j), &new_trace); in EmitChoices() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GuardWidening/ |
D | loop-schedule.ll | 8 ; CHECK: Widen guards (within a single loop, as a loop pass)
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | bitdepth_conversion_sse2.asm | 11 ; TODO(johannkoenig): Add the necessary include guards to vpx_config.asm.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopUnswitch/ |
D | guards.ll | 80 ; be erased (this has implications on what guards we can keep raw
|
/external/llvm/test/Transforms/LoopUnswitch/ |
D | guards.ll | 80 ; be erased (this has implications on what guards we can keep raw
|
/external/boringssl/src/ |
D | STYLE.md | 143 Name public headers like `include/openssl/evp.h` with header guards like 145 `crypto/ec/internal.h` with header guards like
|
/external/cmockery/cmockery_0_1_2/src/ |
D | cmockery.c | 1307 char *guards[2] = {block - MALLOC_GUARD_SIZE, in _test_free() local 1309 for (i = 0; i < ARRAY_LENGTH(guards); i++) { in _test_free() 1311 char * const guard = guards[i]; in _test_free()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/GVN/PRE/ |
D | pre-load-guards.ll | 6 ; This is a motivating example on why we prohibit hoisting through guards.
|
/external/llvm/test/Analysis/ScalarEvolution/ |
D | guards.ll | 3 ; Check that SCEV is able to recognize and use guards to prove
|