Home
last modified time | relevance | path

Searched refs:Push (Results 1 – 25 of 49) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatterBytecode.cpp129 data.Push(s); in FormatImpl()
242 data.Push(data.back()); in Interpret()
253 data.Push(data[idx]); in Interpret()
258 data.Push(data[data.size() - 2]); in Interpret()
264 data.Push(x); in Interpret()
265 data.Push(y); in Interpret()
273 data.Push(z); in Interpret()
274 data.Push(x); in Interpret()
275 data.Push(y); in Interpret()
314 data.Push(cur_block.getULEB128(pc)); in Interpret()
[all …]
H A DFormatterBytecode.h44 void Push(DataStackElement el) { push_back(el); } in Push() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp67 Instruction *Push = nullptr; in OptimizeBB() local
71 Push = &Inst; in OptimizeBB()
76 if (Push && cast<CallInst>(&Inst)->getArgOperand(0) == Push) { in OptimizeBB()
82 << " Push: " << *Push in OptimizeBB()
85 Push->eraseFromParent(); in OptimizeBB()
87 Push = nullptr; in OptimizeBB()
91 Push = nullptr; in OptimizeBB()
/freebsd/contrib/bearssl/T0/
H A DT0Comp.cs384 cpu.Push(tv); in T0Comp()
417 cpu.Push(tv); in T0Comp()
445 savedWordBuilders.Push(wordBuilder); in T0Comp()
489 savedWordBuilders.Push(wordBuilder); in T0Comp()
608 cpu.Push(new TValue(0, new TPointerBlob(dataBlock))); in T0Comp()
642 cpu.Push(new TValue(dataBlock.Length, in T0Comp()
691 cpu.Push(v); in T0Comp()
751 cpu.Push(StringToBlob(s)); in T0Comp()
756 cpu.Push(StringToBlob(s)); in T0Comp()
763 cpu.Push(c); in T0Comp()
[all …]
H A DOpcodeGetLocal.cs39 cpu.Push(cpu.GetLocal(num)); in Run()
H A DOpcodeConst.cs39 cpu.Push(val); in Run()
H A DWordData.cs78 cpu.Push(new TValue(offset, new TPointerBlob(blob))); in Run()
H A DCPU.cs105 internal void Push(TValue v) in Push() method in CPU
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallFrameOptimization.cpp508 MachineBasicBlock::iterator Push = nullptr; in adjustCallSequence() local
522 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)).add(PushOp); in adjustCallSequence()
523 Push->cloneMemRefs(MF, *Store); in adjustCallSequence()
550 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)); in adjustCallSequence()
554 Push->addOperand(DefMov->getOperand(i)); in adjustCallSequence()
555 Push->cloneMergedMemRefs(MF, {DefMov, &*Store}); in adjustCallSequence()
559 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)) in adjustCallSequence()
562 Push->cloneMemRefs(MF, *Store); in adjustCallSequence()
573 MBB, std::next(Push), DL, in adjustCallSequence()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ilist.h68 void Push(Elem* e, INode* after);
83 Push(e, &node_); in PushFront()
88 Push(e, node_.prev_); in PushBack()
92 void IList<Base, Node, Elem>::Push(Elem* e, INode* after) { in Push() function
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-function-mocker_test.cc540 virtual void Push(const T& value) = 0;
552 MOCK_METHOD(void, Push, (const T& elem), ());
571 MOCK_METHOD1_T(Push, void(const T& elem));
599 EXPECT_CALL(mock, Push(_)); in TYPED_TEST()
605 mock.Push(5); in TYPED_TEST()
632 STDMETHOD_(void, Push)(const T& value) = 0;
644 MOCK_METHOD(void, Push, (const T& elem),
661 MOCK_METHOD1_T_WITH_CALLTYPE(STDMETHODCALLTYPE, Push, void(const T& elem));
688 EXPECT_CALL(mock, Push(_)); in TYPED_TEST()
694 mock.Push(5); in TYPED_TEST()
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp285 void Push(FuzzJob *Job) { in Push() function
307 MergeQ->Push(Job); in WorkerThread()
370 FuzzQ.Push(nullptr); in FuzzWithFork()
371 MergeQ.Push(nullptr); in FuzzWithFork()
381 FuzzQ.Push(Env.CreateNewJob(JobId++)); in FuzzWithFork()
478 FuzzQ.Push(Env.CreateNewJob(JobId++)); in FuzzWithFork()
/freebsd/stand/i386/pxeldr/
H A Dpxeldr.S265 pushl %eax # Push it onto the stack
266 loop push_arg # Push all of the arguments
/freebsd/contrib/llvm-project/lldb/bindings/lua/
H A Dlua-wrapper.swig17 // Push the Lua wrappers
52 // Push the Lua wrappers
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h35 void Push(T *p) { in Push() function
/freebsd/stand/i386/cdboot/
H A Dcdboot.S527 push %eax # Push it onto the stack
528 loop push_arg # Push all of the arguments
/freebsd/sys/contrib/edk2/Include/Protocol/
H A DTcp6.h380 BOOLEAN Push; member
H A DTcp4.h170 BOOLEAN Push; member
/freebsd/stand/ficl/softwords/
H A Dficlclass.fr20 \ Push word's name...
/freebsd/crypto/openssl/
H A DFREEBSD-upgrade.md112 #### Push branch update and tag separately
123 #### Push branch update and tag simultaneously
/freebsd/stand/i386/btx/lib/
H A Dbtxv86.S50 pushl $__v86 # Push pointer
/freebsd/sys/dts/
H A Dbindings-gpio.txt87 GPIO_PIN_PUSHPULL 0x0010 Push-pull output
/freebsd/contrib/googletest/docs/
H A Dgmock_cheat_sheet.md64 virtual void Push(const Elem& x) = 0;
76 MOCK_METHOD(void, Push, (const Elem& x), (override));
/freebsd/sys/contrib/device-tree/Bindings/soc/ti/
H A Dkeystone-navigator-qmss.txt41 - Queue Management/Queue Proxy region for queue Push.
47 - Queue Management/Queue Proxy region for queue Push/Pop.
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.h104 void Push(AsanChunk *n);

12