Home
last modified time | relevance | path

Searched refs:_callSite (Results 1 – 5 of 5) sorted by relevance

/dports/devel/spark/spark-2.1.1/streaming/src/main/scala/org/apache/spark/streaming/scheduler/
H A DJob.scala34 private var _callSite: CallSite = null
79 _callSite = callSite
82 def callSite: CallSite = _callSite
/dports/misc/usd/USD-21.11/pxr/base/tf/
H A DmallocTag.cpp432 : _callSite(callSite), in Tf_MallocPathNode()
464 Tf_MallocCallSite* _callSite; member
566 if (node->_callSite->_trace) { in _CaptureMallocStack()
583 if (node->_callSite->_trace) { in _ReleaseMallocStack()
599 if (node->_callSite->_debug) in _RunDebugHookForNode()
723 node->siteName = _callSite->_name; in _BuildTree()
1111 node->_callSite->_totalBytes += blockSize; in _MemalignWrapper()
1154 node->_callSite->_totalBytes -= bytesFreed; in _FreeWrapper()
1182 node->_callSite->_totalBytes += actualBytes; in _MallocWrapper_ptmalloc()
1278 node->_callSite->_totalBytes += actualBytes; in _MemalignWrapper_ptmalloc()
[all …]
/dports/lang/solidity/solidity_0.8.11/libyul/optimiser/
H A DFullInliner.cpp158 bool FullInliner::shallInline(FunctionCall const& _funCall, YulString _callSite) in shallInline() argument
161 if (_funCall.functionName.name == _callSite) in shallInline()
181 if (m_functionSizes.at(_callSite) > 45) in shallInline()
202 void FullInliner::tentativelyUpdateCodeSize(YulString _function, YulString _callSite) in tentativelyUpdateCodeSize() argument
204 m_functionSizes.at(_callSite) += m_functionSizes.at(_function); in tentativelyUpdateCodeSize()
H A DFullInliner.h78 bool shallInline(FunctionCall const& _funCall, YulString _callSite);
91 void tentativelyUpdateCodeSize(YulString _function, YulString _callSite);
/dports/security/klee/klee-2.2/lib/Core/
H A DCallPathManager.cpp25 const llvm::Instruction *_callSite, in CallPathNode() argument
27 : parent(_parent), callSite(_callSite), function(_function), count(0) {} in CallPathNode()