Searched refs:haystack (Results 26 - 50 of 67) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Davstring.h56 * Locate the first case-independent occurrence in the string haystack
58 * match at the start of haystack.
62 * @param haystack string to search in
64 * @return pointer to the located match within haystack
67 char *av_stristr(const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dutils-test.c324 char const haystack[12] = "abcabcabcabc"; local
327 check( tr_memmem( haystack, sizeof haystack, haystack, sizeof haystack) == haystack );
328 check( tr_memmem( haystack, sizeof haystack, needle, sizeof needle) == haystack + 2 );
329 check( tr_memmem( needle, sizeof needle, haystack, sizeo
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Davstring.h57 * Locate the first case-independent occurrence in the string haystack
59 * match at the start of haystack.
63 * @param haystack string to search in
65 * @return pointer to the located match within haystack
68 char *av_stristr(const char *haystack, const char *needle);
71 * Locate the first occurrence of the string needle in the string haystack
73 * string needle is considered to match at the start of haystack.
77 * @param haystack string to search in
80 * @return pointer to the located match within haystack
83 char *av_strnstr(const char *haystack, cons
[all...]
H A Davstring.c68 char *av_strnstr(const char *haystack, const char *needle, size_t hay_length) argument
72 return (char*)haystack;
75 if (!memcmp(haystack, needle, needle_len))
76 return (char*)haystack;
77 haystack++;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dstring.in.h516 _GL_FUNCDECL_RPL (strstr, char *, (const char *haystack, const char *needle)
519 _GL_CXXALIAS_RPL (strstr, char *, (const char *haystack, const char *needle));
525 char *, (const char *haystack, const char *needle),
526 const char *, (const char *haystack, const char *needle));
530 _GL_CXXALIASWARN1 (strstr, char *, (char *haystack, const char *needle));
532 (const char *haystack, const char *needle));
558 (const char *haystack, const char *needle)
561 (const char *haystack, const char *needle));
565 (const char *haystack, const char *needle)
572 char *, (const char *haystack, cons
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dmetadata.h71 ends_with(const char * haystack, const char * needle);
H A Dutils.c34 ends_with(const char * haystack, const char * needle) argument
38 int hlen = strlen(haystack);
42 end = haystack + hlen - nlen;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dmetadata.h86 ends_with(const char *haystack, const char *needle);
H A Dutils.h76 int ends_with(const char * haystack, const char * needle);
H A Dutils.c56 ends_with(const char * haystack, const char * needle) argument
60 int hlen = strlen(haystack);
64 end = haystack + hlen - nlen;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/lib/
H A Dstring.in.h337 char *strstr (const char *haystack, const char *needle)
362 extern char *strcasestr (const char *haystack, const char *needle)
461 extern char * mbsstr (const char *haystack, const char *needle);
504 strlen (haystack) < strlen (needle) !
506 extern char * mbscasestr (const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dstring.in.h331 extern char *strcasestr (const char *haystack, const char *needle);
429 extern char * mbsstr (const char *haystack, const char *needle);
472 strlen (haystack) < strlen (needle) !
474 extern char * mbscasestr (const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dstring.in.h331 extern char *strcasestr (const char *haystack, const char *needle);
429 extern char * mbsstr (const char *haystack, const char *needle);
472 strlen (haystack) < strlen (needle) !
474 extern char * mbscasestr (const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/glib/
H A Dgstrfuncs.in.h118 gchar * g_strstr_len (const gchar *haystack,
122 gchar * g_strrstr (const gchar *haystack,
124 gchar * g_strrstr_len (const gchar *haystack,
H A Dgstrfuncs.c2575 * @haystack: a string.
2576 * @haystack_len: the maximum length of @haystack.
2579 * Searches the string @haystack for the first occurrence
2587 g_strstr_len (const gchar *haystack, argument
2591 g_return_val_if_fail (haystack != NULL, NULL);
2595 return strstr (haystack, needle);
2598 const gchar *p = haystack;
2604 return (gchar *)haystack;
2609 end = haystack + haystack_len - needle_len;
2631 * @haystack
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/glib/
H A Dgstrfuncs.in.h118 gchar * g_strstr_len (const gchar *haystack,
122 gchar * g_strrstr (const gchar *haystack,
124 gchar * g_strrstr_len (const gchar *haystack,
H A Dgstrfuncs.c2575 * @haystack: a string.
2576 * @haystack_len: the maximum length of @haystack.
2579 * Searches the string @haystack for the first occurrence
2587 g_strstr_len (const gchar *haystack, argument
2591 g_return_val_if_fail (haystack != NULL, NULL);
2595 return strstr (haystack, needle);
2598 const gchar *p = haystack;
2604 return (gchar *)haystack;
2609 end = haystack + haystack_len - needle_len;
2631 * @haystack
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dstring.in.h331 extern char *strcasestr (const char *haystack, const char *needle);
429 extern char * mbsstr (const char *haystack, const char *needle);
472 strlen (haystack) < strlen (needle) !
474 extern char * mbscasestr (const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/shared/
H A Dshutils.c513 /* In the space-separated/null-terminated list(haystack), try to
517 find_in_list(const char *haystack, const char *needle) argument
519 const char *ptr = haystack;
524 if (!haystack || !needle || !*haystack || !*needle)
528 haystack_len = strlen(haystack);
530 while (*ptr != 0 && ptr < &haystack[haystack_len])
H A Dshutils.h184 extern char *find_in_list(const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dmovenchint.c148 * Find matches of needle[n_pos ->] within haystack. If a sufficiently
152 * @param haystack buffer that may contain parts of needle
153 * @param h_len length of the haystack buffer
155 * construct haystack
158 * @param match_h_offset_ptr offset of the first matching byte within haystack
163 static int match_segments(const uint8_t *haystack, int h_len, argument
173 /* Check how many bytes match at needle[n_pos] and haystack[h_pos] */
175 needle[n_pos + match_len] == haystack[h_pos + match_len])
185 needle[match_n_pos - 1] == haystack[match_h_pos - 1]) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dmovenchint.c147 * Find matches of needle[n_pos ->] within haystack. If a sufficiently
151 * @param haystack buffer that may contain parts of needle
152 * @param h_len length of the haystack buffer
154 * construct haystack
157 * @param match_h_offset_ptr offset of the first matching byte within haystack
162 static int match_segments(const uint8_t *haystack, int h_len, argument
172 /* Check how many bytes match at needle[n_pos] and haystack[h_pos] */
174 needle[n_pos + match_len] == haystack[h_pos + match_len])
184 needle[match_n_pos - 1] == haystack[match_h_pos - 1]) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/demos/tunala/
H A Dtunala.h241 char *int_strstr(const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/demos/tunala/
H A Dtunala.h212 char *int_strstr(const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/demos/tunala/
H A Dtunala.h241 char *int_strstr(const char *haystack, const char *needle);

Completed in 407 milliseconds

123