Searched refs:s2 (Results 1 - 9 of 9) sorted by relevance

/hardware/ti/wlan/wl1271/Test/
H A DsmeDebug.c124 char* sme_strcpy(char *s1,char *s2) argument
126 while (*s2)
128 *s1++ = *s2++;
136 int sme_memcmp(char* s1, char* s2, int n) argument
138 while(n-- > 0 && *s1 == *s2)
139 s1++, s2++;
141 return( n < 0 ? 0 : *s1 - *s2 );
/hardware/ti/wlan/wl1271/CUDK/os/linux/src/
H A Dosapi.c288 S32 os_memcmp(const PVOID s1, const PVOID s2, S32 n) argument
290 return memcmp(s1, s2, n);
300 S32 os_strcmp(const PS8 s1, const PS8 s2) argument
302 return strcmp((char*)s1,(char*)s2);
313 S32 os_strncmp(const PS8 s1, const PS8 s2, U32 n) argument
315 return strncmp((char*)s1,(char*)s2,n);
/hardware/ti/wlan/wl1271/CUDK/os/common/inc/
H A 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/
H A Dbcmutils.c764 * s2 (in) Second string to compare.
771 bcmstricmp(const char *s1, const char *s2) argument
775 while (*s2 && *s1) {
777 sc = xToLower(*s2);
781 s2++;
784 if (*s1 && !*s2) return 1;
785 if (!*s1 && *s2) return -1;
797 * s2 (in) Second string to compare.
805 bcmstrnicmp(const char* s1, const char* s2, int cnt) argument
809 while (*s2
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c764 * s2 (in) Second string to compare.
771 bcmstricmp(const char *s1, const char *s2) argument
775 while (*s2 && *s1) {
777 sc = xToLower(*s2);
781 s2++;
784 if (*s1 && !*s2) return 1;
785 if (!*s1 && *s2) return -1;
797 * s2 (in) Second string to compare.
805 bcmstrnicmp(const char* s1, const char* s2, int cnt) argument
809 while (*s2
[all...]
/hardware/invensense/mlsdk/mllite/
H A Dml.c1817 long s[3], s2[3]; local
1848 s2[kk] = mldlCfg->pdata->orientation[kk * 3] * s[0] +
1852 result = inv_set_mpu_memory(KEY_D_ACSX, 4, inv_int32_to_big8(s2[0], big8));
1857 result = inv_set_mpu_memory(KEY_D_ACSY, 4, inv_int32_to_big8(s2[1], big8));
1862 result = inv_set_mpu_memory(KEY_D_ACSZ, 4, inv_int32_to_big8(s2[2], big8));
/hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
H A Dconsole.c163 static S32 Console_stricmp( PS8 s1, PS8 s2, U16 len ) argument
167 for( i=0; i<len && s1[i] && s2[i]; i++ )
169 if (os_tolower(s1[i]) != os_tolower(s2[i] ))
173 return ( (len - i) * (s1[i] - s2[i]) );
/hardware/broadcom/wlan/bcm4329/dhdutil/include/
H A 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/
H A Dbcmutils.h312 int bcmstricmp(const char *s1, const char *s2);
313 int bcmstrnicmp(const char* s1, const char* s2, int cnt);

Completed in 104 milliseconds