• Home
  • Raw
  • Download

Lines Matching refs:MATCH

20     MATCH(false, std::is_const<type>::value);  in Check()
21 MATCH(false, std::is_volatile<type>::value); in Check()
24 MATCH(sizeof(dvStorage_), Descriptor::SizeInBytes(rank_, false)); in Check()
26 MATCH(true, sizeof(dvStorage_) >= Descriptor::SizeInBytes(rank_, false)); in Check()
29 MATCH(0, in Check()
94 MATCH((attribute == CFI_attribute_pointer), res->IsPointer()); in check_CFI_establish()
95 MATCH((attribute == CFI_attribute_allocatable), res->IsAllocatable()); in check_CFI_establish()
96 MATCH(rank, res->rank()); in check_CFI_establish()
97 MATCH(reinterpret_cast<std::intptr_t>(dv->base_addr), in check_CFI_establish()
99 MATCH(true, dv->version == CFI_VERSION); in check_CFI_establish()
101 MATCH(true, res->IsContiguous()); in check_CFI_establish()
103 MATCH(extents[i], res->GetDimension(i).Extent()); in check_CFI_establish()
107 MATCH(res->IsAllocated(), false); in check_CFI_establish()
112 MATCH(0, res->GetDimension(i).LowerBound()); in check_CFI_establish()
118 MATCH(elem_len, res->ElementBytes()); in check_CFI_establish()
149 MATCH(true, retCode != CFI_SUCCESS); in check_CFI_establish()
151 MATCH(retCode, expectedRetCode); in check_CFI_establish()
197 MATCH(false, in run_CFI_establish_tests()
207 MATCH(true, addr == addrCheck); in check_CFI_address()
304 MATCH(true, dv->base_addr != nullptr); in check_CFI_allocate()
306 MATCH(lower_bounds[i], dv->dim[i].lower_bound); in check_CFI_allocate()
307 MATCH(upper_bounds[i], dv->dim[i].extent + dv->dim[i].lower_bound - 1); in check_CFI_allocate()
310 MATCH(elem_len, dv->elem_len); in check_CFI_allocate()
312 MATCH(true, desc_elem_len == dv->elem_len); in check_CFI_allocate()
314 MATCH(true, desc->IsContiguous()); in check_CFI_allocate()
316 MATCH(true, base_addr == dv->base_addr); in check_CFI_allocate()
321 MATCH(true, attribute == dv->attribute); in check_CFI_allocate()
322 MATCH(true, rank == dv->rank); in check_CFI_allocate()
323 MATCH(true, type == dv->type); in check_CFI_allocate()
324 MATCH(true, version == dv->version); in check_CFI_allocate()
356 MATCH(true, retCode == CFI_ERROR_MEM_ALLOCATION); in check_CFI_allocate()
358 MATCH(true, retCode != CFI_SUCCESS); in check_CFI_allocate()
360 MATCH(expectedRetCode, retCode); in check_CFI_allocate()
444 MATCH(true, testPreConditions); in run_CFI_section_tests()
450 MATCH(true, retCode == CFI_SUCCESS); in run_CFI_section_tests()
464 MATCH(true, in run_CFI_section_tests()
467 MATCH(true, in run_CFI_section_tests()
481 MATCH(true, retCode == CFI_SUCCESS); in run_CFI_section_tests()
491 MATCH(true, in run_CFI_section_tests()
494 MATCH(true, in run_CFI_section_tests()
538 MATCH(true, testPreConditions); in run_CFI_select_part_tests()
545 MATCH(CFI_SUCCESS, retCode); in run_CFI_select_part_tests()
550 MATCH(true, baseAddrShiftedOk); in run_CFI_select_part_tests()
555 MATCH(sizeof(int), result->elem_len); in run_CFI_select_part_tests()
560 MATCH( in run_CFI_select_part_tests()
570 MATCH(true, testPreConditions); in run_CFI_select_part_tests()
577 MATCH(CFI_SUCCESS, retCode); in run_CFI_select_part_tests()
581 MATCH(true, baseAddrShiftedOk); in run_CFI_select_part_tests()
586 MATCH(elem_len, result->elem_len); in run_CFI_select_part_tests()
591 MATCH(static_cast<char>(i), in run_CFI_select_part_tests()
593 MATCH(static_cast<char>(j), in run_CFI_select_part_tests()
623 MATCH(true, testPreConditions); in run_CFI_setpointer_tests()
628 MATCH(CFI_SUCCESS, retCode); in run_CFI_setpointer_tests()
631 MATCH(rank, result->rank); in run_CFI_setpointer_tests()
632 MATCH(elem_len, result->elem_len); in run_CFI_setpointer_tests()
633 MATCH(type, result->type); in run_CFI_setpointer_tests()
635 MATCH(true, result->base_addr == source->base_addr); in run_CFI_setpointer_tests()
637 MATCH(source->dim[j].extent, result->dim[j].extent); in run_CFI_setpointer_tests()
638 MATCH(source->dim[j].sm, result->dim[j].sm); in run_CFI_setpointer_tests()
639 MATCH(lower_bounds[j], result->dim[j].lower_bound); in run_CFI_setpointer_tests()