Searched refs:Goto (Results 1 - 25 of 26) sorted by relevance

12

/external/libpng/contrib/pngminus/
H A Dmakevms.com60 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
65 $ If Argument .Eqs. "" Then Goto Exit
69 $ If File .Eqs. " " Then Goto Endl
74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
75 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
76 $ Goto Loop3
79 $ Goto Loop2
82 $ If arg .Le. 8 Then Goto Loop
83 $ Goto Exit
/external/libpng/scripts/
H A Dmakevms.com110 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
115 $ If Argument .Eqs. "" Then Goto Exit
119 $ If File .Eqs. " " Then Goto Endl
124 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
125 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
126 $ Goto Loop3
129 $ Goto Loop2
132 $ If arg .Le. 8 Then Goto Loop
133 $ Goto Exit
/external/chromium_org/v8/src/
H A Dhydrogen-osr.cc37 builder_->Goto(non_osr_entry, loop_predecessor);
77 builder_->Goto(loop_predecessor);
H A Dhydrogen.cc212 void HBasicBlock::Goto(HBasicBlock* block, function in class:v8::internal::HBasicBlock
3350 Goto(first, join_block);
3351 Goto(second, join_block);
3362 if (exit_block != NULL) Goto(exit_block, continue_block);
3375 if (body_exit != NULL) Goto(body_exit, loop_entry);
3378 if (loop_successor != NULL) Goto(loop_successor, break_block);
3389 Goto(loop_entry);
4155 owner()->Goto(empty_true, if_true(), owner()->function_state());
4156 owner()->Goto(empty_false, if_false(), owner()->function_state());
4167 owner()->Goto(true_branc
[all...]
H A Dhydrogen.h132 // Goto (target block)
172 void Goto(HBasicBlock* block,
177 Goto(block, position, NULL, false);
1080 void Goto(HBasicBlock* from, function in class:v8::internal::HGraphBuilder
1084 from->Goto(target, source_position(), state, add_simulate);
1086 void Goto(HBasicBlock* target, function in class:v8::internal::HGraphBuilder
1089 Goto(current_block(), target, state, add_simulate);
1092 Goto(from, target, NULL, false);
1095 Goto(target, NULL, false);
1578 // IfBuilder. This appends a Goto instructio
[all...]
H A Dcode-stubs-hydrogen.cc128 Goto(next_block);
H A Dhydrogen-instructions.h103 V(Goto) \
1387 DECLARE_CONCRETE_INSTRUCTION(Goto)
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-run-machops.cc92 m.Goto(&next);
106 m.Goto(&labels[i]);
150 m.Goto(&blocka);
167 m.Goto(&blockb);
183 m.Goto(&end);
185 m.Goto(&end);
198 m.Goto(&header);
202 m.Goto(&header);
218 m->Goto(end);
220 m->Goto(en
[all...]
/external/libpng/contrib/gregbook/
H A Dmakevms.com100 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
105 $ If Argument .Eqs. "" Then Goto Exit
109 $ If File .Eqs. " " Then Goto Endl
114 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
115 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
116 $ Goto Loop3
119 $ Goto Loop2
122 $ If arg .Le. 8 Then Goto Loop
123 $ Goto Exit
/external/zlib/src/
H A Dmake_vms.com263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
278 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
279 $ Goto Loop3
282 $ Goto Loop2
285 $ If arg .Le. 8 Then Goto Loop
286 $ Goto Exit
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector-unittest.cc224 m.Goto(&c);
226 m.Goto(&c);
244 m.Goto(&c);
246 m.Goto(&c);
H A Draw-machine-assembler.cc62 void RawMachineAssembler::Goto(Label* label) {
H A Draw-machine-assembler.h377 void Goto(Label* label);
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h129 // SExprs of variable arity, such as Phi, Goto, and SCFG.
243 R_SExpr reduceGoto(Goto &Orig, BasicBlock *B) {
244 return new (Arena) Goto(Orig, B, 0); // FIXME: set index
376 R_SExpr reduceGoto(Goto &Orig, BasicBlock *B) {
894 void printGoto(Goto *E, StreamType &SS) {
H A DThreadSafetyTIL.h1523 SExprRef Terminator; // Branch or Goto
1606 class Goto : public SExpr { class in namespace:clang::threadSafety
1610 Goto(BasicBlock *B, unsigned I) function in class:clang::threadSafety::Goto
1612 Goto(const Goto &G, BasicBlock *B, unsigned I) function in class:clang::threadSafety::Goto
1626 template <class C> typename C::CType compare(Goto *E, C &Cmp) {
/external/sqlite/dist/orig/
H A Dshell.c1199 ** * For each "Goto", if the jump destination is earlier in the program
1204 ** and "Goto" by 2 spaces.
1216 const char *azGoto[] = { "Goto", 0 };
/external/sqlite/dist/
H A Dshell.c1204 ** * For each "Goto", if the jump destination is earlier in the program
1209 ** and "Goto" by 2 spaces.
1221 const char *azGoto[] = { "Goto", 0 };
/external/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp729 til::SExpr *Tm = new (Arena) til::Goto(BB, Idx);
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.h83 V(Goto) \
389 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h87 V(Goto) \
389 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.h83 V(Goto) \
386 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.h83 V(Goto) \
385 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h83 V(Goto) \
394 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.h88 V(Goto) \
406 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.h86 V(Goto) \
496 DECLARE_CONCRETE_INSTRUCTION(Goto, "goto")

Completed in 7632 milliseconds

12