HomeSort by: relevance | last modified time | path
    Searched defs:Push (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_lfstack.h 12 // The memory passed to Push() must not be ever munmap'ed.
36 void Push(T *p) {
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_lfstack.h 11 // The memory passed to Push() must not be ever munmap'ed.
35 void Push(T *p) {
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_lfstack.h 11 // The memory passed to Push() must not be ever munmap'ed.
35 void Push(T *p) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 66 Instruction *Push = nullptr;
71 Push = Inst;
74 // If this pop matches a push and nothing in between can autorelease,
76 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
78 LLVM_DEBUG(dbgs() << "ObjCARCAPElim::OptimizeBB: Zapping push pop "
82 << " Push: " << *Push
85 Push->eraseFromParent();
87 Push = nullptr
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_ilist.h 68 void Push(Elem* e, INode* after);
83 Push(e, &node_);
88 Push(e, node_.prev_);
92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) {
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_ilist.h 68 void Push(Elem* e, INode* after);
83 Push(e, &node_);
88 Push(e, node_.prev_);
92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86CallFrameOptimization.cpp 12 // 1) The push instruction encoding is much smaller than a stack-ptr-based mov.
13 // 2) It is possible to push memory arguments directly. So, if the
92 // True if this call site can use push instructions
227 // Now, for each push, we save ~3 bytes. For small constants, we actually,
319 // push.
326 // EDX, and then the call, after the transformation the push will use
330 // used by an earlier mov that will become a push.
404 // push a sequence of stack-slot-aligned values onto the stack, with
510 MachineBasicBlock::iterator Push = nullptr;
525 // PUSH instruction with a shorter encoding
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efitcp.h 154 BOOLEAN Push;
327 BOOLEAN Push;
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParsePragma.cpp 951 if (PushPop == "push")
962 PP.Lex(Tok); // push | pop
1300 enum ActionType { Push, Pop, Attribute };
1562 assert((Info->Action == PragmaAttributeInfo::Push ||
1566 if (Info->Action == PragmaAttributeInfo::Push && Info->Tokens.empty()) {
1719 // Handle a mixed push/attribute by desurging to a push, then an attribute.
1720 if (Info->Action == PragmaAttributeInfo::Push)
1728 // 'push' '(' [visibility] ')'
1743 } else if (PushPop && PushPop->isStr("push")) {
    [all...]

Completed in 25 milliseconds