Home
last modified time | relevance | path

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

/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITMemoryManagerTest.cpp24 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3); in TEST() local
28 EXPECT_NE((uint8_t*)0, code2); in TEST()
35 code2[i] = 2; in TEST()
43 EXPECT_EQ(2, code2[i]); in TEST()
57 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3); in TEST() local
61 EXPECT_NE((uint8_t*)0, code2); in TEST()
68 code2[i] = 2; in TEST()
76 EXPECT_EQ(2, code2[i]); in TEST()
/external/chromium_org/third_party/sqlite/src/test/
Dlock_common.tcl22 proc code2 {tcl} { testfixture $::code2_chan $tcl }
26 proc code2 {tcl} { uplevel #0 $tcl }
41 code2 { sqlite3 db2 test.db }
48 proc sql2 {sql} { code2 [list db2 eval $sql] }
58 code2 { db2 close }
Dbackcompat.test70 proc code2 {tcl} { uplevel #0 $tcl }
71 if {$bin1 != ""} { proc code2 {tcl} { testfixture $::bc_chan1 $tcl } }
76 proc code2 {tcl} { testfixture $::bc_chan2 $tcl }
80 proc sql2 sql { code2 [list db eval $sql] }
83 code2 { sqlite3 db test.db }
88 catch { code2 { db close } }
217 code2 { db close }
220 code2 { sqlite3 db test.db }
240 && [code2 {sqlite3 -version}] >= "3.7.0"
257 code2 {db close}
[all …]
Dwal5.test82 code2 {db2 close}
86 code2 {sqlite3 db2 test.db}
309 code2 $do_wal_checkpoint
324 do_test 3.$tn.2 { code2 { do_wal_checkpoint db2 } } {0 2 2}
326 do_test 3.$tn.3 { code2 { do_wal_checkpoint db2 } } {0 2 2}
331 code2 {db2 close}
335 code2 {sqlite3 db2 test.db}
Dpager1.test1721 code2 {
1737 code2 {
2276 code2 { db2 close ; sqlite3 db2 test.db }
/external/strace/
Dioctlsort.c54 unsigned long code2 = ((struct ioctlent *) b)->code; local
55 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0;
Dioctl.c77 unsigned long code2 = ((struct ioctlent *) b)->code; local
78 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0;
/external/v8/test/mjsunit/
Dstrict-mode-eval.js31 var code2 = "function f(a, a) {}"; variable
40 eval_alias(code2);
57 eval(code2);
/external/chromium_org/v8/test/mjsunit/
Dstrict-mode-eval.js31 var code2 = "function f(a, a) {}"; variable
40 eval_alias(code2);
57 eval(code2);
Deval-stack-trace.js114 var code2 = "function h() { \n" + variable
121 eval(code2);
/external/chromium_org/third_party/re2/re2/
Dperl_groups.cc11 static URange16 code2[] = { /* \s */ variable
25 { "\\s", +1, code2, 3 },
26 { "\\S", -1, code2, 3 },
/external/regex-re2/re2/
Dperl_groups.cc11 static URange16 code2[] = { /* \s */ variable
25 { "\\s", +1, code2, 3 },
26 { "\\S", -1, code2, 3 },
/external/strace/linux/
Dioctlsort.c28 unsigned long code2 = ((struct ioctlent *) b)->code; in compare() local
31 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : strcmp (name1, name2); in compare()
/external/chromium_org/chrome/test/chromedriver/test/
Drun_all_tests.py156 code2 = RunJavaTests(chromedriver,
160 code = code or code1 or code2
185 code2 = RunJavaTests(chromedriver, chrome=chrome_path,
188 code = code or code1 or code2
/external/chromium_org/chrome/browser/search_engines/
Dtemplate_url_prepopulate_data.cc748 #define CODE_TO_ID(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
749 (CHAR(code1) << 8 | CHAR(code2)) in GetPrepopulationSetFromCountryID()
751 #define UNHANDLED_COUNTRY(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
752 case CODE_TO_ID(code1, code2): in GetPrepopulationSetFromCountryID()
753 #define END_UNHANDLED_COUNTRIES(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
754 *engines = engines_##code1##code2;\ in GetPrepopulationSetFromCountryID()
755 *num_engines = arraysize(engines_##code1##code2);\ in GetPrepopulationSetFromCountryID()
757 #define DECLARE_COUNTRY(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
758 UNHANDLED_COUNTRY(code1, code2)\ in GetPrepopulationSetFromCountryID()
759 END_UNHANDLED_COUNTRIES(code1, code2) in GetPrepopulationSetFromCountryID()
/external/openssh/
Dauthfd.c257 int type, code1 = 0, code2 = 0; in ssh_get_num_identities() local
263 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER; in ssh_get_num_identities()
267 code2 = SSH2_AGENT_IDENTITIES_ANSWER; in ssh_get_num_identities()
291 } else if (type != code2) { in ssh_get_num_identities()
/external/llvm/unittests/ExecutionEngine/JIT/
DJITMemoryManagerTest.cpp286 uint8_t *code2 = MemMgr->allocateCodeSection(257, 32, 3); in TEST() local
291 EXPECT_NE((uint8_t*)0, code2); in TEST()
297 EXPECT_EQ((uint64_t)code2 & 0x1f, 0u); in TEST()
/external/chromium/chrome/browser/search_engines/
Dtemplate_url_prepopulate_data.cc3016 #define CODE_TO_ID(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
3017 (CHAR(code1) << 8 | CHAR(code2)) in GetPrepopulationSetFromCountryID()
3019 #define UNHANDLED_COUNTRY(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
3020 case CODE_TO_ID(code1, code2): in GetPrepopulationSetFromCountryID()
3021 #define END_UNHANDLED_COUNTRIES(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
3022 *engines = engines_##code1##code2;\ in GetPrepopulationSetFromCountryID()
3023 *num_engines = arraysize(engines_##code1##code2);\ in GetPrepopulationSetFromCountryID()
3025 #define DECLARE_COUNTRY(code1, code2)\ in GetPrepopulationSetFromCountryID() argument
3026 UNHANDLED_COUNTRY(code1, code2)\ in GetPrepopulationSetFromCountryID()
3027 END_UNHANDLED_COUNTRIES(code1, code2) in GetPrepopulationSetFromCountryID()
/external/grub/stage2/
Dshared.h393 char code2[0x01F1 - 0x0020 - 2 - 2]; member
/external/libvpx/libvpx/examples/includes/geshi/docs/
Dgeshi-doc.txt640 $code2 = $geshi->parse_code();
/external/chromium_org/third_party/WebKit/PerformanceTests/Parser/resources/
Dfinal-url-en47432 http://www.holdthefrontpage.co.uk/day/code/code2.shtml