HomeSort by: relevance | last modified time | path
    Searched defs:Move (Results 1 - 9 of 9) sorted by relevancy

  /src/games/sail/
game.c 63 int riggone = 0, Move, flank = 0;
65 Move = ship->specs->bs;
76 Move = ship->specs->fs;
79 Move -= 1 + WET[windspeed][ship->specs->class-1].B;
82 Move -= 1 + WET[windspeed][ship->specs->class-1].C;
85 Move = (flank ? 2 : 1) - WET[windspeed][ship->specs->class-1].D;
87 Move = 0;
89 Move -= WET[windspeed][ship->specs->class-1].A;
90 Move -= riggone;
91 Move = Move < 0 ? 0 : Move
    [all...]
  /src/games/trek/
externs.c 111 struct Move_struct Move;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h 32 Move, // (Src, Dst, Pos): move Src to be a child of Dst at offset Pos.
33 UpdateMove // Same as Move plus Update.
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
function.bench.cpp 137 struct Move {
143 benchmark::DoNotOptimize(values[i ^ 1] = std::move(values[i]));
225 makeCartesianProductBenchmark<Move, AllFunctionTypes>();
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kInstrInfo.cpp 350 unsigned Move = MVTDst == MVT::i16 ? M68k::MOV16rr : M68k::MOV32rr;
377 MIB->setDesc(get(Move));
384 /// Expand SExt MOVE pseudos into a MOV and a EXT if the operands are two
390 unsigned Move;
393 Move = M68k::MOV16rr;
395 Move = M68k::MOV32rr;
418 LLVM_DEBUG(dbgs() << "Move and " << '\n');
419 BuildMI(MBB, MIB.getInstr(), DL, get(Move), Dst).addReg(SSrc);
452 // Make this a plain move
788 /// TODO Move this function to M68kMachineFunctionInfo
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp 98 m - move [files] in the archive
170 handleAllErrors(std::move(E), [&](const llvm::ErrorInfoBase &EIB) {
195 Move, ///< Move members to end or as given by {a,b,i} modifiers
217 // Relative Positional Argument (for insert/move). This variable holds
276 ArchiveBuffers.push_back(std::move(*BufOrErr));
281 Archives.push_back(std::move(*LibOrErr));
318 Operation = Move;
433 if (Operation != Move && Operation != ReplaceOrInsert)
586 case Move
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp 578 auto Move = Moves.find(PD);
579 assert(Move != Moves.end() &&
580 "Coroutine function parameter not inserted into move map");
584 cast<VarDecl>(cast<DeclStmt>(Move->second)->getSingleDecl());
997 // Move the return value if we can
1644 /// Build a variable declaration for move parameter.
1654 // Build statements that move coroutine function parameters to the coroutine
  /src/crypto/external/bsd/netpgp/dist/bindings/perl/
netpgpperl_wrap.c 391 /* Move iter to the top of the linked list */ \
1341 #ifdef Move
1342 #undef Move
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 345 // move on.
397 // ... otherwise, count this and move on.
707 // a move that implicitly zeroes.
718 // false will favor a masked register-register masked move or vblendm and the
732 /// load's chain operand and move load below the call's chain operand.
792 // writes to memory. It's not safe to move the callee (a load) across a store.
1506 SDValue Move = N->getOperand(1);
1507 if (!Move.isMachineOpcode())
1510 // Make sure its one of the move opcodes we recognize.
1511 switch (Move.getMachineOpcode())
    [all...]

Completed in 33 milliseconds