Home
last modified time | relevance | path

Searched refs:VM (Results 1 – 25 of 108) sorted by relevance

12345

/external/chromium_org/third_party/sqlite/src/test/
Dbind.test40 set VM [sqlite3_prepare $DB {INSERT INTO t1 VALUES(:1,?,:abc)} -1 TAIL]
44 sqlite3_bind_parameter_count $VM
47 sqlite3_bind_parameter_name $VM 1
50 sqlite3_bind_parameter_name $VM 2
53 sqlite3_bind_parameter_name $VM 3
56 sqlite_step $VM N VALUES COLNAMES
62 sqlite3_reset $VM
63 sqlite_bind $VM 1 {test value 1} normal
64 sqlite_step $VM N VALUES COLNAMES
70 sqlite3_reset $VM
[all …]
Dcapi2.test53 set VM [sqlite3_prepare $DB {SELECT name, rowid FROM sqlite_master} -1 TAIL]
57 sqlite3_step $VM
60 sqlite3_data_count $VM
63 get_row_values $VM
66 get_column_names $VM
69 sqlite3_step $VM
72 list [sqlite3_column_count $VM] [get_row_values $VM] [get_column_names $VM]
79 sqlite3_step $VM
83 sqlite3_step $VM
92 sqlite3_reset $VM
[all …]
Dcapi3b.test67 set VM [sqlite3_prepare $DB2 {INSERT INTO t1 VALUES(3)} -1 TAIL]
68 sqlite3_step $VM
74 sqlite3_step $VM
77 sqlite3_step $VM
85 sqlite3_step $VM
88 sqlite3_finalize $VM
Dattach2.test138 set rc [catch {sqlite3_prepare $DB "ATTACH 'test2.db' AS t2" -1 TAIL} VM]
139 if {$rc} {lappend rc $VM}
140 sqlite3_step $VM
141 sqlite3_finalize $VM
145 set rc [catch {sqlite3_prepare $DB "DETACH t2" -1 TAIL} VM]
146 if {$rc} {lappend rc $VM}
147 sqlite3_step $VM
148 sqlite3_finalize $VM
Dvacuum.test224 set VM [sqlite3_prepare $DB {VACUUM} -1 TAIL]
225 sqlite3_step $VM
228 sqlite3_finalize $VM
/external/llvm/unittests/IR/
DValueMapTest.cpp49 ValueMap<TypeParam*, int> VM; in TYPED_TEST() local
50 VM[this->BitcastV.get()] = 7; in TYPED_TEST()
51 EXPECT_EQ(7, VM.lookup(this->BitcastV.get())); in TYPED_TEST()
52 EXPECT_EQ(0, VM.count(this->AddV.get())); in TYPED_TEST()
54 EXPECT_EQ(7, VM.lookup(this->AddV.get())); in TYPED_TEST()
55 EXPECT_EQ(0, VM.count(this->BitcastV.get())); in TYPED_TEST()
57 EXPECT_EQ(0, VM.count(this->AddV.get())); in TYPED_TEST()
58 EXPECT_EQ(0, VM.count(this->BitcastV.get())); in TYPED_TEST()
59 EXPECT_EQ(0U, VM.size()); in TYPED_TEST()
63 ValueMap<TypeParam*, int> VM; in TYPED_TEST() local
[all …]
/external/llvm/lib/Transforms/Utils/
DValueMapper.cpp27 Value *llvm::MapValue(const Value *V, ValueToValueMapTy &VM, RemapFlags Flags, in MapValue() argument
30 ValueToValueMapTy::iterator I = VM.find(V); in MapValue()
33 if (I != VM.end() && I->second) return I->second; in MapValue()
38 return VM[V] = NewV; in MapValue()
44 return VM[V] = const_cast<Value*>(V); in MapValue()
57 return VM[V] = const_cast<Value*>(V); in MapValue()
65 return VM[V] = const_cast<Value*>(V); in MapValue()
69 VM[V] = Dummy; in MapValue()
75 Value *Mapped_OP = MapValue(OP, VM, Flags, TypeMapper, Materializer); in MapValue()
90 Value *Mapped_Op = MapValue(Op, VM, Flags, TypeMapper, Materializer); in MapValue()
[all …]
/external/llvm/docs/HistoricalNotes/
D2001-07-06-LoweringIRForCodeGen.txt9 VM -- it is a little too specialized. But without a corresponding
10 conditional move instruction in the VM, it is pretty difficult to maintain a
11 close mapping between VM and machine code. Other architectures may have
15 additional VM instructions that match some of the unusual opcodes on the
16 processor but have VM semantics otherwise, i.e., all operands are in SSA
17 form and typed. This means that we can re-generate core VM code from the
20 Typically, a static compiler like gcc would generate just the core VM, which
23 specialized target-specific VM code for a particular architecture. If the
28 mapping between VM and machine code.
D2000-11-18-EarlyDesignIdeasResp.txt9 > 1. We need to be clear on our goals for the VM. Do we want to emphasize
10 > portability and safety like the Java VM? Or shall we focus on the
18 1. The VM code is NOT guaranteed safe in a java sense. Doing so makes it
31 VM. Performance is not wonderful, but it works right.
36 we could sign the generated VM code with a host specific private
48 for value add. The nice safe "sandbox" VM can be provided as a layer
58 > a. A single-assignment VM, which we've both already been thinking
62 however, by the prospect of a minimally allocated VM representation... I
78 VM). This is the point that disallows java style bytecodes, where all
87 > b. A strongly-typed VM. One question is do we need the types to be
[all …]
D2000-11-18-EarlyDesignIdeas.txt9 1. We need to be clear on our goals for the VM. Do we want to emphasize
10 portability and safety like the Java VM? Or shall we focus on the
28 a. A single-assignment VM, which we've both already been thinking about.
30 b. A strongly-typed VM. One question is do we need the types to be
33 c. How do we get more high-level information into the VM while keeping
34 to a low-level VM design?
D2001-06-20-.NET-Differences.txt4 Subject: .NET vs. our VM
6 One significant difference between .NET CLR and our VM is that the CLR
14 advantages to have a much lower level VM layer, and do significant static
D2001-05-18-ExceptionHandling.txt5 the VM, as well as an extension to the LLVM function invocation syntax.
22 To support this, the VM/Runtime provide the following simple library
26 The VM must export a "frame type", that is an opaque structure used to
129 on the call stack (it does not have a VM Call->Label mapping installed), so
D2001-02-06-TypeNotationDebateResp2.txt21 * As a low level VM, we want to expose addressing computations
/external/llvm/include/llvm/Transforms/Utils/
DValueMapper.h69 Value *MapValue(const Value *V, ValueToValueMapTy &VM,
74 void RemapInstruction(Instruction *I, ValueToValueMapTy &VM,
81 inline MDNode *MapValue(const MDNode *V, ValueToValueMapTy &VM,
85 return cast<MDNode>(MapValue((const Value*)V, VM, Flags, TypeMapper,
88 inline Constant *MapValue(const Constant *V, ValueToValueMapTy &VM,
92 return cast<Constant>(MapValue((const Value*)V, VM, Flags, TypeMapper,
/external/android-mock/src/com/google/android/testing/mocking/
DGeneratedMockJar.readme9 an Android (Dalvik) VM.
13 transformations to avoid Dalvik VM troubles.
20 loading to the Dalvik VM by having called the MockGenerator.jar file. Try
/external/chromium_org/chrome_frame/test/
Dpoor_mans_trybot.bat8 REM a VM or separate machine, you need to copy a bunch of things over
12 REM batch file on a VM or a separate machine, that has a drive mapped
20 REM NOTE: I've seen cases where a Vista VM under Virtual PC will fail
24 REM when run from the VM, whereas your workspace actually just built
26 REM what files you actually have in the local copy on the VM after
28 REM VM seems to help.
/external/qemu/
Dqemu-monitor.hx73 show list of VM snapshots
75 show the current VM status (running|paused)
83 show the current VM name
85 show the current VM UUID
174 "[tag|id]", "save a VM snapshot. If no tag or id are provided, a new snapshot is created" },
184 "tag|id", "restore a VM snapshot from its tag or id" },
192 "tag|id", "delete a VM snapshot from its tag or id" },
311 … "keys [hold_ms]", "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)" },
474 "", "cancel the current VM migration" },
477 Cancel the current VM migration.
[all …]
/external/clang/test/CodeGenOpenCL/
Dshifts.cl34 //CHECK: [[VM:%.+]] = and <4 x i32> %b, <i32 31, i32 31, i32 31, i32 31>
35 //CHECK-NEXT: [[VC:%.+]] = shl <4 x i32> %a, [[VM]]
/external/llvm/lib/Target/R600/
DSIInsertWaits.cpp34 unsigned VM; member
128 Result.Named.VM = !!(TSFlags & SIInstrFlags::VM_CNT); in getHwCounts()
294 .addImm((Counts.Named.VM & 0xF) | in insertWait()
/external/chromium_org/tools/valgrind/gtest_exclude/
Dbase_unittests.gtest.txt21 # Flaky under slow tools or just when the VM is under load.
/external/chromium_org/tools/gyp/test/rules-variables/src/
Dvariables.gyp9 # slightly broken in either ninja or (maybe more likely?) on the win32 VM
/external/smali/
DREADME.md3 smali/baksmali is an assembler/disassembler for the dex format used by dalvik, Android's Java VM im…
/external/dexmaker/
DREADME10 A Java-language API for doing compile time or runtime code generation targeting the Dalvik VM. Unli…
/external/chromium_org/v8/test/webkit/
DregisterCachingAcrossBranchTargets-expected.txt24 This test makes sure we don't incorrectly cache virtual registers in system registers across VM bra…
/external/bison/tests/
Datlocal.in84 # Empty if no Java VM was found

12345