/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/python/cpython2/Lib/test/ |
D | test_support.py | 1425 def impl_detail(msg=None, **guards): argument 1426 if check_impl_detail(**guards): 1429 guardnames, default = _parse_guards(guards) 1438 def _parse_guards(guards): argument 1440 if not guards: 1442 is_true = guards.values()[0] 1443 assert guards.values() == [is_true] * len(guards) # all True or all False 1444 return (guards, not is_true) 1448 def check_impl_detail(**guards): argument 1455 guards, default = _parse_guards(guards) [all …]
|
/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/python/cpython3/Lib/test/support/ |
D | __init__.py | 1792 def impl_detail(msg=None, **guards): argument 1793 if check_impl_detail(**guards): 1796 guardnames, default = _parse_guards(guards) 1821 def _parse_guards(guards): argument 1823 if not guards: 1825 is_true = list(guards.values())[0] 1826 assert list(guards.values()) == [is_true] * len(guards) # all True or all False 1827 return (guards, not is_true) 1831 def check_impl_detail(**guards): argument 1838 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/test/ExecutionEngine/ |
D | frem.ll | 3 ; This unit test guards against the failure.
|
/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 | 2882 if (alternative.guards() != NULL && alternative.guards()->length() != 0) { in FilterOneByte() 3942 ZoneList<Guard*>* guards = alternative.guards(); in AssertGuardsMentionRegisters() local 3943 int guard_count = (guards == NULL) ? 0 : guards->length(); in AssertGuardsMentionRegisters() 3945 DCHECK(!trace->mentions_reg(guards->at(j)->reg())); in AssertGuardsMentionRegisters() 3973 if (choice_count == 1 && alternatives_->at(0).guards() == NULL) { in Emit() 4100 if (alt1.guards() != NULL && alt1.guards()->length() != 0) { in EmitOptimizedUnanchoredSearch() 4166 ZoneList<Guard*>* guards = alternative.guards(); in EmitChoices() local 4167 int guard_count = (guards == NULL) ? 0 : guards->length(); in EmitChoices() 4222 GenerateGuard(macro_assembler, guards->at(j), &new_trace); in EmitChoices() 4246 ZoneList<Guard*>* guards = alternative.guards(); in EmitOutOfLineContinuation() local [all …]
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | bitdepth_conversion_sse2.asm | 11 ; TODO(johannkoenig): Add the necessary include guards to vpx_config.asm.
|
/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/llvm/test/Analysis/ScalarEvolution/ |
D | guards.ll | 3 ; Check that SCEV is able to recognize and use guards to prove
|
/external/harfbuzz_ng/src/ |
D | Makefile.am | 310 check-header-guards.sh \
|
/external/valgrind/docs/internals/ |
D | porting-HOWTO.txt | 38 guards, so they refer to the new architecture, rather than x86.
|
/external/pcre/dist2/src/ |
D | config.h.in | 166 Care must be taken if it is increased, because it guards against integer 171 Care must be taken if it is increased, because it guards against integer
|
D | config.h.generic | 175 Care must be taken if it is increased, because it guards against integer 182 Care must be taken if it is increased, because it guards against integer
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | README.txt | 84 Requires('gui') causes the test(s) it guards to be skipped if any of
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | README.txt | 74 Requires('gui') causes the test(s) it guards to be skipped if any of
|
/external/gflags/ |
D | ChangeLog.txt | 61 - Fixed issue 62: Change all preprocessor include guards to start with GFLAGS_
|
/external/llvm/test/Transforms/GuardWidening/ |
D | basic.ll | 269 ; With guards in loops, we're okay hoisting out the guard into the
|
/external/pcre/dist2/ |
D | configure.ac | 683 change it. Care must be taken if it is increased, because it guards 688 change it. Care must be taken if it is increased, because it guards
|
/external/libnl/ |
D | ChangeLog | 175 o Fix inclusion guards of route/neightbl.h
|