Searched refs:needle (Results 51 - 57 of 57) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/dvb-core/
H A Ddvb_ca_en50221.c170 * Safely find needle in haystack.
174 * @param needle Buffer to find.
175 * @param nlen Number of bytes in needle.
176 * @return Pointer into haystack needle was found at, or NULL if not found.
178 static u8 *findstr(u8 * haystack, int hlen, u8 * needle, int nlen) argument
186 if (!strncmp(haystack + i, needle, nlen))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/
H A Ddpkg.c339 static int search_for_provides(int needle, int start_at) argument
348 if (p->edge[j]->type == EDGE_PROVIDES && p->edge[j]->name == needle)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxpath.c8848 xmlXPathObjectPtr hay, needle; local
8853 needle = valuePop(ctxt);
8859 xmlXPathReleaseObject(ctxt->context, needle);
8862 if (xmlStrstr(hay->stringval, needle->stringval))
8867 xmlXPathReleaseObject(ctxt->context, needle);
8882 xmlXPathObjectPtr hay, needle; local
8888 needle = valuePop(ctxt);
8894 xmlXPathReleaseObject(ctxt->context, needle);
8897 n = xmlStrlen(needle->stringval);
8898 if (xmlStrncmp(hay->stringval, needle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxpath.c8890 xmlXPathObjectPtr hay, needle; local
8895 needle = valuePop(ctxt);
8901 xmlXPathReleaseObject(ctxt->context, needle);
8904 if (xmlStrstr(hay->stringval, needle->stringval))
8909 xmlXPathReleaseObject(ctxt->context, needle);
8924 xmlXPathObjectPtr hay, needle; local
8930 needle = valuePop(ctxt);
8936 xmlXPathReleaseObject(ctxt->context, needle);
8939 n = xmlStrlen(needle->stringval);
8940 if (xmlStrncmp(hay->stringval, needle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxpath.c8848 xmlXPathObjectPtr hay, needle; local
8853 needle = valuePop(ctxt);
8859 xmlXPathReleaseObject(ctxt->context, needle);
8862 if (xmlStrstr(hay->stringval, needle->stringval))
8867 xmlXPathReleaseObject(ctxt->context, needle);
8882 xmlXPathObjectPtr hay, needle; local
8888 needle = valuePop(ctxt);
8894 xmlXPathReleaseObject(ctxt->context, needle);
8897 n = xmlStrlen(needle->stringval);
8898 if (xmlStrncmp(hay->stringval, needle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/include/
H A Dbcmutils.h395 extern char *BCMROMFN(bcmstrstr)(const char *haystack, const char *needle);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dbcmutils.c1332 /* return pointer to location of substring 'needle' in 'haystack' */
1334 BCMROMFN(bcmstrstr)(const char *haystack, const char *needle) argument
1339 if ((haystack == NULL) || (needle == NULL))
1342 nlen = strlen(needle);
1346 if (memcmp(needle, &haystack[i], nlen) == 0)

Completed in 291 milliseconds

123