HomeSort by relevance Sort by last modified time
    Searched full:poison (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/qemu/
poison.h 0 /* Poison identifiers that should not be used when building
8 #pragma GCC poison TARGET_I386
9 #pragma GCC poison TARGET_X86_64
10 #pragma GCC poison TARGET_ALPHA
11 #pragma GCC poison TARGET_ARM
12 #pragma GCC poison TARGET_CRIS
13 #pragma GCC poison TARGET_LM32
14 #pragma GCC poison TARGET_M68K
15 #pragma GCC poison TARGET_MIPS
16 #pragma GCC poison TARGET_MIPS6
    [all...]
cpu-common.h 15 #include "poison.h"
  /external/clang/test/Preprocessor/
pragma_poison.c 3 #pragma GCC poison rindex
6 #define BAR _Pragma ("GCC poison XYZW") XYZW /*NO ERROR*/
11 // Pragma poison shouldn't warn from macro expansions defined before the token
15 #pragma GCC poison rindex2
17 // Can poison multiple times.
18 #pragma GCC poison rindex2
macro_paste_bad.c 27 #pragma GCC poison BLARG
  /external/llvm/include/llvm/ADT/
Optional.h 64 /// \brief Poison comparison between two \c Optional objects. Clients needs to
73 /// \brief Poison comparison between two \c Optional objects. Clients needs to
82 /// \brief Poison comparison between two \c Optional objects. Clients needs to
91 /// \brief Poison comparison between two \c Optional objects. Clients needs to
100 /// \brief Poison comparison between two \c Optional objects. Clients needs to
109 /// \brief Poison comparison between two \c Optional objects. Clients needs to
  /external/clang/lib/Lex/
Preprocessor.cpp 148 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
456 void Preprocessor::PoisonSEHIdentifiers(bool Poison) {
459 Ident__exception_code->setIsPoisoned(Poison);
460 Ident___exception_code->setIsPoisoned(Poison);
461 Ident_GetExceptionCode->setIsPoisoned(Poison);
462 Ident__exception_info->setIsPoisoned(Poison);
463 Ident___exception_info->setIsPoisoned(Poison);
464 Ident_GetExceptionInfo->setIsPoisoned(Poison);
465 Ident__abnormal_termination->setIsPoisoned(Poison);
466 Ident___abnormal_termination->setIsPoisoned(Poison);
    [all...]
Pragma.cpp 270 /// HandlePragmaPoison - Handle #pragma GCC poison. PoisonTok is the 'poison'.
276 // Read the next token to poison. While doing this, pretend that we are
277 // skipping while reading the identifier to poison.
279 // #pragma GCC poison X
280 // #pragma GCC poison X
288 // Can only poison identifiers.
305 // Finally, poison it!
767 /// PragmaPoisonHandler - "#pragma poison x" marks x as not usable.
769 PragmaPoisonHandler() : PragmaHandler("poison") {}
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 617 /* As the last action in this file, we poison the identifiers that
642 system.h while doing so. Only poison these tokens if actually
648 #pragma GCC poison calloc strdup
653 #pragma GCC poison malloc realloc
657 #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN \
689 #pragma GCC poison INT_ASM_OP ASM_OUTPUT_EH_REGION_BEG CPP_PREDEFINES \
740 #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
748 #pragma GCC poison USE_MAPPED_LOCATION
759 #pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE VPARAMS VA_OPEN \
769 #pragma GCC poison bcopy bzero bcmp rinde
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 617 /* As the last action in this file, we poison the identifiers that
642 system.h while doing so. Only poison these tokens if actually
648 #pragma GCC poison calloc strdup
653 #pragma GCC poison malloc realloc
657 #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN \
689 #pragma GCC poison INT_ASM_OP ASM_OUTPUT_EH_REGION_BEG CPP_PREDEFINES \
741 #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
749 #pragma GCC poison USE_MAPPED_LOCATION
760 #pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE VPARAMS VA_OPEN \
770 #pragma GCC poison bcopy bzero bcmp rinde
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
system.h 617 /* As the last action in this file, we poison the identifiers that
642 system.h while doing so. Only poison these tokens if actually
648 #pragma GCC poison calloc strdup
653 #pragma GCC poison malloc realloc
657 #pragma GCC poison ASM_OPEN_PAREN ASM_CLOSE_PAREN \
689 #pragma GCC poison INT_ASM_OP ASM_OUTPUT_EH_REGION_BEG CPP_PREDEFINES \
741 #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \
749 #pragma GCC poison USE_MAPPED_LOCATION
760 #pragma GCC poison ANSI_PROTOTYPES PTR_CONST LONG_DOUBLE VPARAMS VA_OPEN \
770 #pragma GCC poison bcopy bzero bcmp rinde
    [all...]
  /external/clang/lib/Headers/
limits.h 103 that we don't have something like #pragma poison that could be used to
  /prebuilt/sdk/11/renderscript/clang-include/
limits.h 99 that we don't have something like #pragma poison that could be used to
  /prebuilt/sdk/12/renderscript/clang-include/
limits.h 103 that we don't have something like #pragma poison that could be used to
  /prebuilt/sdk/13/renderscript/clang-include/
limits.h 103 that we don't have something like #pragma poison that could be used to
  /prebuilt/sdk/14/renderscript/clang-include/
limits.h 117 that we don't have something like #pragma poison that could be used to
  /hardware/ti/omap4xxx/
heaptracker.c 210 static inline void poison(struct hdr *hdr) function
337 poison(hdr);
  /external/kernel-headers/original/linux/
slab.h 39 #define SLAB_POISON 0x00000800UL /* Poison objects */
list.h 7 #include <linux/poison.h>
171 * In particular, it means that we can not poison the forward
643 * In particular, it means that we can not poison the forward
  /external/llvm/lib/Support/
Allocator.cpp 66 // Poison the memory so stale pointers crash sooner. Note we must
  /frameworks/compile/libbcc/lib/CodeGen/
CodeMemoryManager.cpp 105 void CodeMemoryManager::setPoisonMemory(bool poison) {
CodeMemoryManager.h 133 virtual void setPoisonMemory(bool poison);
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 70 virtual void setPoisonMemory(bool poison) { Base->setPoisonMemory(poison); }
225 // Tell the memory manager to poison freed memory so that accessing freed
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 273 // Whether to poison freed memory.
511 void setPoisonMemory(bool poison) {
512 PoisonMemory = poison;
  /external/llvm/include/llvm/ExecutionEngine/
JITMemoryManager.h 48 virtual void setPoisonMemory(bool poison) = 0;
  /external/iptables/libiptc/
linux_list.h 201 * In particular, it means that we can not poison the forward
556 * In particular, it means that we can not poison the forward

Completed in 518 milliseconds

1 2 3