Lines Matching refs:val
397 int val; in TEST() local
400 ASSERT_EQ(tinyxml2::XML_SUCCESS, arena->QueryIntAttribute("nr", &val)); in TEST()
402 arena->FirstChildElement("allocated-large")->QueryIntText(&val)); in TEST()
404 arena->FirstChildElement("allocated-huge")->QueryIntText(&val)); in TEST()
406 arena->FirstChildElement("allocated-bins")->QueryIntText(&val)); in TEST()
408 arena->FirstChildElement("bins-total")->QueryIntText(&val)); in TEST()
413 ASSERT_EQ(tinyxml2::XML_SUCCESS, bin->QueryIntAttribute("nr", &val)); in TEST()
415 bin->FirstChildElement("allocated")->QueryIntText(&val)); in TEST()
417 bin->FirstChildElement("nmalloc")->QueryIntText(&val)); in TEST()
419 bin->FirstChildElement("ndalloc")->QueryIntText(&val)); in TEST()
426 int val; in TEST() local
429 ASSERT_EQ(tinyxml2::XML_SUCCESS, element->QueryIntAttribute("size", &val)); in TEST()
430 ASSERT_EQ(tinyxml2::XML_SUCCESS, element->QueryIntAttribute("count", &val)); in TEST()
467 int val; in TEST() local
470 ASSERT_EQ(tinyxml2::XML_SUCCESS, arena->QueryIntAttribute("nr", &val)); in TEST()
472 arena->FirstChildElement("allocated-large")->QueryIntText(&val)); in TEST()
473 total_allocated_bytes += val; in TEST()
475 arena->FirstChildElement("allocated-huge")->QueryIntText(&val)); in TEST()
476 total_allocated_bytes += val; in TEST()
478 arena->FirstChildElement("allocated-bins")->QueryIntText(&val)); in TEST()
479 total_allocated_bytes += val; in TEST()
481 arena->FirstChildElement("bins-total")->QueryIntText(&val)); in TEST()