Home
last modified time | relevance | path

Searched refs:str2 (Results 1 – 15 of 15) sorted by relevance

/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/api/platform/
A Dplatform_stdlib_rtl8721d.h69 #define strcmp(str1, str2) _strcmp(str1, str2) argument
73 #define strstr(str1, str2) _strstr(str1, str2) // NULL function argument
77 #define strncmp(str1, str2, cnt) _strncmp(str1, str2, cnt) argument
/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_string.c504 if (*str1 != *str2) in SDL_wcscmp()
507 ++str2; in SDL_wcscmp()
520 if (*str1 != *str2) in SDL_wcsncmp()
523 ++str2; in SDL_wcsncmp()
984 if (*str1 != *str2) in SDL_strcmp()
987 ++str2; in SDL_strcmp()
1000 if (*str1 != *str2) in SDL_strncmp()
1003 ++str2; in SDL_strncmp()
1029 ++str2; in SDL_strcasecmp()
1032 b = SDL_toupper(*str2); in SDL_strcasecmp()
[all …]
/AliOS-Things-master/components/lwip/lwip2.0.0/core/
A Ddef.c128 lwip_stricmp(const char* str1, const char* str2) in lwip_stricmp() argument
134 c2 = *str2++; in lwip_stricmp()
163 lwip_strnicmp(const char* str1, const char* str2, size_t len) in lwip_strnicmp() argument
169 c2 = *str2++; in lwip_strnicmp()
/AliOS-Things-master/components/amp/services/amp_utils/
A Damp_utils.c47 int end_with(char *str1, char *str2) in end_with() argument
49 if (!str1 || !str2) { in end_with()
54 int len2 = strlen(str2); in end_with()
57 if (strcmp(str1 + len1 - len2, str2) == 0) { in end_with()
A Damp_utils.h26 int end_with(char *str1, char *str2);
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/soc/realtek/amebad/swlib/string/
A Dstricmp.c25 _LONG_CALL_ int _stricmp(const char* str1, const char* str2) in _stricmp() argument
31 c2 = *str2++; in _stricmp()
A Dstrproc.h47 extern _LONG_CALL_ int _stricmp(const char* str1, const char* str2);
50 extern _LONG_CALL_ char * _strstr(IN const char * str1, IN const char * str2);
/AliOS-Things-master/components/SDL2/src/image/
A DIMG.c167 static int IMG_string_equals(const char *str1, const char *str2) in IMG_string_equals() argument
169 while ( *str1 && *str2 ) { in IMG_string_equals()
171 SDL_toupper((unsigned char)*str2) ) in IMG_string_equals()
174 ++str2; in IMG_string_equals()
176 return (!*str1 && !*str2); in IMG_string_equals()
/AliOS-Things-master/components/lwip/lwip2.0.0/include/lwip/
A Ddef.h129 int lwip_strnicmp(const char* str1, const char* str2, size_t len);
133 int lwip_stricmp(const char* str1, const char* str2);
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/lwip/
A Ddef.h141 int lwip_strnicmp(const char* str1, const char* str2, size_t len);
145 int lwip_stricmp(const char* str1, const char* str2);
/AliOS-Things-master/components/py_engine/external/amp_utils/
A Damp_utils.h19 int end_with(char *str1, char *str2);
/AliOS-Things-master/components/SDL2/include/
A DSDL_stdinc.h465 extern DECLSPEC int SDLCALL SDL_wcscmp(const wchar_t *str1, const wchar_t *str2);
466 extern DECLSPEC int SDLCALL SDL_wcsncmp(const wchar_t *str1, const wchar_t *str2, size_t maxlen);
497 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2);
498 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
499 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2);
500 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t len);
/AliOS-Things-master/components/amp/ui/render/include/
A Drender_public.h62 bool widget_str_equal(char *str1, char *str2);
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.c3941 str2 = JS_ToStringFree(ctx, str2); in JS_ConcatString3()
3942 if (JS_IsException(str2)) in JS_ConcatString3()
3945 p = JS_VALUE_GET_STRING(str2); in JS_ConcatString3()
3956 JS_FreeValue(ctx, str2); in JS_ConcatString3()
3960 JS_FreeValue(ctx, str2); in JS_ConcatString3()
20082 const char *str, *str2; in dump_token() local
20085 printf("regexp: '%s' '%s'\n", str, str2); in dump_token()
20087 JS_FreeCString(s->ctx, str2); in dump_token()
27247 JSValue str1, str2; in exported_names_cmp() local
27252 str2 = JS_AtomToString(ctx, me2->export_name); in exported_names_cmp()
[all …]
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/
A Dduktape.c4765 duk_hstring *str2; /* string 2 of token (borrowed, stored to ctx->slot2_idx) */ member
76849 DUK_ASSERT(tk->str2 != NULL);
76853 (duk_heaphdr *) tk->str2));
76857 duk_push_hstring(thr, tk->str2);
81344 comp_ctx->prev_token.str2 = NULL;
81346 comp_ctx->curr_token.str2 = NULL;
91142 out_token->str2 = NULL;
91346 out_token->str2 = duk__internbuffer(lex_ctx, lex_ctx->slot2_idx);

Completed in 360 milliseconds