Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/async-profiler/async-profiler
/ updateBounds
Method
updateBounds
src/codeCache.cpp:100–103 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
98
}
99
100
void CodeCache::updateBounds(const void* start, const void* end) {
101
if (start < _min_address) _min_address = start;
102
if (end > _max_address) _max_address = end;
103
}
104
105
void CodeCache::sort() {
106
if (_count == 0) return;
Callers
1
parse
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected