/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMemoryManagerTest.cpp | 22 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); in TEST() local 26 EXPECT_NE((uint8_t*)nullptr, code2); in TEST() 33 code2[i] = 2; in TEST() 41 EXPECT_EQ(2, code2[i]); in TEST() 55 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); in TEST() local 59 EXPECT_NE((uint8_t*)nullptr, code2); in TEST() 66 code2[i] = 2; in TEST() 74 EXPECT_EQ(2, code2[i]); in TEST()
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMemoryManagerTest.cpp | 22 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); in TEST() local 26 EXPECT_NE((uint8_t*)nullptr, code2); in TEST() 33 code2[i] = 2; in TEST() 41 EXPECT_EQ(2, code2[i]); in TEST() 55 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); in TEST() local 59 EXPECT_NE((uint8_t*)nullptr, code2); in TEST() 66 code2[i] = 2; in TEST() 74 EXPECT_EQ(2, code2[i]); in TEST()
|
/external/swiftshader/third_party/SPIRV-Tools/test/stats/ |
D | stats_aggregate_test.cpp | 74 const std::string code2 = R"( in TEST() local 90 CompileAndAggregateStats(code2, &stats); in TEST() 106 CompileAndAggregateStats(code2, &stats); in TEST() 125 const std::string code2 = R"( in TEST() local 140 CompileAndAggregateStats(code2, &stats); in TEST() 152 CompileAndAggregateStats(code2, &stats); in TEST() 221 const std::string code2 = R"( in TEST() local 237 CompileAndAggregateStats(code2, &stats); in TEST() 253 CompileAndAggregateStats(code2, &stats); in TEST() 270 const std::string code2 = R"( in TEST() local [all …]
|
/external/deqp-deps/SPIRV-Tools/test/stats/ |
D | stats_aggregate_test.cpp | 74 const std::string code2 = R"( in TEST() local 90 CompileAndAggregateStats(code2, &stats); in TEST() 106 CompileAndAggregateStats(code2, &stats); in TEST() 125 const std::string code2 = R"( in TEST() local 140 CompileAndAggregateStats(code2, &stats); in TEST() 152 CompileAndAggregateStats(code2, &stats); in TEST() 221 const std::string code2 = R"( in TEST() local 237 CompileAndAggregateStats(code2, &stats); in TEST() 253 CompileAndAggregateStats(code2, &stats); in TEST() 270 const std::string code2 = R"( in TEST() local [all …]
|
/external/strace/ |
D | ioctlsort.c | 99 unsigned int code2 = code((struct ioctlent *) b); in compare_code_name() local 102 return (code1 > code2) ? in compare_code_name() 103 1 : (code1 < code2) ? -1 : strcmp(name1, name2); in compare_code_name()
|
D | ioctl.c | 40 const unsigned int code2 = ((struct_ioctlent *) b)->code; in compare() local 41 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0; in compare()
|
/external/v8/tools/profview/ |
D | profile-utils.js | 81 function codeEquals(code1, code2, allowDifferentKinds = false) { argument 82 if (!code1 || !code2) return false; 83 if (code1.name !== code2.name || code1.type !== code2.type) return false; 86 if (!allowDifferentKinds && code1.kind !== code2.kind) return false; 88 if (!allowDifferentKinds && code1.kind !== code2.kind) return false; 89 if (code1.func !== code2.func) return false;
|
/external/python/cpython2/Lib/ |
D | codeop.py | 79 code = code1 = code2 = None 92 code2 = compiler(source + "\n\n", filename, symbol)
|
D | sre_parse.py | 481 code2 = _class_escape(source, this, nested + 1) 483 code2 = LITERAL, ord(this) 484 if code1[0] != LITERAL or code2[0] != LITERAL: 487 hi = code2[1]
|
/external/python/cpython3/Lib/ |
D | codeop.py | 79 code = code1 = code2 = None 92 code2 = compiler(source + "\n\n", filename, symbol)
|
D | sre_parse.py | 563 code2 = _class_escape(source, that) 572 code2 = LITERAL, _ord(that) 573 if code1[0] != LITERAL or code2[0] != LITERAL: 577 hi = code2[1]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | TestLocaleValidity.java | 328 …atasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) { 329 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2); 330 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | TestLocaleValidity.java | 325 …atasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) { 326 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2); 327 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
D | ShapeImmutableTest.java | 59 Code2 code2 = (Code2) yaml.load("!!org.yaml.snakeyaml.immutable.Code2 555"); in testCode2() local 60 assertEquals(new Integer(555), code2.getCode()); in testCode2()
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | adb_wrapper_devicetest.py | 60 (res2, code2) = pshell.RunCommand('echo TEST2') 65 self.assertEqual(code2, 0)
|
/external/python/cpython2/Demo/parser/ |
D | test_unparse.py | 86 code2 = unparse_buffer.getvalue() 87 ast2 = compile(code2, filename, "exec", ast.PyCF_ONLY_AST)
|
/external/python/cpython3/Lib/test/test_tools/ |
D | test_unparse.py | 130 code2 = unparse_buffer.getvalue() 131 ast2 = compile(code2, filename, "exec", ast.PyCF_ONLY_AST)
|
/external/openssh/ |
D | authfd.c | 269 u_char type, code1 = 0, code2 = 0; in ssh_fetch_identitylist() local 279 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER; in ssh_fetch_identitylist() 283 code2 = SSH2_AGENT_IDENTITIES_ANSWER; in ssh_fetch_identitylist() 307 } else if (type != code2) { in ssh_fetch_identitylist()
|
/external/freetype/src/pfr/ |
D | pfrobjs.c | 479 FT_UInt32 code1, code2, pair; in pfr_face_get_kerning() local 497 code2 = phy_font->chars[glyph2].char_code; in pfr_face_get_kerning() 498 pair = PFR_KERN_INDEX( code1, code2 ); in pfr_face_get_kerning()
|
/external/libchrome/base/ |
D | logging_unittest.cc | 255 DWORD code2 = 0; in TEST_F() local 271 GetCheckExceptionData(GetExceptionInformation(), &code2, &addr2)) { in TEST_F() 283 EXPECT_EQ(STATUS_BREAKPOINT, code2); in TEST_F()
|
/external/pdfium/fxbarcode/qrcode/ |
D | BC_QRCoderEncoder.cpp | 99 int32_t code2 = GetAlphaNumericCode(content[i + 1]); in AppendAlphaNumericBytes() local 100 if (code2 == -1) { in AppendAlphaNumericBytes() 104 bits->AppendBits(code1 * 45 + code2, 11); in AppendAlphaNumericBytes()
|
/external/python/cpython2/Lib/test/ |
D | test_parser.py | 653 code2 = parser.compilest(st) 654 self.assertEqual(eval(code2), -3)
|
/external/syzkaller/sys/linux/ |
D | bpf.txt | 229 code2 const[0, int8] 241 code2 const[0, int8]
|
/external/python/cpython3/Lib/test/ |
D | test_parser.py | 746 code2 = parser.compilest(st) 747 self.assertEqual(eval(code2), -3)
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | ResTable_config.java | 2208 private boolean areIdentical(final byte[] code1, final byte[] code2) { in areIdentical() argument 2209 return code1[0] == code2[0] && code1[1] == code2[1]; in areIdentical()
|