/system/core/sh/ |
H A D | mystring.h | 44 #define equal(s1, s2) (strcmp(s1, s2) == 0) 45 #define scopy(s1, s2) ((void)strcpy(s2, s1))
|
H A D | arith_lex.c | 1825 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) argument 1829 s1[i] = s2[i];
|
/system/wlan/ti/wilink_6_1/Test/ |
H A D | smeDebug.c | 124 char* sme_strcpy(char *s1,char *s2) argument 128 *s1++ = *s2++; 130 *s1 = '\0'; 132 return s1; 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 );
|
/system/extras/tests/bionic/libstdc++/ |
H A D | test_climits.cpp | 56 volatile short s1 = SHRT_MAX; local
|
/system/wlan/ti/wilink_6_1/CUDK/os/linux/src/ |
H A D | osapi.c | 288 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);
|
/system/wlan/ti/wilink_6_1/CUDK/os/common/inc/ |
H A D | cu_osapi.h | 80 S32 os_memcmp(const PVOID s1, const PVOID s2, S32 n); 97 S32 os_strcmp(const PS8 s1, const PS8 s2); 98 S32 os_strncmp(const PS8 s1, const PS8 s2, U32 n);
|
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/ |
H A D | console.h | 211 int console_stricmp( char *s1, char *s2, U16 len );
|
H A D | console.c | 973 int console_stricmp( char *s1, char *s2, U16 len ) argument 977 for( i=0; i<len && s1[i] && s2[i]; i++ ) 979 if (tolower( s1[i]) != tolower( s2[i] )) 983 return ( (len - i) * (s1[i] - s2[i]) );
|
/system/core/libpixelflinger/codeflinger/ |
H A D | load_store.cpp | 85 int s1 = scratches.obtain(); local 86 LDRB(AL, s1, addr.reg, immed12_pre(0)); // R 88 ORR(AL, 0, s1, s1, reg_imm(s0, LSL, 8)); 90 ORR(AL, 0, s.reg, s1, reg_imm(s0, LSL, 16));
|
/system/core/toolbox/ |
H A D | newfs_msdos.c | 738 const char *s1, *s2; local 748 s1 = fname; 749 if (!strncmp(s1, _PATH_DEV, len)) 750 s1 += len; 751 r = S_ISCHR(mode) && s1 != fname && *s1 == 'r'; 756 if ((r && s2 != mp->f_mntfromname && !strcmp(s1 + 1, s2)) || 757 !strcmp(s1, s2))
|
/system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/ |
H A D | console.c | 163 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]) );
|
/system/extras/tests/memtest/ |
H A D | memtest.cpp | 373 static int ref_memcmp(const void *s1, const void *s2, size_t n) argument 375 const unsigned char *c1 = (const unsigned char *)s1, *c2 = (const unsigned char *)s2;
|