Searched refs:num_matches (Results 1 – 3 of 3) sorted by relevance
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | interps.c | 422 int num_matches; in interpreter_completer() local 432 num_matches = 0; in interpreter_completer() 438 matches[num_matches] = in interpreter_completer() 441 strcpy (matches[num_matches], interp->name); in interpreter_completer() 445 strcpy (matches[num_matches], interp->name + (word - text)); in interpreter_completer() 450 strncpy (matches[num_matches], word, text - word); in interpreter_completer() 451 matches[num_matches][text - word] = '\0'; in interpreter_completer() 452 strcat (matches[num_matches], interp->name); in interpreter_completer() 454 ++num_matches; in interpreter_completer() 458 if (num_matches == 0) in interpreter_completer() [all …]
|
| /mirbsd/src/sys/sys/ |
| D | pciio.h | 97 u_int32_t num_matches; /* number of matches returned */ member
|
| /mirbsd/src/gnu/usr.bin/perl/pod/ |
| D | perlembed.pod | 479 I32 num_matches; 489 num_matches = av_len(*match_list) + 1; /** assume $[ is 0 **/ 491 return num_matches; 498 I32 num_matches, i; 531 num_matches = matches(text, "m/(wi..)/g", &match_list); 532 printf("matches: m/(wi..)/g found %d matches...\n", num_matches); 534 for (i = 0; i < num_matches; i++) 539 num_matches = substitute(&text, "s/[aeiou]//gi"); 540 if (num_matches) { 542 num_matches);
|