Home
last modified time | relevance | path

Searched refs:Poison (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/Lex/
DPreprocessor.cpp576 void Preprocessor::PoisonSEHIdentifiers(bool Poison) { in PoisonSEHIdentifiers() argument
579 Ident__exception_code->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
580 Ident___exception_code->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
581 Ident_GetExceptionCode->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
582 Ident__exception_info->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
583 Ident___exception_info->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
584 Ident_GetExceptionInfo->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
585 Ident__abnormal_termination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
586 Ident___abnormal_termination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
587 Ident_AbnormalTermination->setIsPoisoned(Poison); in PoisonSEHIdentifiers()
/external/conscrypt/src/test/resources/
DREADME8 - cert-ct-poisoned.pem: Same certificate as cert.pem, but with an extra CT Poison extension
/external/compiler-rt/lib/asan/
Dasan_flags.inc89 "Poison (or not) the heap memory on [de]allocation. Zero value is useful "
96 "Poison (or not) the array cookie after operator new[].")
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1750 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0); in poisonRedZones() local
1751 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo())); in poisonRedZones()
/external/clang/include/clang/Lex/
DPreprocessor.h1543 void PoisonSEHIdentifiers(bool Poison = true); // Borland
/external/llvm/docs/
DLangRef.rst2749 Poison Values
2752 Poison values are similar to :ref:`undef values <undefvalues>`, however
2761 Poison value behavior is defined in terms of value *dependence*:
2792 Poison values have the same behavior as :ref:`undef values <undefvalues>`,
2806 store i32 %poison, i32* @g ; Poison value stored to memory.
2807 %poison2 = load i32, i32* @g ; Poison value loaded back from memory.