File Metadata

Author
cullmann
Created
Sep 2 2018, 11:03 AM

perf.xZfpV.svg

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="4800" height="598" onload="init(evt)" viewBox="0 0 4800 598" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="4800.0" height="598.0" fill="url(#background)" />
<text text-anchor="middle" x="2400.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="581" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="4690.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="4690.00" y="581" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="177.0" y="469" width="6.1" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="179.96" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x363616 (7 samples, 0.91%)</title><rect x="2910.2" y="181" width="43.2" height="23.0" fill="rgb(238,105,36)" rx="2" ry="2" />
<text text-anchor="" x="2913.16" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x36..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (4 samples, 0.52%)</title><rect x="331.6" y="469" width="24.7" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="334.55" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DefinitionRef::operator== (2 samples, 0.26%)</title><rect x="1426.1" y="253" width="12.3" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1429.07" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (1 samples, 0.13%)</title><rect x="4616.9" y="253" width="6.1" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4619.86" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (1 samples, 0.13%)</title><rect x="4381.9" y="205" width="6.2" height="23.0" fill="rgb(251,132,51)" rx="2" ry="2" />
<text text-anchor="" x="4384.88" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x32948a (1 samples, 0.13%)</title><rect x="442.9" y="469" width="6.1" height="23.0" fill="rgb(238,105,37)" rx="2" ry="2" />
<text text-anchor="" x="445.86" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectSpaces::doMatch (3 samples, 0.39%)</title><rect x="1815.6" y="229" width="18.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1818.64" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevicePrivate::setWriteChannelCount (1 samples, 0.13%)</title><rect x="4493.2" y="229" width="6.2" height="23.0" fill="rgb(238,164,36)" rx="2" ry="2" />
<text text-anchor="" x="4496.18" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topCaptures (4 samples, 0.52%)</title><rect x="857.2" y="469" width="24.7" height="23.0" fill="rgb(239,156,38)" rx="2" ry="2" />
<text text-anchor="" x="860.17" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::push (4 samples, 0.52%)</title><rect x="1320.9" y="229" width="24.8" height="23.0" fill="rgb(236,156,34)" rx="2" ry="2" />
<text text-anchor="" x="1323.94" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (2 samples, 0.26%)</title><rect x="22.4" y="373" width="12.3" height="23.0" fill="rgb(250,158,50)" rx="2" ry="2" />
<text text-anchor="" x="25.37" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="3089.5" y="181" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="3092.48" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QReadWriteLock::unlock (3 samples, 0.39%)</title><rect x="3033.8" y="181" width="18.6" height="23.0" fill="rgb(240,180,39)" rx="2" ry="2" />
<text text-anchor="" x="3036.83" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x997bf (1 samples, 0.13%)</title><rect x="2990.5" y="181" width="6.2" height="23.0" fill="rgb(235,86,33)" rx="2" ry="2" />
<text text-anchor="" x="2993.54" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2chunk_check (1 samples, 0.13%)</title><rect x="1358.0" y="205" width="6.2" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="1361.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectChar::doMatch (1 samples, 0.13%)</title><rect x="1809.5" y="229" width="6.1" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1812.46" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7fd70d91b87b (1 samples, 0.13%)</title><rect x="430.5" y="493" width="6.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="433.49" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3311ec (14 samples, 1.81%)</title><rect x="2792.7" y="157" width="86.5" height="23.0" fill="rgb(236,105,34)" rx="2" ry="2" />
<text text-anchor="" x="2795.66" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x3311ec</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.13%)</title><rect x="486.1" y="469" width="6.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="489.14" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x997af (1 samples, 0.13%)</title><rect x="2984.4" y="181" width="6.1" height="23.0" fill="rgb(236,86,34)" rx="2" ry="2" />
<text text-anchor="" x="2987.36" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectChar::doMatch (3 samples, 0.39%)</title><rect x="591.3" y="469" width="18.5" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="594.27" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3f8250ff (1 samples, 0.13%)</title><rect x="411.9" y="493" width="6.2" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="414.94" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector&lt;QPair&lt;KSyntaxHighlighting::Context*, (1 samples, 0.13%)</title><rect x="4443.7" y="253" width="6.2" height="23.0" fill="rgb(232,160,30)" rx="2" ry="2" />
<text text-anchor="" x="4446.71" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x15000 (607 samples, 78.53%)</title><rect x="888.1" y="397" width="3753.5" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x15000</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e7df (3 samples, 0.39%)</title><rect x="467.6" y="493" width="18.5" height="23.0" fill="rgb(245,92,44)" rx="2" ry="2" />
<text text-anchor="" x="470.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFile::open (2 samples, 0.26%)</title><rect x="4487.0" y="277" width="12.4" height="23.0" fill="rgb(250,172,49)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::FoldingRegion::isValid (3 samples, 0.39%)</title><rect x="702.6" y="469" width="18.5" height="23.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text text-anchor="" x="705.57" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::get (5 samples, 0.65%)</title><rect x="3689.3" y="253" width="30.9" height="23.0" fill="rgb(237,156,35)" rx="2" ry="2" />
<text text-anchor="" x="3692.30" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (7 samples, 0.91%)</title><rect x="3256.4" y="133" width="43.3" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3259.44" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__me..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e73f (1 samples, 0.13%)</title><rect x="455.2" y="493" width="6.2" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="458.23" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::rehash (5 samples, 0.65%)</title><rect x="4320.0" y="253" width="31.0" height="23.0" fill="rgb(241,188,40)" rx="2" ry="2" />
<text text-anchor="" x="4323.04" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QH..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331321 (1 samples, 0.13%)</title><rect x="2879.2" y="181" width="6.2" height="23.0" fill="rgb(230,105,28)" rx="2" ry="2" />
<text text-anchor="" x="2882.24" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_catch_error (1 samples, 0.13%)</title><rect x="4641.6" y="373" width="6.2" height="23.0" fill="rgb(242,184,41)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (607 samples, 78.53%)</title><rect x="888.1" y="469" width="3753.5" height="23.0" fill="rgb(247,154,46)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331358 (1 samples, 0.13%)</title><rect x="2891.6" y="181" width="6.2" height="23.0" fill="rgb(232,105,30)" rx="2" ry="2" />
<text text-anchor="" x="2894.60" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::allocateNode (10 samples, 1.29%)</title><rect x="4116.0" y="253" width="61.8" height="23.0" fill="rgb(250,188,49)" rx="2" ry="2" />
<text text-anchor="" x="4118.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHashD..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16394a (2 samples, 0.26%)</title><rect x="2730.8" y="109" width="12.4" height="23.0" fill="rgb(227,112,25)" rx="2" ry="2" />
<text text-anchor="" x="2733.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3108b4f (1 samples, 0.13%)</title><rect x="275.9" y="493" width="6.2" height="23.0" fill="rgb(241,105,39)" rx="2" ry="2" />
<text text-anchor="" x="278.90" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (1 samples, 0.13%)</title><rect x="4344.8" y="229" width="6.2" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4347.77" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3e6fde98 (1 samples, 0.13%)</title><rect x="362.5" y="493" width="6.2" height="23.0" fill="rgb(238,92,37)" rx="2" ry="2" />
<text text-anchor="" x="365.47" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check (2 samples, 0.26%)</title><rect x="4196.4" y="229" width="12.3" height="23.0" fill="rgb(239,177,37)" rx="2" ry="2" />
<text text-anchor="" x="4199.36" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293d0 (1 samples, 0.13%)</title><rect x="2069.2" y="205" width="6.2" height="23.0" fill="rgb(237,112,36)" rx="2" ry="2" />
<text text-anchor="" x="2072.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::append (1 samples, 0.13%)</title><rect x="3497.6" y="157" width="6.2" height="23.0" fill="rgb(251,166,51)" rx="2" ry="2" />
<text text-anchor="" x="3500.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (8 samples, 1.03%)</title><rect x="2366.0" y="157" width="49.5" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="2368.99" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x306b44f (1 samples, 0.13%)</title><rect x="226.4" y="493" width="6.2" height="23.0" fill="rgb(239,105,38)" rx="2" ry="2" />
<text text-anchor="" x="229.43" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>realloc (1 samples, 0.13%)</title><rect x="4487.0" y="37" width="6.2" height="23.0" fill="rgb(238,184,36)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="51.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="820.1" y="469" width="6.1" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="823.06" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2f (1 samples, 0.13%)</title><rect x="201.7" y="493" width="6.2" height="23.0" fill="rgb(244,109,43)" rx="2" ry="2" />
<text text-anchor="" x="204.69" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Float::doMatch (1 samples, 0.13%)</title><rect x="622.2" y="469" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="625.19" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x310004f (1 samples, 0.13%)</title><rect x="263.5" y="493" width="6.2" height="23.0" fill="rgb(242,105,41)" rx="2" ry="2" />
<text text-anchor="" x="266.53" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFSFileEngine::open (1 samples, 0.13%)</title><rect x="4487.0" y="253" width="6.2" height="23.0" fill="rgb(250,166,49)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::midRef (3 samples, 0.39%)</title><rect x="3578.0" y="205" width="18.5" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="3580.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.13%)</title><rect x="214.1" y="469" width="6.1" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="217.06" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (12 samples, 1.55%)</title><rect x="2341.3" y="181" width="74.2" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="2344.25" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >free_che..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (1 samples, 0.13%)</title><rect x="4536.5" y="157" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="4539.47" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedStart (1 samples, 0.13%)</title><rect x="523.2" y="469" width="6.2" height="23.0" fill="rgb(239,180,37)" rx="2" ry="2" />
<text text-anchor="" x="526.25" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="275.9" y="469" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="278.90" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>openaux (1 samples, 0.13%)</title><rect x="4641.6" y="349" width="6.2" height="23.0" fill="rgb(246,195,45)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThread (25 samples, 3.23%)</title><rect x="10.0" y="517" width="154.6" height="23.0" fill="rgb(241,160,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QThread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.13%)</title><rect x="4623.0" y="277" width="6.2" height="23.0" fill="rgb(231,177,29)" rx="2" ry="2" />
<text text-anchor="" x="4626.04" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (1 samples, 0.13%)</title><rect x="1358.0" y="229" width="6.2" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="1361.05" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QThreadStorageData::get (5 samples, 0.65%)</title><rect x="2699.9" y="85" width="30.9" height="23.0" fill="rgb(237,160,35)" rx="2" ry="2" />
<text text-anchor="" x="2702.91" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QT..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2640f (1 samples, 0.13%)</title><rect x="436.7" y="493" width="6.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="439.68" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e81f (2 samples, 0.26%)</title><rect x="498.5" y="493" width="12.4" height="23.0" fill="rgb(240,92,38)" rx="2" ry="2" />
<text text-anchor="" x="501.51" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedTexts (1 samples, 0.13%)</title><rect x="492.3" y="469" width="6.2" height="23.0" fill="rgb(239,180,38)" rx="2" ry="2" />
<text text-anchor="" x="495.33" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (773 samples, 100%)</title><rect x="10.0" y="541" width="4780.0" height="23.0" fill="rgb(255,230,55)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (3 samples, 0.39%)</title><rect x="4159.3" y="205" width="18.5" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="4162.26" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1b729a (1 samples, 0.13%)</title><rect x="164.6" y="493" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (13 samples, 1.68%)</title><rect x="2798.8" y="133" width="80.4" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="2801.85" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >malloc_ch..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e88f (3 samples, 0.39%)</title><rect x="541.8" y="493" width="18.5" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="544.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check (2 samples, 0.26%)</title><rect x="2563.9" y="181" width="12.3" height="23.0" fill="rgb(239,177,37)" rx="2" ry="2" />
<text text-anchor="" x="2566.87" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringRef::mid (1 samples, 0.13%)</title><rect x="2427.8" y="181" width="6.2" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="2430.83" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.13%)</title><rect x="294.5" y="469" width="6.1" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="297.45" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16926c (2 samples, 0.26%)</title><rect x="2761.7" y="181" width="12.4" height="23.0" fill="rgb(226,112,24)" rx="2" ry="2" />
<text text-anchor="" x="2764.75" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x128b31 (1 samples, 0.13%)</title><rect x="3540.9" y="205" width="6.2" height="23.0" fill="rgb(230,112,27)" rx="2" ry="2" />
<text text-anchor="" x="3543.89" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::id@plt (2 samples, 0.26%)</title><rect x="1494.1" y="253" width="12.4" height="23.0" fill="rgb(231,156,29)" rx="2" ry="2" />
<text text-anchor="" x="1497.09" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1faa80 (1 samples, 0.13%)</title><rect x="4487.0" y="205" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x229b6ff (1 samples, 0.13%)</title><rect x="177.0" y="493" width="6.1" height="23.0" fill="rgb(244,109,42)" rx="2" ry="2" />
<text text-anchor="" x="179.96" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RegExpr::doMatch (1 samples, 0.13%)</title><rect x="659.3" y="469" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="662.29" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::id (2 samples, 0.26%)</title><rect x="1481.7" y="253" width="12.4" height="23.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text text-anchor="" x="1484.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordList::isEmpty (2 samples, 0.26%)</title><rect x="2415.5" y="205" width="12.3" height="23.0" fill="rgb(243,156,42)" rx="2" ry="2" />
<text text-anchor="" x="2418.46" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedLength (2 samples, 0.26%)</title><rect x="3398.7" y="157" width="12.3" height="23.0" fill="rgb(236,180,34)" rx="2" ry="2" />
<text text-anchor="" x="3401.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateGrowingBlockSize (3 samples, 0.39%)</title><rect x="2959.6" y="133" width="18.6" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="2962.62" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordListRule::doMatch (3 samples, 0.39%)</title><rect x="628.4" y="469" width="18.5" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="631.37" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3f7ac341 (1 samples, 0.13%)</title><rect x="399.6" y="493" width="6.2" height="23.0" fill="rgb(228,92,25)" rx="2" ry="2" />
<text text-anchor="" x="402.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (11 samples, 1.42%)</title><rect x="3429.6" y="181" width="68.0" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="3432.59" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int_free</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectSpaces::doMatch (1 samples, 0.13%)</title><rect x="616.0" y="469" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="619.00" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (1 samples, 0.13%)</title><rect x="4536.5" y="181" width="6.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4539.47" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QReadWriteLock::lockForRead (1 samples, 0.13%)</title><rect x="3015.3" y="181" width="6.2" height="23.0" fill="rgb(241,180,40)" rx="2" ry="2" />
<text text-anchor="" x="3018.28" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.13%)</title><rect x="4598.3" y="85" width="6.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4601.31" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (3 samples, 0.39%)</title><rect x="3479.1" y="157" width="18.5" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3482.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::resize (1 samples, 0.13%)</title><rect x="4487.0" y="109" width="6.2" height="23.0" fill="rgb(245,218,44)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293c9 (3 samples, 0.39%)</title><rect x="2050.6" y="205" width="18.6" height="23.0" fill="rgb(240,112,39)" rx="2" ry="2" />
<text text-anchor="" x="2053.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (6 samples, 0.78%)</title><rect x="2910.2" y="133" width="37.1" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="2913.16" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::FoldingRegion::type (2 samples, 0.26%)</title><rect x="1438.4" y="229" width="12.4" height="23.0" fill="rgb(250,156,49)" rx="2" ry="2" />
<text text-anchor="" x="1441.43" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x12937e (1 samples, 0.13%)</title><rect x="1970.2" y="205" width="6.2" height="23.0" fill="rgb(251,112,50)" rx="2" ry="2" />
<text text-anchor="" x="1973.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (12 samples, 1.55%)</title><rect x="4245.8" y="205" width="74.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4248.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int_free</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x163aec (1 samples, 0.13%)</title><rect x="282.1" y="469" width="6.2" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="285.08" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighter::highlightLine (569 samples, 73.61%)</title><rect x="888.1" y="277" width="3518.5" height="23.0" fill="rgb(246,156,46)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::AbstractHighlighter::highlightLine</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x164242 (1 samples, 0.13%)</title><rect x="2755.6" y="181" width="6.1" height="23.0" fill="rgb(244,112,43)" rx="2" ry="2" />
<text text-anchor="" x="2758.56" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2chunk_check (1 samples, 0.13%)</title><rect x="4480.8" y="229" width="6.2" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="4483.82" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QReadWriteLock::unlock (1 samples, 0.13%)</title><rect x="2755.6" y="157" width="6.1" height="23.0" fill="rgb(240,180,39)" rx="2" ry="2" />
<text text-anchor="" x="2758.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>top_check (2 samples, 0.26%)</title><rect x="2866.9" y="109" width="12.3" height="23.0" fill="rgb(239,164,37)" rx="2" ry="2" />
<text text-anchor="" x="2869.87" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2d9610 (1 samples, 0.13%)</title><rect x="16.2" y="373" width="6.2" height="23.0" fill="rgb(231,109,29)" rx="2" ry="2" />
<text text-anchor="" x="19.18" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer&lt;KSyntaxHighlighting::FormatPrivate&gt;::~QExplicitlySharedDataPointer (4 samples, 0.52%)</title><rect x="3751.1" y="253" width="24.8" height="23.0" fill="rgb(240,206,38)" rx="2" ry="2" />
<text text-anchor="" x="3754.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.13%)</title><rect x="3417.2" y="61" width="6.2" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="3420.22" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="220.2" y="469" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="223.25" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x15df4 (1 samples, 0.13%)</title><rect x="34.7" y="421" width="6.2" height="23.0" fill="rgb(245,112,44)" rx="2" ry="2" />
<text text-anchor="" x="37.73" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1292bb (1 samples, 0.13%)</title><rect x="189.3" y="469" width="6.2" height="23.0" fill="rgb(228,112,26)" rx="2" ry="2" />
<text text-anchor="" x="192.33" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.39%)</title><rect x="4647.8" y="493" width="18.5" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="4650.77" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7 (9 samples, 1.16%)</title><rect x="300.6" y="493" width="55.7" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="303.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x129398 (4 samples, 0.52%)</title><rect x="1988.8" y="205" width="24.7" height="23.0" fill="rgb(240,112,38)" rx="2" ry="2" />
<text text-anchor="" x="1991.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (607 samples, 78.53%)</title><rect x="888.1" y="445" width="3753.5" height="23.0" fill="rgb(247,83,46)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DetectIdentifier::doMatch (1 samples, 0.13%)</title><rect x="609.8" y="469" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="612.82" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (2 samples, 0.26%)</title><rect x="4592.1" y="109" width="12.4" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="4595.12" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e68f (1 samples, 0.13%)</title><rect x="449.0" y="493" width="6.2" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="452.04" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2eab7 (1 samples, 0.13%)</title><rect x="820.1" y="493" width="6.1" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="823.06" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2mem_check (1 samples, 0.13%)</title><rect x="3386.3" y="133" width="6.2" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="3389.30" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::indexOf (3 samples, 0.39%)</title><rect x="1784.7" y="205" width="18.6" height="23.0" fill="rgb(249,166,48)" rx="2" ry="2" />
<text text-anchor="" x="1787.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a4942cf0a (1 samples, 0.13%)</title><rect x="424.3" y="493" width="6.2" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="427.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringRef::indexOf (16 samples, 2.07%)</title><rect x="2434.0" y="205" width="98.9" height="23.0" fill="rgb(249,166,48)" rx="2" ry="2" />
<text text-anchor="" x="2437.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QStringRef:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_sysdep_start (1 samples, 0.13%)</title><rect x="4641.6" y="445" width="6.2" height="23.0" fill="rgb(239,184,37)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topContext (1 samples, 0.13%)</title><rect x="3745.0" y="253" width="6.1" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="3747.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read (1 samples, 0.13%)</title><rect x="164.6" y="373" width="6.2" height="23.0" fill="rgb(241,184,40)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (2 samples, 0.26%)</title><rect x="2576.2" y="181" width="12.4" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="2579.24" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (15 samples, 1.94%)</title><rect x="40.9" y="493" width="92.8" height="23.0" fill="rgb(238,158,36)" rx="2" ry="2" />
<text text-anchor="" x="43.92" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_irq_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16926c (2 samples, 0.26%)</title><rect x="2545.3" y="181" width="12.4" height="23.0" fill="rgb(226,112,24)" rx="2" ry="2" />
<text text-anchor="" x="2548.32" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::match (116 samples, 15.01%)</title><rect x="2625.7" y="205" width="717.3" height="23.0" fill="rgb(242,180,41)" rx="2" ry="2" />
<text text-anchor="" x="2628.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QRegularExpression::match</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordList::contains (52 samples, 6.73%)</title><rect x="2093.9" y="205" width="321.6" height="23.0" fill="rgb(240,156,38)" rx="2" ry="2" />
<text text-anchor="" x="2096.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::KeywordList::contains</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x30d8a1f (1 samples, 0.13%)</title><rect x="251.2" y="493" width="6.1" height="23.0" fill="rgb(245,105,44)" rx="2" ry="2" />
<text text-anchor="" x="254.16" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Int::doMatch (1 samples, 0.13%)</title><rect x="1865.1" y="229" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1868.11" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextStream::readLineInto (12 samples, 1.55%)</title><rect x="4542.7" y="253" width="74.2" height="23.0" fill="rgb(245,170,44)" rx="2" ry="2" />
<text text-anchor="" x="4545.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QTextStr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringRef::indexOf (1 samples, 0.13%)</title><rect x="1852.7" y="205" width="6.2" height="23.0" fill="rgb(249,166,48)" rx="2" ry="2" />
<text text-anchor="" x="1855.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="838.6" y="469" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="841.62" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2e2c96 (1 samples, 0.13%)</title><rect x="170.8" y="445" width="6.2" height="23.0" fill="rgb(243,109,42)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::reallocData (1 samples, 0.13%)</title><rect x="4487.0" y="85" width="6.2" height="23.0" fill="rgb(235,218,33)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2ca37 (1 samples, 0.13%)</title><rect x="442.9" y="493" width="6.1" height="23.0" fill="rgb(237,92,36)" rx="2" ry="2" />
<text text-anchor="" x="445.86" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (1 samples, 0.13%)</title><rect x="28.6" y="349" width="6.1" height="23.0" fill="rgb(240,141,39)" rx="2" ry="2" />
<text text-anchor="" x="31.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash&lt;KSyntaxHighlighting::Rule*, (3 samples, 0.39%)</title><rect x="4505.5" y="277" width="18.6" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="4508.55" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.13%)</title><rect x="2192.8" y="109" width="6.2" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="2195.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (3 samples, 0.39%)</title><rect x="3411.0" y="85" width="18.6" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="3414.03" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (5 samples, 0.65%)</title><rect x="133.7" y="493" width="30.9" height="23.0" fill="rgb(238,167,36)" rx="2" ry="2" />
<text text-anchor="" x="136.67" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Context::fallthrough (1 samples, 0.13%)</title><rect x="1364.2" y="253" width="6.2" height="23.0" fill="rgb(237,156,35)" rx="2" ry="2" />
<text text-anchor="" x="1367.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::detach_helper (3 samples, 0.39%)</title><rect x="4177.8" y="253" width="18.6" height="23.0" fill="rgb(243,188,41)" rx="2" ry="2" />
<text text-anchor="" x="4180.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextStream::readLine (12 samples, 1.55%)</title><rect x="4542.7" y="277" width="74.2" height="23.0" fill="rgb(246,170,46)" rx="2" ry="2" />
<text text-anchor="" x="4545.65" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QTextStr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object_deps (1 samples, 0.13%)</title><rect x="4641.6" y="397" width="6.2" height="23.0" fill="rgb(240,184,39)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="504.7" y="469" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="507.70" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (1 samples, 0.13%)</title><rect x="288.3" y="469" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="291.27" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293a9 (1 samples, 0.13%)</title><rect x="1840.4" y="205" width="6.2" height="23.0" fill="rgb(230,112,28)" rx="2" ry="2" />
<text text-anchor="" x="1843.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2d9610 (1 samples, 0.13%)</title><rect x="10.0" y="469" width="6.2" height="23.0" fill="rgb(231,109,29)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighter::highlightLine (6 samples, 0.78%)</title><rect x="851.0" y="493" width="37.1" height="23.0" fill="rgb(246,156,46)" rx="2" ry="2" />
<text text-anchor="" x="853.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (3 samples, 0.39%)</title><rect x="4177.8" y="229" width="18.6" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4180.81" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_consolidate (1 samples, 0.13%)</title><rect x="2941.1" y="85" width="6.2" height="23.0" fill="rgb(245,112,45)" rx="2" ry="2" />
<text text-anchor="" x="2944.07" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::midRef (2 samples, 0.26%)</title><rect x="529.4" y="469" width="12.4" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="532.43" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedTexts (11 samples, 1.42%)</title><rect x="3361.6" y="205" width="68.0" height="23.0" fill="rgb(239,180,38)" rx="2" ry="2" />
<text text-anchor="" x="3364.57" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QRegula..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="238.8" y="469" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="241.80" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::QRegularExpression (5 samples, 0.65%)</title><rect x="3052.4" y="181" width="30.9" height="23.0" fill="rgb(247,180,46)" rx="2" ry="2" />
<text text-anchor="" x="3055.38" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QR..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x363647 (1 samples, 0.13%)</title><rect x="2953.4" y="181" width="6.2" height="23.0" fill="rgb(233,105,31)" rx="2" ry="2" />
<text text-anchor="" x="2956.44" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighterPrivate::ensureDefinitionLoaded (1 samples, 0.13%)</title><rect x="1290.0" y="253" width="6.2" height="23.0" fill="rgb(250,156,49)" rx="2" ry="2" />
<text text-anchor="" x="1293.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::WordDetect::doMatch (2 samples, 0.26%)</title><rect x="3596.5" y="229" width="12.4" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="3599.55" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>@plt (1 samples, 0.13%)</title><rect x="4289.1" y="181" width="6.2" height="23.0" fill="rgb(231,187,29)" rx="2" ry="2" />
<text text-anchor="" x="4292.12" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (19 samples, 2.46%)</title><rect x="4666.3" y="493" width="117.5" height="23.0" fill="rgb(238,158,36)" rx="2" ry="2" />
<text text-anchor="" x="4669.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_irq_ret..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3e5f644a (1 samples, 0.13%)</title><rect x="356.3" y="493" width="6.2" height="23.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text text-anchor="" x="359.29" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (9 samples, 1.16%)</title><rect x="4122.2" y="229" width="55.6" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="4125.16" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mallo..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QByteArray::fromRawData (1 samples, 0.13%)</title><rect x="4536.5" y="205" width="6.2" height="23.0" fill="rgb(235,218,33)" rx="2" ry="2" />
<text text-anchor="" x="4539.47" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x13eb9d (3 samples, 0.39%)</title><rect x="3373.9" y="181" width="18.6" height="23.0" fill="rgb(251,112,51)" rx="2" ry="2" />
<text text-anchor="" x="3376.93" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (3 samples, 0.39%)</title><rect x="3701.7" y="205" width="18.5" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="3704.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2ef259f (1 samples, 0.13%)</title><rect x="195.5" y="493" width="6.2" height="23.0" fill="rgb(245,109,44)" rx="2" ry="2" />
<text text-anchor="" x="198.51" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (1 samples, 0.13%)</title><rect x="170.8" y="373" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.39%)</title><rect x="467.6" y="469" width="18.5" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="470.59" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cxxabiv1::__si_class_type_info::__do_dyncast (1 samples, 0.13%)</title><rect x="4381.9" y="229" width="6.2" height="23.0" fill="rgb(238,144,36)" rx="2" ry="2" />
<text text-anchor="" x="4384.88" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash&lt;QString, (1 samples, 0.13%)</title><rect x="461.4" y="469" width="6.2" height="23.0" fill="rgb(242,188,40)" rx="2" ry="2" />
<text text-anchor="" x="464.41" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2fb2417 (1 samples, 0.13%)</title><rect x="207.9" y="493" width="6.2" height="23.0" fill="rgb(238,109,36)" rx="2" ry="2" />
<text text-anchor="" x="210.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::~Format (3 samples, 0.39%)</title><rect x="727.3" y="469" width="18.6" height="23.0" fill="rgb(233,156,31)" rx="2" ry="2" />
<text text-anchor="" x="730.31" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::~QFileDevice (1 samples, 0.13%)</title><rect x="4499.4" y="277" width="6.1" height="23.0" fill="rgb(246,172,46)" rx="2" ry="2" />
<text text-anchor="" x="4502.37" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (3 samples, 0.39%)</title><rect x="2959.6" y="157" width="18.6" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="2962.62" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2e28b0 (1 samples, 0.13%)</title><rect x="4487.0" y="157" width="6.2" height="23.0" fill="rgb(224,109,21)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::free_helper (20 samples, 2.59%)</title><rect x="4196.4" y="253" width="123.6" height="23.0" fill="rgb(243,188,41)" rx="2" ry="2" />
<text text-anchor="" x="4199.36" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHashData::free..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_start (1 samples, 0.13%)</title><rect x="4641.6" y="469" width="6.2" height="23.0" fill="rgb(239,184,37)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.13%)</title><rect x="170.8" y="349" width="6.2" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (18 samples, 2.33%)</title><rect x="3188.4" y="157" width="111.3" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="3191.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int_free</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (7 samples, 0.91%)</title><rect x="2254.7" y="85" width="43.3" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="2257.68" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::compare_helper (5 samples, 0.65%)</title><rect x="3547.1" y="205" width="30.9" height="23.0" fill="rgb(243,166,41)" rx="2" ry="2" />
<text text-anchor="" x="3550.08" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::close (1 samples, 0.13%)</title><rect x="4499.4" y="253" width="6.1" height="23.0" fill="rgb(245,172,44)" rx="2" ry="2" />
<text text-anchor="" x="4502.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x308663f (1 samples, 0.13%)</title><rect x="238.8" y="493" width="6.2" height="23.0" fill="rgb(239,105,38)" rx="2" ry="2" />
<text text-anchor="" x="241.80" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::LineContinue::doMatch (2 samples, 0.26%)</title><rect x="646.9" y="469" width="12.4" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="649.92" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Float::doMatch (2 samples, 0.26%)</title><rect x="1834.2" y="229" width="12.4" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1837.19" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (1 samples, 0.13%)</title><rect x="696.4" y="469" width="6.2" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="699.39" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2fff737 (1 samples, 0.13%)</title><rect x="214.1" y="493" width="6.1" height="23.0" fill="rgb(233,109,31)" rx="2" ry="2" />
<text text-anchor="" x="217.06" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (2 samples, 0.26%)</title><rect x="3373.9" y="133" width="12.4" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="3376.93" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x363101 (7 samples, 0.91%)</title><rect x="2699.9" y="157" width="43.3" height="23.0" fill="rgb(234,105,32)" rx="2" ry="2" />
<text text-anchor="" x="2702.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x36..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::midRef (3 samples, 0.39%)</title><rect x="789.1" y="469" width="18.6" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="792.15" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3622f8 (1 samples, 0.13%)</title><rect x="263.5" y="469" width="6.2" height="23.0" fill="rgb(239,105,38)" rx="2" ry="2" />
<text text-anchor="" x="266.53" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::FoldingRegion::isValid (2 samples, 0.26%)</title><rect x="1438.4" y="253" width="12.4" height="23.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text text-anchor="" x="1441.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFSFileEngine::isSequential (1 samples, 0.13%)</title><rect x="269.7" y="469" width="6.2" height="23.0" fill="rgb(224,166,21)" rx="2" ry="2" />
<text text-anchor="" x="272.72" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Detect2Char::doMatch (5 samples, 0.65%)</title><rect x="560.3" y="469" width="31.0" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="563.35" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2e2557 (1 samples, 0.13%)</title><rect x="4487.0" y="133" width="6.2" height="23.0" fill="rgb(232,109,30)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AnyChar::doMatch (4 samples, 0.52%)</title><rect x="1778.5" y="229" width="24.8" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1781.54" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::ContextSwitch::isStay (1 samples, 0.13%)</title><rect x="851.0" y="469" width="6.2" height="23.0" fill="rgb(237,156,36)" rx="2" ry="2" />
<text text-anchor="" x="853.98" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293b5 (1 samples, 0.13%)</title><rect x="2044.4" y="205" width="6.2" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="2047.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (3 samples, 0.39%)</title><rect x="3411.0" y="133" width="18.6" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="3414.03" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::isValid (3 samples, 0.39%)</title><rect x="1506.5" y="253" width="18.5" height="23.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text text-anchor="" x="1509.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16937d (2 samples, 0.26%)</title><rect x="2545.3" y="205" width="12.4" height="23.0" fill="rgb(252,112,52)" rx="2" ry="2" />
<text text-anchor="" x="2548.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (16 samples, 2.07%)</title><rect x="2199.0" y="109" width="99.0" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="2202.03" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >malloc_check</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331300 (14 samples, 1.81%)</title><rect x="2792.7" y="181" width="86.5" height="23.0" fill="rgb(234,105,32)" rx="2" ry="2" />
<text text-anchor="" x="2795.66" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x331300</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2eb3f (2 samples, 0.26%)</title><rect x="826.2" y="493" width="12.4" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="829.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x129388 (1 samples, 0.13%)</title><rect x="1976.4" y="205" width="6.2" height="23.0" fill="rgb(241,112,39)" rx="2" ry="2" />
<text text-anchor="" x="1979.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (3 samples, 0.39%)</title><rect x="2310.3" y="133" width="18.6" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="2313.34" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (1 samples, 0.13%)</title><rect x="170.8" y="397" width="6.2" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (2 samples, 0.26%)</title><rect x="2403.1" y="133" width="12.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="2406.09" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x37 (1 samples, 0.13%)</title><rect x="288.3" y="493" width="6.2" height="23.0" fill="rgb(238,105,36)" rx="2" ry="2" />
<text text-anchor="" x="291.27" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x14acf (607 samples, 78.53%)</title><rect x="888.1" y="373" width="3753.5" height="23.0" fill="rgb(250,112,50)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x14acf</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2eaaf (6 samples, 0.78%)</title><rect x="783.0" y="493" width="37.1" height="23.0" fill="rgb(240,92,39)" rx="2" ry="2" />
<text text-anchor="" x="785.96" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16937e (1 samples, 0.13%)</title><rect x="2557.7" y="205" width="6.2" height="23.0" fill="rgb(251,112,50)" rx="2" ry="2" />
<text text-anchor="" x="2560.68" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RegExpr::doMatch (1 samples, 0.13%)</title><rect x="1623.9" y="253" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1626.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (1 samples, 0.13%)</title><rect x="2594.8" y="205" width="6.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2597.79" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::HlCOct::doMatch (1 samples, 0.13%)</title><rect x="1858.9" y="229" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1861.93" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e817 (1 samples, 0.13%)</title><rect x="492.3" y="493" width="6.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="495.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::QList (5 samples, 0.65%)</title><rect x="3608.9" y="229" width="30.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3611.91" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QL..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (2 samples, 0.26%)</title><rect x="3002.9" y="157" width="12.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="3005.91" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.13%)</title><rect x="2934.9" y="85" width="6.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="2937.89" y="99.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="245.0" y="469" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="247.98" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::operator= (13 samples, 1.68%)</title><rect x="1525.0" y="253" width="80.4" height="23.0" fill="rgb(246,156,45)" rx="2" ry="2" />
<text text-anchor="" x="1528.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHi..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e80f (1 samples, 0.13%)</title><rect x="486.1" y="493" width="6.2" height="23.0" fill="rgb(241,92,40)" rx="2" ry="2" />
<text text-anchor="" x="489.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1f4bd4 (1 samples, 0.13%)</title><rect x="164.6" y="397" width="6.2" height="23.0" fill="rgb(249,112,48)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedEnd (1 samples, 0.13%)</title><rect x="498.5" y="469" width="6.2" height="23.0" fill="rgb(248,180,48)" rx="2" ry="2" />
<text text-anchor="" x="501.51" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x12939c (3 samples, 0.39%)</title><rect x="2013.5" y="205" width="18.6" height="23.0" fill="rgb(235,112,33)" rx="2" ry="2" />
<text text-anchor="" x="2016.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (3 samples, 0.39%)</title><rect x="4462.3" y="229" width="18.5" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4465.26" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>replaceCaptures (1 samples, 0.13%)</title><rect x="3497.6" y="205" width="6.2" height="23.0" fill="rgb(239,175,38)" rx="2" ry="2" />
<text text-anchor="" x="3500.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3f6c93d9 (1 samples, 0.13%)</title><rect x="393.4" y="493" width="6.2" height="23.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text text-anchor="" x="396.39" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x310325f (1 samples, 0.13%)</title><rect x="269.7" y="493" width="6.2" height="23.0" fill="rgb(240,105,38)" rx="2" ry="2" />
<text text-anchor="" x="272.72" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (1 samples, 0.13%)</title><rect x="257.3" y="469" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="260.35" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHashData::nextNode (1 samples, 0.13%)</title><rect x="4425.2" y="253" width="6.1" height="23.0" fill="rgb(250,188,49)" rx="2" ry="2" />
<text text-anchor="" x="4428.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (5 samples, 0.65%)</title><rect x="4456.1" y="253" width="30.9" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="4459.08" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3568b5 (7 samples, 0.91%)</title><rect x="2699.9" y="133" width="43.3" height="23.0" fill="rgb(233,105,31)" rx="2" ry="2" />
<text text-anchor="" x="2702.91" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x35..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (1 samples, 0.13%)</title><rect x="1345.7" y="229" width="6.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="1348.68" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QReadWriteLock::tryLockForWrite (2 samples, 0.26%)</title><rect x="3021.5" y="181" width="12.3" height="23.0" fill="rgb(240,180,38)" rx="2" ry="2" />
<text text-anchor="" x="3024.46" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::__introsort_loop&lt;KSyntaxHighlighting::Format*, (1 samples, 0.13%)</title><rect x="4406.6" y="253" width="6.2" height="23.0" fill="rgb(232,146,30)" rx="2" ry="2" />
<text text-anchor="" x="4409.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QListData::detach (3 samples, 0.39%)</title><rect x="3373.9" y="157" width="18.6" height="23.0" fill="rgb(247,142,46)" rx="2" ry="2" />
<text text-anchor="" x="3376.93" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (1 samples, 0.13%)</title><rect x="325.4" y="469" width="6.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="328.37" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x129379 (1 samples, 0.13%)</title><rect x="1964.0" y="205" width="6.2" height="23.0" fill="rgb(240,112,39)" rx="2" ry="2" />
<text text-anchor="" x="1967.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_start (608 samples, 78.65%)</title><rect x="888.1" y="493" width="3759.7" height="23.0" fill="rgb(239,139,37)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (1 samples, 0.13%)</title><rect x="844.8" y="469" width="6.2" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="847.80" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Detect2Char::doMatch (1 samples, 0.13%)</title><rect x="1803.3" y="229" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1806.27" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topContext (1 samples, 0.13%)</title><rect x="881.9" y="469" width="6.2" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="884.90" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strcmp (1 samples, 0.13%)</title><rect x="4641.6" y="301" width="6.2" height="23.0" fill="rgb(238,140,36)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2chunk_check (1 samples, 0.13%)</title><rect x="226.4" y="469" width="6.2" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="229.43" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2249897 (1 samples, 0.13%)</title><rect x="10.0" y="493" width="6.2" height="23.0" fill="rgb(238,109,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringRef::toString (26 samples, 3.36%)</title><rect x="2168.1" y="181" width="160.8" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2171.11" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QStringRef::toString</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::firstNonSpace (1 samples, 0.13%)</title><rect x="4431.3" y="277" width="6.2" height="23.0" fill="rgb(252,156,52)" rx="2" ry="2" />
<text text-anchor="" x="4434.35" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (11 samples, 1.42%)</title><rect x="3429.6" y="205" width="68.0" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="3432.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >free_ch..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (1 samples, 0.13%)</title><rect x="758.2" y="469" width="6.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="761.23" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::HlCHex::doMatch (2 samples, 0.26%)</title><rect x="1846.6" y="229" width="12.3" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1849.56" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16926c (1 samples, 0.13%)</title><rect x="2539.1" y="205" width="6.2" height="23.0" fill="rgb(226,112,24)" rx="2" ry="2" />
<text text-anchor="" x="2542.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::WordDetect::doMatch (2 samples, 0.26%)</title><rect x="684.0" y="469" width="12.4" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::setUnicode (11 samples, 1.42%)</title><rect x="4548.8" y="229" width="68.1" height="23.0" fill="rgb(250,166,49)" rx="2" ry="2" />
<text text-anchor="" x="4551.84" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QString..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qCalculateBlockSize (2 samples, 0.26%)</title><rect x="2298.0" y="109" width="12.3" height="23.0" fill="rgb(245,197,44)" rx="2" ry="2" />
<text text-anchor="" x="2300.97" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedEnd (1 samples, 0.13%)</title><rect x="3398.7" y="133" width="6.2" height="23.0" fill="rgb(248,180,48)" rx="2" ry="2" />
<text text-anchor="" x="3401.67" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dl_main (1 samples, 0.13%)</title><rect x="4641.6" y="421" width="6.2" height="23.0" fill="rgb(247,149,46)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (4 samples, 0.52%)</title><rect x="16.2" y="469" width="24.7" height="23.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text text-anchor="" x="19.18" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::captured (6 samples, 0.78%)</title><rect x="3392.5" y="181" width="37.1" height="23.0" fill="rgb(248,180,47)" rx="2" ry="2" />
<text text-anchor="" x="3395.48" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QRe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (20 samples, 2.59%)</title><rect x="2186.7" y="133" width="123.6" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="2189.66" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QArrayData::all..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293f5 (1 samples, 0.13%)</title><rect x="1778.5" y="205" width="6.2" height="23.0" fill="rgb(244,112,43)" rx="2" ry="2" />
<text text-anchor="" x="1781.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x28c964 (1 samples, 0.13%)</title><rect x="4530.3" y="229" width="6.2" height="23.0" fill="rgb(234,109,32)" rx="2" ry="2" />
<text text-anchor="" x="4533.28" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x229b8ff (1 samples, 0.13%)</title><rect x="183.1" y="493" width="6.2" height="23.0" fill="rgb(242,109,41)" rx="2" ry="2" />
<text text-anchor="" x="186.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331350 (1 samples, 0.13%)</title><rect x="2885.4" y="181" width="6.2" height="23.0" fill="rgb(229,105,26)" rx="2" ry="2" />
<text text-anchor="" x="2888.42" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3eb83c47 (1 samples, 0.13%)</title><rect x="381.0" y="493" width="6.2" height="23.0" fill="rgb(235,92,33)" rx="2" ry="2" />
<text text-anchor="" x="384.02" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (3 samples, 0.39%)</title><rect x="4388.1" y="229" width="18.5" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4391.06" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>highlighter_ben (748 samples, 96.77%)</title><rect x="164.6" y="517" width="4625.4" height="23.0" fill="rgb(251,145,51)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >highlighter_ben</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x2e36c0 (1 samples, 0.13%)</title><rect x="170.8" y="469" width="6.2" height="23.0" fill="rgb(236,109,35)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x129393 (1 samples, 0.13%)</title><rect x="1982.6" y="205" width="6.2" height="23.0" fill="rgb(248,112,48)" rx="2" ry="2" />
<text text-anchor="" x="1985.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dynamic_cast (1 samples, 0.13%)</title><rect x="4381.9" y="253" width="6.2" height="23.0" fill="rgb(238,141,36)" rx="2" ry="2" />
<text text-anchor="" x="4384.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::match (1 samples, 0.13%)</title><rect x="517.1" y="469" width="6.1" height="23.0" fill="rgb(242,180,41)" rx="2" ry="2" />
<text text-anchor="" x="520.06" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x129417 (3 samples, 0.39%)</title><rect x="2075.4" y="205" width="18.5" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="2078.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.13%)</title><rect x="201.7" y="469" width="6.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="204.69" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Definition::formats (1 samples, 0.13%)</title><rect x="4406.6" y="277" width="6.2" height="23.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text text-anchor="" x="4409.61" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3630f5 (1 samples, 0.13%)</title><rect x="2687.5" y="157" width="6.2" height="23.0" fill="rgb(246,105,45)" rx="2" ry="2" />
<text text-anchor="" x="2690.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1693b6 (4 samples, 0.52%)</title><rect x="2563.9" y="205" width="24.7" height="23.0" fill="rgb(234,112,32)" rx="2" ry="2" />
<text text-anchor="" x="2566.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (4 samples, 0.52%)</title><rect x="16.2" y="493" width="24.7" height="23.0" fill="rgb(251,144,50)" rx="2" ry="2" />
<text text-anchor="" x="19.18" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3e7222c5 (1 samples, 0.13%)</title><rect x="368.7" y="493" width="6.1" height="23.0" fill="rgb(248,92,47)" rx="2" ry="2" />
<text text-anchor="" x="371.65" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::resize (1 samples, 0.13%)</title><rect x="807.7" y="469" width="6.2" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="810.70" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordListRule::doMatch (1 samples, 0.13%)</title><rect x="1617.8" y="253" width="6.1" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1620.76" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (2 samples, 0.26%)</title><rect x="4629.2" y="277" width="12.4" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="4632.22" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevice::open (1 samples, 0.13%)</title><rect x="4493.2" y="253" width="6.2" height="23.0" fill="rgb(250,164,49)" rx="2" ry="2" />
<text text-anchor="" x="4496.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3311b0 (3 samples, 0.39%)</title><rect x="2774.1" y="181" width="18.6" height="23.0" fill="rgb(229,105,26)" rx="2" ry="2" />
<text text-anchor="" x="2777.11" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc_check (3 samples, 0.39%)</title><rect x="4585.9" y="133" width="18.6" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="4588.94" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x163ae5 (10 samples, 1.29%)</title><rect x="2681.4" y="181" width="61.8" height="23.0" fill="rgb(246,112,46)" rx="2" ry="2" />
<text text-anchor="" x="2684.36" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x163ae5</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (24 samples, 3.10%)</title><rect x="2180.5" y="157" width="148.4" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="2183.48" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QString::QString</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QExplicitlySharedDataPointer&lt;KSyntaxHighlighting::StateData&gt;::detach_helper (5 samples, 0.65%)</title><rect x="3689.3" y="229" width="30.9" height="23.0" fill="rgb(243,206,41)" rx="2" ry="2" />
<text text-anchor="" x="3692.30" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QE..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTest::QBenchmarkIterationController::isDone (1 samples, 0.13%)</title><rect x="4524.1" y="277" width="6.2" height="23.0" fill="rgb(251,170,50)" rx="2" ry="2" />
<text text-anchor="" x="4527.10" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (1 samples, 0.13%)</title><rect x="232.6" y="469" width="6.2" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="235.61" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x30820ef (1 samples, 0.13%)</title><rect x="232.6" y="493" width="6.2" height="23.0" fill="rgb(249,105,48)" rx="2" ry="2" />
<text text-anchor="" x="235.61" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedStart (1 samples, 0.13%)</title><rect x="3404.9" y="133" width="6.1" height="23.0" fill="rgb(239,180,37)" rx="2" ry="2" />
<text text-anchor="" x="3407.85" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (3 samples, 0.39%)</title><rect x="2928.7" y="109" width="18.6" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="2931.71" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QWaitCondition::wait (3 samples, 0.39%)</title><rect x="16.2" y="397" width="18.5" height="23.0" fill="rgb(237,168,35)" rx="2" ry="2" />
<text text-anchor="" x="19.18" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qHash (1 samples, 0.13%)</title><rect x="455.2" y="469" width="6.2" height="23.0" fill="rgb(241,172,40)" rx="2" ry="2" />
<text text-anchor="" x="458.23" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::match (327 samples, 42.30%)</title><rect x="1661.0" y="253" width="2022.1" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1664.05" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::Rule::match</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.13%)</title><rect x="2792.7" y="133" width="6.1" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="2795.66" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::QList (1 samples, 0.13%)</title><rect x="2588.6" y="205" width="6.2" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="2591.60" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QMetaMethod::invoke (607 samples, 78.53%)</title><rect x="888.1" y="325" width="3753.5" height="23.0" fill="rgb(242,205,41)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QMetaMethod::invoke</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x9975d (3 samples, 0.39%)</title><rect x="2959.6" y="181" width="18.6" height="23.0" fill="rgb(240,86,38)" rx="2" ry="2" />
<text text-anchor="" x="2962.62" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QXmlStreamReader::readNext (1 samples, 0.13%)</title><rect x="449.0" y="469" width="6.2" height="23.0" fill="rgb(230,218,27)" rx="2" ry="2" />
<text text-anchor="" x="452.04" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.13%)</title><rect x="4635.4" y="229" width="6.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4638.41" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293a9 (2 samples, 0.26%)</title><rect x="2032.1" y="205" width="12.3" height="23.0" fill="rgb(230,112,28)" rx="2" ry="2" />
<text text-anchor="" x="2035.07" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::KeywordListRule::doMatch (107 samples, 13.84%)</title><rect x="1871.3" y="229" width="661.6" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1874.29" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::KeywordListRule::doMatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x997ad (1 samples, 0.13%)</title><rect x="2978.2" y="181" width="6.2" height="23.0" fill="rgb(240,86,38)" rx="2" ry="2" />
<text text-anchor="" x="2981.18" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Repository::definitionForFileName (2 samples, 0.26%)</title><rect x="4419.0" y="277" width="12.3" height="23.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text text-anchor="" x="4421.98" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331469 (1 samples, 0.13%)</title><rect x="2904.0" y="181" width="6.2" height="23.0" fill="rgb(229,105,26)" rx="2" ry="2" />
<text text-anchor="" x="2906.97" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::RegExpr::doMatch (157 samples, 20.31%)</title><rect x="2532.9" y="229" width="970.9" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="2535.95" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHighlighting::RegExpr::doMatch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash&lt;QString, (10 samples, 1.29%)</title><rect x="2106.3" y="181" width="61.8" height="23.0" fill="rgb(242,188,40)" rx="2" ry="2" />
<text text-anchor="" x="2109.27" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHash&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector&lt;QPair&lt;KSyntaxHighlighting::Context*, (1 samples, 0.13%)</title><rect x="1351.9" y="229" width="6.1" height="23.0" fill="rgb(232,160,30)" rx="2" ry="2" />
<text text-anchor="" x="1354.86" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::~Format (1 samples, 0.13%)</title><rect x="4412.8" y="277" width="6.2" height="23.0" fill="rgb(233,156,31)" rx="2" ry="2" />
<text text-anchor="" x="4415.79" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e85f (5 samples, 0.65%)</title><rect x="510.9" y="493" width="30.9" height="23.0" fill="rgb(236,92,34)" rx="2" ry="2" />
<text text-anchor="" x="513.88" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::escape (1 samples, 0.13%)</title><rect x="3497.6" y="181" width="6.2" height="23.0" fill="rgb(250,180,49)" rx="2" ry="2" />
<text text-anchor="" x="3500.61" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e9bf (1 samples, 0.13%)</title><rect x="696.4" y="493" width="6.2" height="23.0" fill="rgb(234,92,32)" rx="2" ry="2" />
<text text-anchor="" x="699.39" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x211892 (1 samples, 0.13%)</title><rect x="4487.0" y="229" width="6.2" height="23.0" fill="rgb(247,109,46)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::mid (3 samples, 0.39%)</title><rect x="3411.0" y="157" width="18.6" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="3414.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StringDetect::doMatch (15 samples, 1.94%)</title><rect x="3503.8" y="229" width="92.7" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="3506.79" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntaxHigh..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextStream::QTextStream (2 samples, 0.26%)</title><rect x="4530.3" y="277" width="12.4" height="23.0" fill="rgb(225,170,23)" rx="2" ry="2" />
<text text-anchor="" x="4533.28" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.13%)</title><rect x="813.9" y="469" width="6.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="816.88" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (3 samples, 0.39%)</title><rect x="764.4" y="469" width="18.6" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="767.41" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (3 samples, 0.39%)</title><rect x="3411.0" y="109" width="18.6" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="3414.03" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::toLocal8Bit_helper (1 samples, 0.13%)</title><rect x="4487.0" y="181" width="6.2" height="23.0" fill="rgb(243,166,41)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3621a9 (1 samples, 0.13%)</title><rect x="2681.4" y="157" width="6.1" height="23.0" fill="rgb(232,105,29)" rx="2" ry="2" />
<text text-anchor="" x="2684.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (2 samples, 0.26%)</title><rect x="2285.6" y="61" width="12.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="2288.60" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (5 samples, 0.65%)</title><rect x="3312.1" y="181" width="30.9" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="3315.10" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >op..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3eb7eb1f (1 samples, 0.13%)</title><rect x="374.8" y="493" width="6.2" height="23.0" fill="rgb(244,92,43)" rx="2" ry="2" />
<text text-anchor="" x="377.84" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_dl_map_object (1 samples, 0.13%)</title><rect x="4641.6" y="325" width="6.2" height="23.0" fill="rgb(241,184,39)" rx="2" ry="2" />
<text text-anchor="" x="4644.59" y="339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x129290 (1 samples, 0.13%)</title><rect x="1933.1" y="205" width="6.2" height="23.0" fill="rgb(237,112,35)" rx="2" ry="2" />
<text text-anchor="" x="1936.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Context::rules (7 samples, 0.91%)</title><rect x="1376.6" y="253" width="43.3" height="23.0" fill="rgb(244,156,43)" rx="2" ry="2" />
<text text-anchor="" x="1379.60" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QIODevicePrivate::read (1 samples, 0.13%)</title><rect x="164.6" y="469" width="6.2" height="23.0" fill="rgb(241,164,40)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::utf16 (1 samples, 0.13%)</title><rect x="3083.3" y="181" width="6.2" height="23.0" fill="rgb(238,166,36)" rx="2" ry="2" />
<text text-anchor="" x="3086.30" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x163920 (1 samples, 0.13%)</title><rect x="251.2" y="469" width="6.1" height="23.0" fill="rgb(228,112,25)" rx="2" ry="2" />
<text text-anchor="" x="254.16" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_disable_asynccancel (1 samples, 0.13%)</title><rect x="164.6" y="349" width="6.2" height="23.0" fill="rgb(236,154,34)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1b7428 (1 samples, 0.13%)</title><rect x="170.8" y="493" width="6.2" height="23.0" fill="rgb(235,112,33)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2ea4f (13 samples, 1.68%)</title><rect x="702.6" y="493" width="80.4" height="23.0" fill="rgb(242,92,40)" rx="2" ry="2" />
<text text-anchor="" x="705.57" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7ffd30a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331465 (1 samples, 0.13%)</title><rect x="2897.8" y="181" width="6.2" height="23.0" fill="rgb(236,105,34)" rx="2" ry="2" />
<text text-anchor="" x="2900.79" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::reallocData (6 samples, 0.78%)</title><rect x="4567.4" y="181" width="37.1" height="23.0" fill="rgb(235,166,33)" rx="2" ry="2" />
<text text-anchor="" x="4570.39" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QSt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::operator=@plt (2 samples, 0.26%)</title><rect x="1605.4" y="253" width="12.4" height="23.0" fill="rgb(231,156,29)" rx="2" ry="2" />
<text text-anchor="" x="1608.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::DefinitionRef::DefinitionRef (1 samples, 0.13%)</title><rect x="1419.9" y="253" width="6.2" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="1422.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x16925d (1 samples, 0.13%)</title><rect x="510.9" y="469" width="6.2" height="23.0" fill="rgb(243,112,42)" rx="2" ry="2" />
<text text-anchor="" x="513.88" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTextStream::~QTextStream (1 samples, 0.13%)</title><rect x="4616.9" y="277" width="6.1" height="23.0" fill="rgb(225,170,23)" rx="2" ry="2" />
<text text-anchor="" x="4619.86" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2chunk_check (2 samples, 0.26%)</title><rect x="3299.7" y="157" width="12.4" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="3302.73" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x163946 (5 samples, 0.65%)</title><rect x="2699.9" y="109" width="30.9" height="23.0" fill="rgb(232,112,30)" rx="2" ry="2" />
<text text-anchor="" x="2702.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x329ef9f (1 samples, 0.13%)</title><rect x="282.1" y="493" width="6.2" height="23.0" fill="rgb(245,105,44)" rx="2" ry="2" />
<text text-anchor="" x="285.08" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::Format (5 samples, 0.65%)</title><rect x="1450.8" y="253" width="30.9" height="23.0" fill="rgb(233,156,31)" rx="2" ry="2" />
<text text-anchor="" x="1453.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (1 samples, 0.13%)</title><rect x="4171.6" y="181" width="6.2" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4174.63" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (18 samples, 2.33%)</title><rect x="4208.7" y="229" width="111.3" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="4211.73" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >free_check.pa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedStart (3 samples, 0.39%)</title><rect x="3343.0" y="205" width="18.6" height="23.0" fill="rgb(239,180,37)" rx="2" ry="2" />
<text text-anchor="" x="3346.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::requiredColumn (1 samples, 0.13%)</title><rect x="3683.1" y="253" width="6.2" height="23.0" fill="rgb(237,156,36)" rx="2" ry="2" />
<text text-anchor="" x="3686.12" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x15df1 (3 samples, 0.39%)</title><rect x="16.2" y="421" width="18.5" height="23.0" fill="rgb(233,112,31)" rx="2" ry="2" />
<text text-anchor="" x="19.18" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3fffffff (1 samples, 0.13%)</title><rect x="294.5" y="493" width="6.1" height="23.0" fill="rgb(244,105,42)" rx="2" ry="2" />
<text text-anchor="" x="297.45" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x997e9 (2 samples, 0.26%)</title><rect x="3002.9" y="181" width="12.4" height="23.0" fill="rgb(235,86,33)" rx="2" ry="2" />
<text text-anchor="" x="3005.91" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (5 samples, 0.65%)</title><rect x="2836.0" y="109" width="30.9" height="23.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text text-anchor="" x="2838.95" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2mem_check (1 samples, 0.13%)</title><rect x="2947.3" y="133" width="6.1" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="2950.26" y="147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::requiredColumn (1 samples, 0.13%)</title><rect x="306.8" y="469" width="6.2" height="23.0" fill="rgb(237,156,36)" rx="2" ry="2" />
<text text-anchor="" x="309.82" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0xb60cd (4 samples, 0.52%)</title><rect x="16.2" y="445" width="24.7" height="23.0" fill="rgb(255,109,55)" rx="2" ry="2" />
<text text-anchor="" x="19.18" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x128759 (1 samples, 0.13%)</title><rect x="3565.6" y="181" width="6.2" height="23.0" fill="rgb(228,112,25)" rx="2" ry="2" />
<text text-anchor="" x="3568.63" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QStringRef::mid (2 samples, 0.26%)</title><rect x="3584.2" y="181" width="12.3" height="23.0" fill="rgb(247,166,46)" rx="2" ry="2" />
<text text-anchor="" x="3587.18" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1641c7 (1 samples, 0.13%)</title><rect x="2743.2" y="181" width="6.2" height="23.0" fill="rgb(245,112,44)" rx="2" ry="2" />
<text text-anchor="" x="2746.20" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::State::~State (1 samples, 0.13%)</title><rect x="752.0" y="469" width="6.2" height="23.0" fill="rgb(245,156,45)" rx="2" ry="2" />
<text text-anchor="" x="755.04" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (2 samples, 0.26%)</title><rect x="4604.5" y="205" width="12.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4607.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (1 samples, 0.13%)</title><rect x="4449.9" y="253" width="6.2" height="23.0" fill="rgb(231,177,29)" rx="2" ry="2" />
<text text-anchor="" x="4452.90" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::lastCapturedIndex (1 samples, 0.13%)</title><rect x="3355.4" y="181" width="6.2" height="23.0" fill="rgb(250,180,49)" rx="2" ry="2" />
<text text-anchor="" x="3358.38" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x331d46 (1 samples, 0.13%)</title><rect x="436.7" y="469" width="6.2" height="23.0" fill="rgb(236,105,34)" rx="2" ry="2" />
<text text-anchor="" x="439.68" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.26%)</title><rect x="2576.2" y="157" width="12.4" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="2579.24" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check (1 samples, 0.13%)</title><rect x="2335.1" y="181" width="6.2" height="23.0" fill="rgb(239,177,37)" rx="2" ry="2" />
<text text-anchor="" x="2338.07" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (2 samples, 0.26%)</title><rect x="4468.4" y="205" width="12.4" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4471.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpressionMatch::capturedStart (1 samples, 0.13%)</title><rect x="541.8" y="469" width="6.2" height="23.0" fill="rgb(239,180,37)" rx="2" ry="2" />
<text text-anchor="" x="544.80" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::firstNonSpace (1 samples, 0.13%)</title><rect x="745.9" y="469" width="6.1" height="23.0" fill="rgb(252,156,52)" rx="2" ry="2" />
<text text-anchor="" x="748.86" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.13%)</title><rect x="4116.0" y="229" width="6.2" height="23.0" fill="rgb(238,112,36)" rx="2" ry="2" />
<text text-anchor="" x="4118.98" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Definition::Definition (1 samples, 0.13%)</title><rect x="4419.0" y="253" width="6.2" height="23.0" fill="rgb(247,156,46)" rx="2" ry="2" />
<text text-anchor="" x="4421.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash&lt;KSyntaxHighlighting::Rule*, (55 samples, 7.12%)</title><rect x="3775.9" y="253" width="340.1" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="3778.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QHash&lt;KSyntaxHighlighting::Rule*,</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free@plt (2 samples, 0.26%)</title><rect x="3095.7" y="181" width="12.3" height="23.0" fill="rgb(231,177,29)" rx="2" ry="2" />
<text text-anchor="" x="3098.67" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector&lt;std::shared_ptr&lt;KSyntaxHighlighting::Rule&gt; (5 samples, 0.65%)</title><rect x="1389.0" y="229" width="30.9" height="23.0" fill="rgb(249,160,48)" rx="2" ry="2" />
<text text-anchor="" x="1391.97" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QV..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem2chunk_check (1 samples, 0.13%)</title><rect x="195.5" y="469" width="6.2" height="23.0" fill="rgb(239,144,37)" rx="2" ry="2" />
<text text-anchor="" x="198.51" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>top_check (1 samples, 0.13%)</title><rect x="3423.4" y="61" width="6.2" height="23.0" fill="rgb(239,164,37)" rx="2" ry="2" />
<text text-anchor="" x="3426.40" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QFileDevice::readData (1 samples, 0.13%)</title><rect x="164.6" y="445" width="6.2" height="23.0" fill="rgb(235,172,33)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::midRef (1 samples, 0.13%)</title><rect x="2427.8" y="205" width="6.2" height="23.0" fill="rgb(242,166,41)" rx="2" ry="2" />
<text text-anchor="" x="2430.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e7cf (1 samples, 0.13%)</title><rect x="461.4" y="493" width="6.2" height="23.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="464.41" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Rule::context (5 samples, 0.65%)</title><rect x="1630.1" y="253" width="30.9" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="1633.13" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topContext (1 samples, 0.13%)</title><rect x="313.0" y="469" width="6.2" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="316.00" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (1 samples, 0.13%)</title><rect x="183.1" y="469" width="6.2" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="186.14" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>HighlighterBenchmark::qt_static_metacall (607 samples, 78.53%)</title><rect x="888.1" y="301" width="3753.5" height="23.0" fill="rgb(230,161,28)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >HighlighterBenchmark::qt_static_metacall</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3ede303c (1 samples, 0.13%)</title><rect x="387.2" y="493" width="6.2" height="23.0" fill="rgb(231,92,29)" rx="2" ry="2" />
<text text-anchor="" x="390.21" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x12875c (1 samples, 0.13%)</title><rect x="3571.8" y="181" width="6.2" height="23.0" fill="rgb(224,112,21)" rx="2" ry="2" />
<text text-anchor="" x="3574.81" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strchr_avx2 (1 samples, 0.13%)</title><rect x="4530.3" y="205" width="6.2" height="23.0" fill="rgb(237,132,35)" rx="2" ry="2" />
<text text-anchor="" x="4533.28" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Format::id (1 samples, 0.13%)</title><rect x="721.1" y="469" width="6.2" height="23.0" fill="rgb(241,156,40)" rx="2" ry="2" />
<text text-anchor="" x="724.13" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x30ff58f (1 samples, 0.13%)</title><rect x="257.3" y="493" width="6.2" height="23.0" fill="rgb(246,105,46)" rx="2" ry="2" />
<text text-anchor="" x="260.35" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3630f8 (1 samples, 0.13%)</title><rect x="2693.7" y="157" width="6.2" height="23.0" fill="rgb(241,105,39)" rx="2" ry="2" />
<text text-anchor="" x="2696.73" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::compare_helper (2 samples, 0.26%)</title><rect x="548.0" y="469" width="12.3" height="23.0" fill="rgb(243,166,41)" rx="2" ry="2" />
<text text-anchor="" x="550.98" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::State::operator= (8 samples, 1.03%)</title><rect x="4437.5" y="277" width="49.5" height="23.0" fill="rgb(246,156,45)" rx="2" ry="2" />
<text text-anchor="" x="4440.53" y="291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyn..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::allocate (4 samples, 0.52%)</title><rect x="4579.8" y="157" width="24.7" height="23.0" fill="rgb(245,152,45)" rx="2" ry="2" />
<text text-anchor="" x="4582.75" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (30 samples, 3.88%)</title><rect x="3126.6" y="181" width="185.5" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="3129.58" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >free_check.part.7</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (1 samples, 0.13%)</title><rect x="207.9" y="469" width="6.2" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="210.88" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x27884e7 (1 samples, 0.13%)</title><rect x="189.3" y="493" width="6.2" height="23.0" fill="rgb(241,109,39)" rx="2" ry="2" />
<text text-anchor="" x="192.33" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1292b4 (1 samples, 0.13%)</title><rect x="1939.3" y="205" width="6.2" height="23.0" fill="rgb(239,112,37)" rx="2" ry="2" />
<text text-anchor="" x="1942.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd30a2e8ff (22 samples, 2.85%)</title><rect x="560.3" y="493" width="136.1" height="23.0" fill="rgb(242,92,41)" rx="2" ry="2" />
<text text-anchor="" x="563.35" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x7ffd30a2e8ff</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (4 samples, 0.52%)</title><rect x="4295.3" y="181" width="24.7" height="23.0" fill="rgb(231,151,28)" rx="2" ry="2" />
<text text-anchor="" x="4298.30" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StringDetect::doMatch (3 samples, 0.39%)</title><rect x="665.5" y="469" width="18.5" height="23.0" fill="rgb(242,156,41)" rx="2" ry="2" />
<text text-anchor="" x="668.47" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Definition::isValid (1 samples, 0.13%)</title><rect x="1290.0" y="229" width="6.2" height="23.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text text-anchor="" x="1293.03" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>operator (1 samples, 0.13%)</title><rect x="4783.8" y="493" width="6.2" height="23.0" fill="rgb(241,195,39)" rx="2" ry="2" />
<text text-anchor="" x="4786.82" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QHash&lt;KSyntaxHighlighting::Rule*, (1 samples, 0.13%)</title><rect x="319.2" y="469" width="6.2" height="23.0" fill="rgb(234,188,32)" rx="2" ry="2" />
<text text-anchor="" x="322.18" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x3311ce (7 samples, 0.91%)</title><rect x="2910.2" y="157" width="43.2" height="23.0" fill="rgb(252,105,52)" rx="2" ry="2" />
<text text-anchor="" x="2913.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x33..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::QString (1 samples, 0.13%)</title><rect x="170.8" y="421" width="6.2" height="23.0" fill="rgb(243,166,42)" rx="2" ry="2" />
<text text-anchor="" x="173.78" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1641ce (1 samples, 0.13%)</title><rect x="2749.4" y="181" width="6.2" height="23.0" fill="rgb(252,112,52)" rx="2" ry="2" />
<text text-anchor="" x="2752.38" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::StateData::topCaptures (4 samples, 0.52%)</title><rect x="3720.2" y="253" width="24.8" height="23.0" fill="rgb(239,156,38)" rx="2" ry="2" />
<text text-anchor="" x="3723.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >K..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::Context::fallthroughContext (1 samples, 0.13%)</title><rect x="1370.4" y="253" width="6.2" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="1373.41" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check (3 samples, 0.39%)</title><rect x="3108.0" y="181" width="18.6" height="23.0" fill="rgb(239,177,37)" rx="2" ry="2" />
<text text-anchor="" x="3111.03" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighterPrivate::switchContext (11 samples, 1.42%)</title><rect x="1296.2" y="253" width="68.0" height="23.0" fill="rgb(230,156,27)" rx="2" ry="2" />
<text text-anchor="" x="1299.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >KSyntax..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_check.part.7 (3 samples, 0.39%)</title><rect x="4388.1" y="253" width="18.5" height="23.0" fill="rgb(238,177,36)" rx="2" ry="2" />
<text text-anchor="" x="4391.06" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QArrayData::reallocateUnaligned (1 samples, 0.13%)</title><rect x="4487.0" y="61" width="6.2" height="23.0" fill="rgb(251,152,51)" rx="2" ry="2" />
<text text-anchor="" x="4490.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree@GLIBC_2.2.5 (1 samples, 0.13%)</title><rect x="2328.9" y="181" width="6.2" height="23.0" fill="rgb(246,123,45)" rx="2" ry="2" />
<text text-anchor="" x="2331.89" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3f939369 (1 samples, 0.13%)</title><rect x="418.1" y="493" width="6.2" height="23.0" fill="rgb(229,92,27)" rx="2" ry="2" />
<text text-anchor="" x="421.12" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x21206d (1 samples, 0.13%)</title><rect x="164.6" y="421" width="6.2" height="23.0" fill="rgb(244,109,42)" rx="2" ry="2" />
<text text-anchor="" x="167.59" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::FoldingRegion::isValid (1 samples, 0.13%)</title><rect x="300.6" y="469" width="6.2" height="23.0" fill="rgb(248,156,47)" rx="2" ry="2" />
<text text-anchor="" x="303.63" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x30cfc5f (1 samples, 0.13%)</title><rect x="245.0" y="493" width="6.2" height="23.0" fill="rgb(239,105,38)" rx="2" ry="2" />
<text text-anchor="" x="247.98" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x13dc9 (607 samples, 78.53%)</title><rect x="888.1" y="349" width="3753.5" height="23.0" fill="rgb(240,112,38)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >0x13dc9</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x128a62 (1 samples, 0.13%)</title><rect x="783.0" y="469" width="6.1" height="23.0" fill="rgb(243,112,42)" rx="2" ry="2" />
<text text-anchor="" x="785.96" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x28caf7 (1 samples, 0.13%)</title><rect x="4536.5" y="229" width="6.2" height="23.0" fill="rgb(242,109,41)" rx="2" ry="2" />
<text text-anchor="" x="4539.47" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x997da (1 samples, 0.13%)</title><rect x="2996.7" y="181" width="6.2" height="23.0" fill="rgb(236,86,35)" rx="2" ry="2" />
<text text-anchor="" x="2999.73" y="195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1293b5 (1 samples, 0.13%)</title><rect x="3602.7" y="205" width="6.2" height="23.0" fill="rgb(236,112,34)" rx="2" ry="2" />
<text text-anchor="" x="3605.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QTest::qExec (607 samples, 78.53%)</title><rect x="888.1" y="421" width="3753.5" height="23.0" fill="rgb(237,170,35)" rx="2" ry="2" />
<text text-anchor="" x="891.09" y="435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QTest::qExec</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (5 samples, 0.65%)</title><rect x="4351.0" y="253" width="30.9" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="4353.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QL..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7ffd3fffffff (2 samples, 0.26%)</title><rect x="838.6" y="493" width="12.4" height="23.0" fill="rgb(244,92,42)" rx="2" ry="2" />
<text text-anchor="" x="841.62" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x1292c3 (3 samples, 0.39%)</title><rect x="1945.5" y="205" width="18.5" height="23.0" fill="rgb(251,112,51)" rx="2" ry="2" />
<text text-anchor="" x="1948.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QRegularExpression::QRegularExpression (4 samples, 0.52%)</title><rect x="2601.0" y="205" width="24.7" height="23.0" fill="rgb(247,180,46)" rx="2" ry="2" />
<text text-anchor="" x="2603.97" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QList&lt;QString&gt;::~QList (7 samples, 0.91%)</title><rect x="3639.8" y="229" width="43.3" height="23.0" fill="rgb(232,142,30)" rx="2" ry="2" />
<text text-anchor="" x="3642.83" y="243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QLis..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x301868f (1 samples, 0.13%)</title><rect x="220.2" y="493" width="6.2" height="23.0" fill="rgb(246,105,45)" rx="2" ry="2" />
<text text-anchor="" x="223.25" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QString::resize (7 samples, 0.91%)</title><rect x="4561.2" y="205" width="43.3" height="23.0" fill="rgb(245,166,44)" rx="2" ry="2" />
<text text-anchor="" x="4564.20" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >QStr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QVector&lt;QPair&lt;KSyntaxHighlighting::Context*, (3 samples, 0.39%)</title><rect x="1327.1" y="205" width="18.6" height="23.0" fill="rgb(232,160,30)" rx="2" ry="2" />
<text text-anchor="" x="1330.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>KSyntaxHighlighting::AbstractHighlighter::highlightLine (2 samples, 0.26%)</title><rect x="826.2" y="469" width="12.4" height="23.0" fill="rgb(246,156,46)" rx="2" ry="2" />
<text text-anchor="" x="829.25" y="483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_free (2 samples, 0.26%)</title><rect x="4629.2" y="253" width="12.4" height="23.0" fill="rgb(246,153,46)" rx="2" ry="2" />
<text text-anchor="" x="4632.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>QObject::connect (2 samples, 0.26%)</title><rect x="4530.3" y="253" width="12.4" height="23.0" fill="rgb(241,205,39)" rx="2" ry="2" />
<text text-anchor="" x="4533.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x7f1a3f81d700 (1 samples, 0.13%)</title><rect x="405.8" y="493" width="6.1" height="23.0" fill="rgb(231,92,29)" rx="2" ry="2" />
<text text-anchor="" x="408.76" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>