HomeSort by relevance Sort by last modified time
    Searched refs:str1 (Results 76 - 100 of 296) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/asm/
asm.h 25 #define __CAT(str1, str2) str1##str2
27 #define __CAT(str1, str2) str1 str2
30 #define CAT(str1, str2) __CAT(str1, str2)
  /external/openssl/crypto/dsa/
dsatest.c 131 static const unsigned char str1[]="12345678901234567890"; variable
210 DSA_sign(0, str1, 20, sig, &siglen, dsa);
211 if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
216 DSA_sign(0, str1, 20, sig, &siglen, dsa);
217 if (DSA_verify(0, str1, 20, sig, siglen, dsa) == 1)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessTest.java 56 String str1 = "Some data for testing communication between processes\n"; local
59 os.write(str1.getBytes());
70 assertEquals(str1 + str2 + str3, received);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message_unittest.cc 78 string str1("foo");
81 EXPECT_TRUE(message.SerializeToString(&str1));
85 EXPECT_EQ(str1.size() + 3, str2.size());
89 EXPECT_TRUE(str2.substr(3) == str1);
91 // GCC gives some sort of error if we try to just do stream.str() == str1.
93 EXPECT_TRUE(temp == str1);
95 EXPECT_TRUE(message.SerializeAsString() == str1);
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_string.c 667 int SDL_strcmp(const char *str1, const char *str2)
669 while (*str1 && *str2) {
670 if ( *str1 != *str2 )
672 ++str1;
675 return (int)((unsigned char)*str1 - (unsigned char)*str2);
680 int SDL_strncmp(const char *str1, const char *str2, size_t maxlen)
682 while ( *str1 && *str2 && maxlen ) {
683 if ( *str1 != *str2 )
685 ++str1;
692 return (int)((unsigned char)*str1 - (unsigned char)*str2)
    [all...]
  /external/valgrind/main/VEX/test/
fpgames.s 4 .section .rodata.str1.1,"aMS",@progbits,1
75 .section .rodata.str1.1,"aMS",@progbits,1
fp1.s 4 .section .rodata.str1.1,"aMS",@progbits,1
  /external/chromium_org/third_party/cld/base/
logging.h 755 #define DCHECK_STREQ(str1, str2) CHECK_STREQ(str1, str2)
756 #define DCHECK_STRCASEEQ(str1, str2) CHECK_STRCASEEQ(str1, str2)
757 #define DCHECK_STRNE(str1, str2) CHECK_STRNE(str1, str2)
758 #define DCHECK_STRCASENE(str1, str2) CHECK_STRCASENE(str1, str2)
809 #define DCHECK_STREQ(str1, str2) \
811 CHECK_STREQ(str1, str2
    [all...]
  /external/chromium_org/third_party/libxml/src/
error.c 401 if ((domain == XML_FROM_XPATH) && (err->str1 != NULL) &&
403 (err->int1 < xmlStrlen((const xmlChar *)err->str1))) {
407 channel(data, "%s\n", err->str1);
428 * @str1: extra string info
444 const char *file, int line, const char *str1,
578 if (str1 != NULL)
579 to->str1 = (char *) xmlStrdup((const xmlChar *) str1);
874 if (err->str1 != NULL)
875 xmlFree(err->str1);
949 char *message, *file, *str1, *str2, *str3; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_utility.h 65 bool StringCompare(const char* str1,
rtp_utility.cc 117 bool StringCompare(const char* str1, const char* str2,
119 return (_strnicmp(str1, str2, length) == 0) ? true : false;
122 bool StringCompare(const char* str1, const char* str2,
124 return (strncasecmp(str1, str2, length) == 0) ? true : false;
  /external/clang/test/FixIt/
typo.cpp 24 other_std::strng str1; // expected-error{{use of undeclared identifier 'other_std'; did you mean 'otherstd'?}} \
  /external/libxml2/
error.c 413 if ((domain == XML_FROM_XPATH) && (err->str1 != NULL) &&
415 (err->int1 < xmlStrlen((const xmlChar *)err->str1))) {
419 channel(data, "%s\n", err->str1);
440 * @str1: extra string info
456 const char *file, int line, const char *str1,
587 if (str1 != NULL)
588 to->str1 = (char *) xmlStrdup((const xmlChar *) str1);
881 if (err->str1 != NULL)
882 xmlFree(err->str1);
956 char *message, *file, *str1, *str2, *str3; local
    [all...]
  /external/llvm/test/MC/Mips/
elf-N64.s 58 .section .rodata.str1.4,"aMS",@progbits,1
xgot.s 61 .section .rodata.str1.1,"aMS",@progbits,1
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_ETC.c 136 OMX_S32 Exynos_OSAL_Strcmp(OMX_PTR str1, OMX_PTR str2)
138 return strcmp(str1, str2);
141 OMX_S32 Exynos_OSAL_Strncmp(OMX_PTR str1, OMX_PTR str2, size_t num)
143 return strncmp(str1, str2, num);
  /packages/apps/InCallUI/src/com/android/incallui/
Log.java 53 public static void d(Object obj, String str1, Object str2) {
55 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
65 public static void v(Object obj, String str1, Object str2) {
67 android.util.Log.d(TAG, getPrefix(obj) + str1 + str2);
  /external/chromium_org/third_party/libxslt/libxslt/
xsltlocale.c 408 * @str1: a string transformed with xsltStrxfrm
413 * Returns a value < 0 if str1 sorts before str2,
414 * a value > 0 if str1 sorts after str2,
415 * 0 if str1 and str2 are equal wrt sorting
418 xsltLocaleStrcmp(xsltLocale locale, const xsltLocaleChar *str1, const xsltLocaleChar *str2) {
423 if (str1 == str2) return(0);
424 if (str1 == NULL) return(-1);
426 ret = CompareStringW(locale, 0, str1, -1, str2, -1);
434 return(xmlStrcmp(str1, str2));
  /external/chromium_org/third_party/icu/source/common/
cstring.h 131 uprv_stricmp(const char *str1, const char *str2);
138 uprv_strnicmp(const char *str1, const char *str2, uint32_t n);
  /external/clang/test/SemaCXX/
array-bounds.cpp 66 const char *str1 = "foo"; local
67 char c1 = str1[5]; // no warning for pointers
  /external/icu/icu4c/source/common/
cstring.h 131 uprv_stricmp(const char *str1, const char *str2);
138 uprv_strnicmp(const char *str1, const char *str2, uint32_t n);
  /external/valgrind/main/callgrind/
global.h 141 #define WRITE_STR2(fd, str1, str2) \
142 do { if (str1) { Int len = VG_(strlen)(str1); \
143 VG_(write)(fd, (void*)str1, len); } \
150 #define WRITE_STR3(fd, str1, str2, str3) \
151 do { if (str1) { Int len = VG_(strlen)(str1); \
152 VG_(write)(fd, (void*)str1, len); } \
  /external/valgrind/main/include/
pub_tool_basics.h 68 #define VGAPPEND(str1,str2) str1##str2
  /art/runtime/base/
logging.h 122 #define DCHECK_STREQ(str1, str2) \
124 CHECK_STREQ(str1, str2)
126 #define DCHECK_STRNE(str1, str2) \
128 CHECK_STRNE(str1, str2)
  /external/llvm/test/MC/ELF/
relocation-386.s 137 .section .rodata.str1.16,"aMS",@progbits,1

Completed in 1288 milliseconds

1 2 34 5 6 7 8 91011>>