Home | History | Annotate | Download | only in make

Lines Matching defs:nameLen

479 		 * BSD 4.4 extended AR format: #1/<namelen>, with name as the
480 * first <namelen> bytes of the file
607 const char *name, size_t namelen)
612 if (strncmp(ar_name, name, namelen) != 0)
615 if (namelen >= ar_name_len)
616 return namelen == ar_name_len;
619 if (ar_name[namelen] == ' ')
626 if (ar_name[namelen] == '/' && ar_name[namelen + 1] == ' ')
689 * BSD 4.4 extended AR format: #1/<namelen>, with name as the
690 * first <namelen> bytes of the file
832 size_t nameLen = (size_t)(nameEnd - nameStart);
835 strncmp(nameStart, gn->name, nameLen) == 0) {