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

123

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/drivers/dma/
H A Ddma-api.c106 static int search_cap(const char **haystack, const char *needle) argument
110 for (p = haystack; *p; p++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dunistr.h624 u8_strstr (const uint8_t *haystack, const uint8_t *needle);
626 u16_strstr (const uint16_t *haystack, const uint16_t *needle);
628 u32_strstr (const uint32_t *haystack, const uint32_t *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dunistr.h651 u8_strstr (const uint8_t *haystack, const uint8_t *needle);
653 u16_strstr (const uint16_t *haystack, const uint16_t *needle);
655 u32_strstr (const uint32_t *haystack, const uint32_t *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dunistr.h624 u8_strstr (const uint8_t *haystack, const uint8_t *needle);
626 u16_strstr (const uint16_t *haystack, const uint16_t *needle);
628 u32_strstr (const uint32_t *haystack, const uint32_t *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dutils.c704 tr_memmem( const char * haystack, size_t haystacklen, argument
708 return memmem( haystack, haystacklen, needle, needlelen );
712 return haystack;
713 if( needlelen > haystacklen || !haystack || !needle )
716 if( !memcmp( haystack+i, needle, needlelen ) )
717 return haystack+i;
H A Dutils.h390 const char* tr_memmem( const char * haystack, size_t haystack_len,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/replace/
H A Dreplace.c462 char *rep_strcasestr(const char *haystack, const char *needle) argument
466 for (s=haystack;*s;s++) {
H A Dreplace.h192 char *rep_strcasestr(const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexOthers.cxx795 static bool strstart(const char *haystack, const char *needle) { argument
796 return strncmp(haystack, needle, strlen(needle)) == 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dwxchar.h1184 WXDLLIMPEXP_BASE const wxChar * wxStrstr(const wxChar *haystack, const wxChar *needle);
1203 inline wxChar *wxStrstr(wxChar *haystack, const wxChar *needle) argument
1204 { return (wxChar *)wxStrstr((const wxChar *)haystack, needle); }
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-core/
H A Ddvb_ca_en50221.c168 * Safely find needle in haystack.
170 * @param haystack Buffer to look in.
171 * @param hlen Number of bytes in haystack.
174 * @return Pointer into haystack needle was found at, or NULL if not found.
176 static char *findstr(char * haystack, int hlen, char * needle, int nlen) argument
184 if (!strncmp(haystack + i, needle, nlen))
185 return haystack + i;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dwxchar.cpp2007 WXDLLEXPORT const wxChar *wxStrstr(const wxChar *haystack, const wxChar *needle)
2015 while ( const wxChar *fnd = wxStrchr(haystack, *needle) )
2020 haystack = fnd + 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/third-party/dht/
H A Ddht.c2695 dht_memmem(const void *haystack, size_t haystacklen, argument
2698 return memmem(haystack, haystacklen, needle, needlelen);
2704 dht_memmem(const void *haystack, size_t haystacklen, argument
2707 const char *h = haystack;
/netgear-R7000-V1.0.7.12_1.2.5/src/shared/
H A Dbcmutils.c1731 /* return pointer to location of substring 'needle' in 'haystack' */
1733 BCMROMFN(bcmstrstr)(const char *haystack, const char *needle) argument
1738 if ((haystack == NULL) || (needle == NULL))
1739 return DISCARD_QUAL(haystack, char);
1742 len = strlen(haystack) - nlen + 1;
1745 if (memcmp(needle, &haystack[i], nlen) == 0)
1746 return DISCARD_QUAL(&haystack[i], char);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dhpsa.c682 /* Find needle in haystack. If exact match found, return DEVICE_SAME,
688 struct hpsa_scsi_dev_t *haystack[], int haystack_size,
696 if (haystack[i] == NULL) /* previously removed. */
698 if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
700 if (device_is_the_same(needle, haystack[i]))
687 hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle, struct hpsa_scsi_dev_t *haystack[], int haystack_size, int *index) argument
/netgear-R7000-V1.0.7.12_1.2.5/src/include/
H A Dbcmutils.h529 extern char *BCMROMFN(bcmstrstr)(const char *haystack, const char *needle);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/
H A Dconfigure24084 char *haystack = (char *) malloc (2 * m + 2);
24092 if (haystack && needle)
24094 memset (haystack, 'A', 2 * m);
24095 haystack[2 * m] = 'B';
24096 haystack[2 * m + 1] = 0;
24100 result = strcasestr (haystack, needle);

Completed in 272 milliseconds

123