Searched refs:strncasecmp (Results 1 - 25 of 254) sorted by path

1234567891011

/freebsd-11-stable/bin/date/
H A Dvary.c75 if (!strncasecmp(t[f].str, arg, 3) ||
76 !strncasecmp(t[f].str, arg, strlen(t[f].str)))
/freebsd-11-stable/bin/kill/
H A Dkill.c163 if (strncasecmp(sig, "SIG", 3) == 0)
/freebsd-11-stable/bin/pkill/
H A Dpkill.c166 if (strncasecmp(p, "SIG", 3) == 0)
/freebsd-11-stable/bin/sh/
H A Dtrap.c110 if (strncasecmp(sig, "SIG", 3) == 0)
/freebsd-11-stable/contrib/amd/include/
H A Dam_utils.h94 #define NSTRCEQ(s1, s2, n) (strncasecmp((s1), (s2), (n)) == 0)
/freebsd-11-stable/contrib/apr-util/dbd/
H A Dapr_dbd_mysql.c1157 if (!strncasecmp(fields[i].field, key, klen)) {
H A Dapr_dbd_oracle.c427 if (!strncasecmp(fields[i].field, key, klen)) {
/freebsd-11-stable/contrib/apr-util/ldap/
H A Dapr_ldap_url.c198 if ( strncasecmp( p, APR_LDAP_URL_URLCOLON, APR_LDAP_URL_URLCOLON_LEN ) == 0 ) {
203 if ( strncasecmp( p, APR_LDAP_URL_PREFIX, APR_LDAP_URL_PREFIX_LEN ) == 0 ) {
211 if ( strncasecmp( p, APR_LDAPS_URL_PREFIX, APR_LDAPS_URL_PREFIX_LEN ) == 0 ) {
219 if ( strncasecmp( p, APR_LDAPI_URL_PREFIX, APR_LDAPI_URL_PREFIX_LEN ) == 0 ) {
/freebsd-11-stable/contrib/binutils/bfd/
H A Darchures.c928 if (strncasecmp (string, info->arch_name, strlen_arch_name) == 0)
950 if (strncasecmp (string, info->printable_name, colon_index) == 0
/freebsd-11-stable/contrib/binutils/binutils/
H A Dobjcopy.c581 else if (strncasecmp (fname, s, len) == 0) ret |= fval
/freebsd-11-stable/contrib/binutils/gas/
H A Datof-generic.c126 if (!strncasecmp ("nan", first_digit, 3))
139 if (!strncasecmp ("inf", first_digit, 3))
148 if (!strncasecmp ("inity", first_digit, 5))
H A Dexpr.c1124 else if ((strncasecmp (input_line_pointer, "startof.", 8) == 0
1126 || (strncasecmp (input_line_pointer, "sizeof.", 7) == 0
H A Dmacro.c198 && strncasecmp (ptr->ptr + i, "IRPC", from_len = 4) != 0
199 && strncasecmp (ptr->ptr + i, "IRP", from_len = 3) != 0
200 && strncasecmp (ptr->ptr + i, "IREPC", from_len = 5) != 0
201 && strncasecmp (ptr->ptr + i, "IREP", from_len = 4) != 0
202 && strncasecmp (ptr->ptr + i, "REPT", from_len = 4) != 0
203 && strncasecmp (ptr->ptr + i, "REP", from_len = 3) != 0)
206 ? strncasecmp (ptr->ptr + i, from, from_len) == 0
212 if (strncasecmp (ptr->ptr + i, to, to_len) == 0
859 || strncasecmp (in->ptr + src, "LOCAL", 5) != 0
H A Dread.c662 if ((strncasecmp (rest, "EQU", 3) == 0
663 || strncasecmp (rest, "SET", 3) == 0)
668 strncasecmp (rest, "SET", 3) == 0);
671 if (strncasecmp (rest, "MACRO", 5) == 0
774 if ((strncasecmp (rest, "EQU", 3) == 0
775 || strncasecmp (rest, "SET", 3) == 0)
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-arm.c4495 if (strncasecmp (group_reloc_table[i].name, *str, length) == 0 &&
4849 if (strncasecmp (p, ":lower16:", 9) == 0)
4851 else if (strncasecmp (p, ":upper16:", 9) == 0)
4896 if (strncasecmp (p, "SPSR", 4) == 0)
4898 else if (strncasecmp (p, "CPSR", 4) == 0)
4992 if (strncasecmp (s, "BE", 2))
4994 else if (strncasecmp (s, "LE", 2))
5022 if (strncasecmp (s, "ROR", 3) == 0)
5908 if (strncasecmp (str, "APSR_", 5) == 0)
H A Dtc-i386.c4480 if (strncasecmp (cp + 1, gotrel[j].str, len) == 0)
7766 if (strncasecmp (q, " FLAT:", 6) == 0)
H A Dtc-mips.c10954 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
H A Dtc-ppc.c2541 if (strncasecmp (input_line_pointer, "@tlsgd)", 7) == 0)
2546 else if (strncasecmp (input_line_pointer, "@tlsld)", 7) == 0)
H A Dtc-s390.c684 && strncasecmp (ident, ptr->string, ptr->length) == 0)
764 && strncasecmp (ident, ptr->string, ptr->length) == 0)
910 if (len != 4 || strncasecmp (ident, "lit", 3) != 0
H A Dtc-spu.c541 && 0 == strncasecmp (param, rn[i].name, rn[i].length))
594 if (strncasecmp (param, "%lo(", 4) == 0)
600 else if (strncasecmp (param, "%hi(", 4) == 0)
606 else if (strncasecmp (param, "%pic(", 5) == 0)
828 && strncasecmp (input_line_pointer, "@ppu", 4) == 0)
H A Dtc-spu.h91 if (strncasecmp (input_line_pointer, "@ppu", 4) == 0) \
/freebsd-11-stable/contrib/binutils/libiberty/
H A DMakefile.in153 strerror.c strncasecmp.c strncmp.c strrchr.c strsignal.c \
201 ./strcasecmp.o ./strchr.o ./strdup.o ./strncasecmp.o \
1027 ./strncasecmp.o: $(srcdir)/strncasecmp.c $(INCDIR)/ansidecl.h
1029 $(COMPILE.c) $(PICFLAG) $(srcdir)/strncasecmp.c -o pic/$@; \
1031 $(COMPILE.c) $(srcdir)/strncasecmp.c $(OUTPUT_OPTION)
H A Dconfigure5042 funcs="$funcs strncasecmp"
5141 strcasecmp setenv stpcpy stpncpy strchr strdup strncasecmp strndup strrchr strstr \
6075 "strncasecmp.$ac_objext" | \
6076 *" strncasecmp.$ac_objext" | \
6077 "strncasecmp.$ac_objext "* | \
6078 *" strncasecmp.$ac_objext "* ) ;;
6079 *) LIBOBJS="$LIBOBJS strncasecmp.$ac_objext" ;;
6118 strncasecmp | strdup | vfork | waitpid | vasprintf)
6147 strchr strdup strerror strncasecmp strrchr strstr strtod \
H A Dstrncasecmp.c15 @deftypefn Supplemental int strncasecmp (const char *@var{s1}, const char *@var{s2})
71 strncasecmp(const char *s1, const char *s2, register size_t n) function
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dmep-asm.c226 if (strncasecmp (*strp, "%lo(", 4) == 0)
244 if (strncasecmp (*strp, "%hi(", 4) == 0)
259 if (strncasecmp (*strp, "%uhi(", 5) == 0)
274 if (strncasecmp (*strp, "%sdaoff(", 8) == 0)
286 if (strncasecmp (*strp, "%tpoff(", 7) == 0)
330 if (strncasecmp (*strp, "%lo(", 4) == 0)
345 if (strncasecmp (*strp, "%hi(", 4) == 0)
360 if (strncasecmp (*strp, "%uhi(", 5) == 0)
375 if (strncasecmp (*strp, "%sdaoff(", 8) == 0)
390 if (strncasecmp (*str
[all...]

Completed in 462 milliseconds

1234567891011