Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 10 of 10) sorted by relevance

/hardware/ti/wlan/wl1271/Test/
DsmeDebug.c124 char* sme_strcpy(char *s1,char *s2) in sme_strcpy() argument
128 *s1++ = *s2++; in sme_strcpy()
130 *s1 = '\0'; in sme_strcpy()
132 return s1; in sme_strcpy()
136 int sme_memcmp(char* s1, char* s2, int n) in sme_memcmp() argument
138 while(n-- > 0 && *s1 == *s2) in sme_memcmp()
139 s1++, s2++; in sme_memcmp()
141 return( n < 0 ? 0 : *s1 - *s2 ); in sme_memcmp()
/hardware/ti/wlan/wl1271/CUDK/os/linux/src/
Dosapi.c288 S32 os_memcmp(const PVOID s1, const PVOID s2, S32 n) in os_memcmp() argument
290 return memcmp(s1, s2, n); in os_memcmp()
300 S32 os_strcmp(const PS8 s1, const PS8 s2) in os_strcmp() argument
302 return strcmp((char*)s1,(char*)s2); in os_strcmp()
313 S32 os_strncmp(const PS8 s1, const PS8 s2, U32 n) in os_strncmp() argument
315 return strncmp((char*)s1,(char*)s2,n); in os_strncmp()
/hardware/ti/wlan/wl1271/CUDK/os/common/inc/
Dcu_osapi.h84 S32 os_memcmp(const PVOID s1, const PVOID s2, S32 n);
101 S32 os_strcmp(const PS8 s1, const PS8 s2);
102 S32 os_strncmp(const PS8 s1, const PS8 s2, U32 n);
/hardware/broadcom/wlan/bcm4329/dhdutil/
Dbcmutils.c771 bcmstricmp(const char *s1, const char *s2) in bcmstricmp() argument
775 while (*s2 && *s1) { in bcmstricmp()
776 dc = xToLower(*s1); in bcmstricmp()
780 s1++; in bcmstricmp()
784 if (*s1 && !*s2) return 1; in bcmstricmp()
785 if (!*s1 && *s2) return -1; in bcmstricmp()
805 bcmstrnicmp(const char* s1, const char* s2, int cnt) in bcmstrnicmp() argument
809 while (*s2 && *s1 && cnt) { in bcmstrnicmp()
810 dc = xToLower(*s1); in bcmstrnicmp()
814 s1++; in bcmstrnicmp()
[all …]
/hardware/qcom/gps/loc_api/libloc_api_50001/
Dloc_eng_agps.cpp57 Subscriber* s1 = (Subscriber*)fromList; in hasSubscriber() local
59 return s1->forMe(*notification); in hasSubscriber()
70 Subscriber* s1 = (Subscriber*)fromList; in notifySubscriber() local
74 return s1->notifyRsrcStatus(*notification) && in notifySubscriber()
Dloc_eng.cpp1540 ATLSubscriber s1(arlMsg->handle, in loc_eng_deferred_action_thread() local
1544 if (! loc_eng_data_p->agnss_nif->unsubscribeRsrc((Subscriber*)&s1)) { in loc_eng_deferred_action_thread()
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c895 bcmstricmp(const char *s1, const char *s2) in bcmstricmp() argument
899 while (*s2 && *s1) { in bcmstricmp()
900 dc = xToLower(*s1); in bcmstricmp()
904 s1++; in bcmstricmp()
908 if (*s1 && !*s2) return 1; in bcmstricmp()
909 if (!*s1 && *s2) return -1; in bcmstricmp()
929 bcmstrnicmp(const char* s1, const char* s2, int cnt) in bcmstrnicmp() argument
933 while (*s2 && *s1 && cnt) { in bcmstrnicmp()
934 dc = xToLower(*s1); in bcmstrnicmp()
938 s1++; in bcmstrnicmp()
[all …]
/hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
Dconsole.c163 static S32 Console_stricmp( PS8 s1, PS8 s2, U16 len ) in Console_stricmp() argument
167 for( i=0; i<len && s1[i] && s2[i]; i++ ) in Console_stricmp()
169 if (os_tolower(s1[i]) != os_tolower(s2[i] )) in Console_stricmp()
173 return ( (len - i) * (s1[i] - s2[i]) ); in Console_stricmp()
/hardware/broadcom/wlan/bcm4329/dhdutil/include/
Dbcmutils.h312 int bcmstricmp(const char *s1, const char *s2);
313 int bcmstrnicmp(const char* s1, const char* s2, int cnt);
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmutils.h350 int bcmstricmp(const char *s1, const char *s2);
351 int bcmstrnicmp(const char* s1, const char* s2, int cnt);