Home
last modified time | relevance | path

Searched refs:code2 (Results 1 – 18 of 18) sorted by relevance

/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITMemoryManagerTest.cpp22 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/regex-re2/re2/
Dperl_groups.cc11 static URange16 code2[] = { /* \s */ variable
25 { "\\s", +1, code2, 3 },
26 { "\\S", -1, code2, 3 },
/external/strace/
Dioctlsort.c99 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()
Dioctl.c47 const unsigned int code2 = ((struct_ioctlent *) b)->code; in compare() local
48 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0; in compare()
/external/python/cpython2/Lib/
Dcodeop.py79 code = code1 = code2 = None
92 code2 = compiler(source + "\n\n", filename, symbol)
Dsre_parse.py462 code2 = _class_escape(source, this)
464 code2 = LITERAL, ord(this)
465 if code1[0] != LITERAL or code2[0] != LITERAL:
468 hi = code2[1]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DTestLocaleValidity.java321 …atasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) {
322 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2);
323 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DTestLocaleValidity.java322 …atasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) {
323 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2);
324 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value);
/external/libmojo/third_party/catapult/devil/devil/android/sdk/
Dadb_wrapper_devicetest.py55 (res2, code2) = pshell.RunCommand('echo TEST2')
62 self.assertEqual(code2, 0)
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
DShapeImmutableTest.java59 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/
Dadb_wrapper_devicetest.py60 (res2, code2) = pshell.RunCommand('echo TEST2')
65 self.assertEqual(code2, 0)
/external/python/cpython2/Demo/parser/
Dtest_unparse.py86 code2 = unparse_buffer.getvalue()
87 ast2 = compile(code2, filename, "exec", ast.PyCF_ONLY_AST)
/external/openssh/
Dauthfd.c269 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/r8/src/test/java/com/android/tools/r8/smali/
DOutlineTest.java632 DexCode code2 = getMethod(processedApplication, signature2).getCode().asDexCode(); in constructor() local
633 assertEquals(5, code2.instructions.length); in constructor()
634 assertTrue(code2.instructions[2] instanceof InvokeStatic); in constructor()
635 InvokeStatic invoke2 = (InvokeStatic) code2.instructions[2]; in constructor()
1100 DexCode code2 = method2.getCode().asDexCode(); in outlineArithmeticBinop() local
1101 assertTrue(code2.instructions[0] instanceof InvokeStatic); in outlineArithmeticBinop()
1102 InvokeStatic invoke2 = (InvokeStatic) code2.instructions[0]; in outlineArithmeticBinop()
/external/python/cpython2/Lib/test/
Dtest_parser.py578 code2 = parser.compilest(st)
579 self.assertEqual(eval(code2), -3)
/external/pdfium/xfa/fxbarcode/qrcode/
DBC_QRCoderEncoder.cpp717 int32_t code2 = GetAlphaNumericCode(content[i + 1]); in AppendAlphaNumericBytes() local
718 if (code2 == -1) { in AppendAlphaNumericBytes()
722 bits->AppendBits(code1 * 45 + code2, 11, e); in AppendAlphaNumericBytes()
/external/autotest/site_utils/
Drun_suite.py106 def get_worse_code(code1, code2): argument
115 return code1 if SEVERITY[code1] >= SEVERITY[code2] else code2
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dsg_err.c260 unsigned char code1, code2; member
998 if (additional[k].code1 == asc && additional[k].code2 == ascq) { in sg_print_asc_ascq()