/external/elfutils/src/libcpu/ |
D | i386_dis.h | 140 …{ .mnemonic = MNE_aaa, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 141 …{ .mnemonic = MNE_aad, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 142 …{ .mnemonic = MNE_aam, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 143 …{ .mnemonic = MNE_aas, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 0, .str1 = 0, .off1_1… 144 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… 145 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_… 146 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 18, .str1 = 0, .off1_… 147 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 26, .str1 = 0, .off1_… 148 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 24, .str1 = 0, .off1_… 149 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… [all …]
|
D | x86_64_dis.h | 141 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… 142 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_… 143 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 19, .str1 = 0, .off1_… 144 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 27, .str1 = 0, .off1_… 145 …{ .mnemonic = MNE_adc, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 25, .str1 = 0, .off1_… 146 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 0, .fct1 = 15, .str1 = 0, .off1_… 147 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 15, .str1 = 0, .off1_… 148 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 1, .modrm = 1, .fct1 = 19, .str1 = 0, .off1_… 149 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 27, .str1 = 0, .off1_… 150 …{ .mnemonic = MNE_add, .rep = 0, .repe = 0, .suffix = 0, .modrm = 1, .fct1 = 25, .str1 = 0, .off1_… [all …]
|
/external/pcre/dist/ |
D | pcre_string_utils.c | 68 PRIV(strcmp_uc_uc)(const pcre_uchar *str1, const pcre_uchar *str2) in PRIV() 73 while (*str1 != '\0' || *str2 != '\0') in PRIV() 75 c1 = *str1++; in PRIV() 87 PRIV(strcmp_uc_uc_utf)(const pcre_uchar *str1, const pcre_uchar *str2) in PRIV() 92 while (*str1 != '\0' || *str2 != '\0') in PRIV() 94 c1 = UCHAR21INC(str1); in PRIV() 106 PRIV(strcmp_uc_c8)(const pcre_uchar *str1, const char *str2) in PRIV() 112 while (*str1 != '\0' || *ustr2 != '\0') in PRIV() 114 c1 = *str1++; in PRIV() 126 PRIV(strcmp_uc_c8_utf)(const pcre_uchar *str1, const char *str2) in PRIV() [all …]
|
/external/compiler-rt/test/dfsan/ |
D | custom.cc | 75 char str1[] = "str1", str2[] = "str2"; in test_memcmp() local 76 dfsan_set_label(i_label, &str1[3], 1); in test_memcmp() 79 int rv = memcmp(str1, str2, sizeof(str1)); in test_memcmp() 89 char str1[] = "str1"; in test_memcpy() local 90 char str2[sizeof(str1)]; in test_memcpy() 91 dfsan_set_label(i_label, &str1[3], 1); in test_memcpy() 93 ASSERT_ZERO_LABEL(memcpy(str2, str1, sizeof(str1))); in test_memcpy() 94 assert(0 == memcmp(str2, str1, sizeof(str1))); in test_memcpy() 112 char str1[] = "str1", str2[] = "str2"; in test_strcmp() local 113 dfsan_set_label(i_label, &str1[3], 1); in test_strcmp() [all …]
|
/external/libxml2/ |
D | xmlstring.c | 132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { in xmlStrcmp() argument 135 if (str1 == str2) return(0); in xmlStrcmp() 136 if (str1 == NULL) return(-1); in xmlStrcmp() 139 tmp = *str1++ - *str2; in xmlStrcmp() 157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { in xmlStrEqual() argument 158 if (str1 == str2) return(1); in xmlStrEqual() 159 if (str1 == NULL) return(0); in xmlStrEqual() 162 if (*str1++ != *str2) return(0); in xmlStrEqual() 206 xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) { in xmlStrncmp() argument 210 if (str1 == str2) return(0); in xmlStrncmp() [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | strncmp-1.ll | 21 %str1 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0 22 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10) 27 define i32 @test2(i8* %str1) { 29 ; CHECK: %strcmpload = load i8, i8* %str1 34 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10) 43 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0 45 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10) 53 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0 55 %temp1 = call i32 @strncmp(i8* %str1, i8* %str2, i32 10) 63 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0 [all …]
|
D | strcmp-1.ll | 21 %str1 = getelementptr inbounds [1 x i8], [1 x i8]* @null, i32 0, i32 0 22 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2) 28 define i32 @test2(i8* %str1) { 35 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2) 44 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0 46 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2) 54 %str1 = getelementptr inbounds [5 x i8], [5 x i8]* @hell, i32 0, i32 0 56 %temp1 = call i32 @strcmp(i8* %str1, i8* %str2) 67 %str1 = getelementptr inbounds [6 x i8], [6 x i8]* @hello, i32 0, i32 0 71 %temp3 = call i32 @strcmp(i8* %str1, i8* %str2)
|
/external/v8/test/mjsunit/ |
D | string-externalize.js | 55 var str1 = str + twoByteExternalWithOneByteData; 56 assertTrue(isOneByteString(str1)); 59 var old_length = str1.length - twoByteExternalWithOneByteData.length; 61 assertEquals(String.fromCharCode(i & 0x7f), str1[i]); 63 for (var i = old_length; i < str1.length; i++) { 64 assertEquals("A", str1[i]); 68 assertTrue(isOneByteString(str1)); 71 assertTrue(isOneByteString(str1.toLowerCase()));
|
/external/pdfium/core/include/fxcrt/ |
D | fx_string.h | 419 inline CFX_ByteString operator + (FX_BSTR str1, FX_BSTR str2) 421 return CFX_ByteString(str1, str2); 423 inline CFX_ByteString operator + (FX_BSTR str1, FX_LPCSTR str2) 425 return CFX_ByteString(str1, str2); 427 inline CFX_ByteString operator + (FX_LPCSTR str1, FX_BSTR str2) 429 return CFX_ByteString(str1, str2); 431 inline CFX_ByteString operator + (FX_BSTR str1, FX_CHAR ch) 433 return CFX_ByteString(str1, CFX_ByteStringC(ch)); 439 inline CFX_ByteString operator + (const CFX_ByteString& str1, const CFX_ByteString& str2) 441 return CFX_ByteString(str1, str2); [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | switch-crit-edge-constant.ll | 4 ; CHECK: {{mov.*str1}} 5 ; CHECK-NOT: {{mov.*str1}} 9 @str1 = internal constant [5 x i8] c"bonk\00" ; <[5 x i8]*> [#uses=1] 37 …str1, i32 0, i64 0), %entry ], [ getelementptr ([5 x i8], [5 x i8]* @str1, i32 0, i64 0), %entry ]…
|
/external/valgrind/none/tests/s390x/ |
D | clst.stdout.exp | 2 str1 = 123 7 str1 = 234 12 str1 = equal 17 str1 = 22 str1 = long 27 str1 = lower1
|
D | clst.c | 8 const char *str1; member 24 return (clst_t) { .str1 = string1, .str2 = string2, .cc = get_cc() }; in do_clst() 28 clst(const char *str1, const char *str2, int sentinel) in clst() argument 32 printf("comparing: %s with %s sentinel = %d", str1, str2, sentinel); in clst() 36 res = do_clst(str1, str2, sentinel); in clst() 37 printf("str1 = %s\nstr2 = %s\ncc = %d\n", res.str1, res.str2, res.cc); in clst()
|
/external/llvm/test/MC/ELF/ |
D | basic-elf-64.s | 10 movl $.L.str1, %edi 20 .type .L.str1,@object # @.str1 21 .section .rodata.str1.1,"aMS",@progbits,1 22 .L.str1: 24 .size .L.str1, 6
|
D | basic-elf-32.s | 10 movl $.L.str1, (%esp) 20 .type .L.str1,@object # @.str1 21 .section .rodata.str1.1,"aMS",@progbits,1 22 .L.str1: 24 .size .L.str1, 6
|
D | entsize.s | 6 .section .rodata.str1.1,"aMS",@progbits,1 8 .type .L.str1,@object # @.str1 9 .L.str1: 11 .size .L.str1, 6
|
/external/llvm/test/MC/Mips/ |
D | elf-relsym.s | 51 lw $2, %got($.str1)($1) 52 addiu $2, $2, %lo($.str1) 76 .section .rodata.str1.1,"aMS",@progbits,1 81 .type $.str1,@object # @.str1 82 $.str1: 84 .size $.str1, 5
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-ccmp.ll | 261 %str1 = type { %str2 } 262 …4 x i8], i8*, i32, %str1*, i32, [4 x i8], %str1*, %str1*, %str1*, %str1*, %str1*, %str1*, %str1*, … 283 %ref.tr.i.i = phi %str1* [ %0, %sw.bb.i.i ], [ undef, %entry ] 284 %operands.i.i = getelementptr inbounds %str1, %str1* %ref.tr.i.i, i64 0, i32 0, i32 2 285 %arrayidx.i.i = bitcast i32* %operands.i.i to %str1** 286 %0 = load %str1*, %str1** %arrayidx.i.i, align 8 287 %code1.i.i.phi.trans.insert = getelementptr inbounds %str1, %str1* %0, i64 0, i32 0, i32 0, i64 16
|
/external/icu/icu4c/source/common/ |
D | cstring.c | 233 uprv_stricmp(const char *str1, const char *str2) { in uprv_stricmp() argument 234 if(str1==NULL) { in uprv_stricmp() 248 c1=(unsigned char)*str1; in uprv_stricmp() 265 ++str1; in uprv_stricmp() 272 uprv_strnicmp(const char *str1, const char *str2, uint32_t n) { in uprv_strnicmp() argument 273 if(str1==NULL) { in uprv_strnicmp() 287 c1=(unsigned char)*str1; in uprv_strnicmp() 304 ++str1; in uprv_strnicmp()
|
/external/libcxx/test/std/experimental/string.view/string.view.ops/ |
D | to_string.pass.cpp | 28 String str1 = (String) sv1; in test() local 30 assert ( sv1.size() == str1.size ()); in test() 31 assert ( std::char_traits<CharT>::compare ( sv1.data(), str1.data(), sv1.size()) == 0 ); in test() 42 String str1 = (String) sv1; in test() local 45 assert ( sv1.size() == str1.size ()); in test()
|
/external/libxml2/include/libxml/ |
D | xmlstring.h | 64 xmlStrcmp (const xmlChar *str1, 67 xmlStrncmp (const xmlChar *str1, 71 xmlStrcasecmp (const xmlChar *str1, 74 xmlStrncasecmp (const xmlChar *str1, 78 xmlStrEqual (const xmlChar *str1, 94 xmlStrncatNew (const xmlChar *str1,
|
/external/ltrace/sysdeps/linux-gnu/ |
D | hooks.c | 38 append(const char *str1, const char *str2) in append() argument 40 char *ret = malloc(strlen(str1) + strlen(str2) + 2); in append() 43 strcpy(stpcpy(ret, str1), str2); in append() 48 add_dir(struct vect *dirs, const char *str1, const char *str2) in add_dir() argument 50 char *dir = append(str1, str2); in add_dir() 55 str1, str2, strerror(errno)); in add_dir()
|
/external/llvm/unittests/ADT/ |
D | FoldingSet.cpp | 28 std::string str1= "a test string"; in TEST() local 29 a.AddString(str1); in TEST() 32 std::string str2 = ">" + str1; in TEST()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | UtilityTest.java | 221 CaseInsensitiveString str1 = new CaseInsensitiveString("ThIs is A tEst"); in TestCaseInsensitiveString() local 223 if (!str1.equals(str2) in TestCaseInsensitiveString() 224 || !str1.toString().equals(str1.getString()) in TestCaseInsensitiveString() 225 || str1.toString().equals(str2.toString())) in TestCaseInsensitiveString() 227 errln("FAIL: str1("+str1+") != str2("+str2+")"); in TestCaseInsensitiveString()
|
/external/zopfli/src/zopfli/ |
D | zopfli_bin.c | 115 static char* AddStrings(const char* str1, const char* str2) { in AddStrings() argument 116 size_t len = strlen(str1) + strlen(str2); in AddStrings() 119 strcpy(result, str1); in AddStrings() 124 static char StringsEqual(const char* str1, const char* str2) { in StringsEqual() argument 125 return strcmp(str1, str2) == 0; in StringsEqual()
|
/external/lldb/test/lang/objc/sample/ |
D | main.m | 55 NSString *str1 = myStr.string; 58 NSArray *array = [NSArray arrayWithObjects: str1, str2, str3, nil]; 60 str1, @"1", 66 id str_id = str1;
|