Lines Matching refs:num_matches
632 unsigned num_matches;
643 if (info->num_matches < MAX_MATCHES) {
644 info->matches[info->num_matches].addr = (void*)ptr_addr;
645 info->matches[info->num_matches].size = ptr_size;
646 info->matches[info->num_matches].offset = idx*sizeof(T);
647 info->matches[info->num_matches].type = type;
648 ++info->num_matches;
660 user_return_code = '''if (baton.num_matches < MAX_MATCHES)
661 baton.matches[baton.num_matches].addr = 0; // Terminate the matches array
724 unsigned num_matches;
736 if (info->num_matches < MAX_MATCHES) {
737 info->matches[info->num_matches].addr = (void*)ptr_addr;
738 info->matches[info->num_matches].size = ptr_size;
739 info->matches[info->num_matches].offset = s - begin;
740 info->matches[info->num_matches].type = type;
741 ++info->num_matches;
754 user_return_code = '''if (baton.num_matches < MAX_MATCHES)
755 baton.matches[baton.num_matches].addr = 0; // Terminate the matches array
809 unsigned num_matches;
815 if (info->num_matches == 0) {
820 info->matches[info->num_matches].addr = (void*)ptr_addr;
821 info->matches[info->num_matches].size = ptr_size;
822 info->matches[info->num_matches].offset = p - lo;
823 info->matches[info->num_matches].type = type;
824 info->num_matches = 1;
945 num_matches = display_match_results (result, options, arg_str_description, expr, False)
946 if num_matches:
947 if num_matches < options.max_matches:
948 options.max_matches = options.max_matches - num_matches
1024 unsigned num_matches;
1065 if (info->num_matches < MAX_MATCHES) {
1066 info->matches[info->num_matches].addr = (void*)ptr_addr;
1067 info->matches[info->num_matches].size = ptr_size;
1068 info->matches[info->num_matches].offset = 0;
1069 info->matches[info->num_matches].type = type;
1070 ++info->num_matches;
1084 user_return_code = '''if (baton.num_matches < MAX_MATCHES)
1085 baton.matches[baton.num_matches].addr = 0; // Terminate the matches array