Home
last modified time | relevance | path

Searched refs:STREQN (Results 1 – 18 of 18) sorted by relevance

/openbsd/src/gnu/lib/libreadline/
Dhistsearch.c111 if (STREQN (string, line, string_len))
128 if (STREQN (string, line + line_index, string_len))
145 if (STREQN (string, line + line_index, string_len))
Dhistlib.h33 #define STREQN(a, b, n) (((n) == 0) ? (1) \ macro
Drldefs.h154 #define STREQN(a, b, n) (((n) == 0) ? (1) \ macro
Disearch.c455 if (STREQN (search_string, sline + line_index, search_string_index))
Dkill.c497 if (n >= 0 && STREQN (rl_line_buffer + n, rl_kill_ring[rl_kill_index], l))
Dtext.c1146 if (STREQN (rl_comment_text, rl_line_buffer, rl_comment_len))
Dhistexpand.c765 if (STREQN (temp+si, subst_lhs, subst_lhs_len))
Dcomplete.c1663 if (namelen == 0 || (STREQN (username, entry->pw_name, namelen)))
/openbsd/src/usr.bin/m4/
Dstdd.h52 #define STREQN(a, b, n) ((a)[0] == (b)[0] && strncmp(a, b, n) == 0) macro
/openbsd/src/usr.sbin/rbootd/
Ddefs.h57 #define STREQN(s1,s2) ((*s1 == *s2) && (strcmp(s1,s2) == 0)) macro
Dparseconf.c160 if (STREQN(BootFiles[j], bcp)) { in ParseConfig()
Drmpproto.c338 if (STREQN(filename, filelist[i])) in SendBootRepl()
/openbsd/src/gnu/usr.bin/binutils/gdb/
DChangeLog-199235 * c-exp.y (strncmp): Replace throughout with STREQN, missed
107 * defs.h (STRCMP, STREQ, STREQN): New macros.
109 * dwarfread.c (STREQ, STREQN): Remove macros, replaced with STREQ
110 and STREQN defined in defs.h.
195 and strncmp usages with STREQ, STREQN, or STRCMP as appropriate.
6240 * dwarfread.c: Add new macros GCC_PRODUCER and STREQN. Remove
DChangeLog-2003551 * defs.h (DEPRECATED_STREQN): Rename STREQN.
1353 * valops.c (destructor_name_p): Replace STREQN with strncmp.
13569 * cp-valprint.c (cp_print_value_fields): Eliminate STREQN.
DChangeLog-20006677 * defs.h (STREQ, STRCMP, STREQN): Document that these macros are
DChangeLog-19936582 Use STREQN macro rather than bare '!strncmp()'.
DChangeLog5142 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
/openbsd/src/gnu/usr.bin/binutils/gdb/mi/
DChangeLog-1999-20033 * mi-cmd-var.c (mi_cmd_var_set_format): Replace STREQN with