HomeSort by relevance Sort by last modified time
    Searched refs:Rem (Results 1 - 14 of 14) sorted by null

  /external/bison/djgpp/
djunpack.bat 2 Rem
3 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
4 Rem format, or else stock DOS/Windows shells will refuse to run it.
5 Rem
6 Rem This batch file unpacks the Bison distribution while simultaneously
7 Rem renaming some of the files whose names are invalid on DOS or conflict
8 Rem with other file names after truncation to DOS 8+3 namespace.
9 Rem
10 Rem Copyright (C) 2005, 2006 Free Software Foundation, Inc.
11 Rem
    [all...]
config.bat 2 Rem Configure Bison for DJGPP.
4 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
5 Rem format, or else stock DOS/Windows shells will refuse to run it.
7 Rem Copyright (C) 2005, 2006 Free Software Foundation, Inc.
9 Rem This program is free software; you can redistribute it and/or modify
10 Rem it under the terms of the GNU General Public License as published by
11 Rem the Free Software Foundation; either version 2, or (at your option)
12 Rem any later version.
14 Rem This program is distributed in the hope that it will be useful,
15 Rem but WITHOUT ANY WARRANTY; without even the implied warranty of
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 78 void eliminateIVRemainder(BinaryOperator *Rem, Value *IVOperand,
187 void SimplifyIndvar::eliminateIVRemainder(BinaryOperator *Rem,
192 if (IVOperand != Rem->getOperand(0))
196 const SCEV *S = SE->getSCEV(Rem->getOperand(0));
197 const SCEV *X = SE->getSCEV(Rem->getOperand(1));
200 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent());
208 Rem->replaceAllUsesWith(Rem->getOperand(0));
221 ICmpInst *ICmp = new ICmpInst(Rem, ICmpInst::ICMP_EQ,
222 Rem->getOperand(0), Rem->getOperand(1))
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 110 Rem RN 14
164 MLA Rem,negdcScaler,tempPred,absCoeffDC ;// Rem = pPredBufRow(Col)[0]-tempPred*dcScaler
168 CMP Rem,temp3
169 ADDGE tempPred,#1 ;// If Rem>=round(dcScaler/2);tempPred=tempPred+1
217 MLA Rem,negCurQP,tempPred,absCoeffAC ;// Rem=abs(pPredBufRow[i])-tempPred*curQP
220 CMP Rem,curQP
221 ADDGE tempPred,#1 ;// if Rem>=round(curQP/2); tempPred=tempPred+1
255 MLA Rem,negCurQP,tempPred,absCoeffA
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_PredictReconCoefIntra_s.s 103 Rem RN 11
187 MLA Rem,negdcScaler,tempPred,absCoeffDC ;// Remainder Rem=abs(pPredBufRow(Col)[0])-tempPred*dcScaler
191 CMP Rem,temp3 ;// compare Rem with (dcScaler/2)
192 ADDGE tempPred,#1 ;// tempPred=tempPred+1 if Rem>=(dcScaler/2)
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 205 Value *Rem;
207 Rem = Builder->CreateURem(Op0BO, Op1BO);
209 Rem = Builder->CreateSRem(Op0BO, Op1BO);
210 Rem->takeName(BO);
213 return BinaryOperator::CreateSub(Op0BO, Rem);
214 return BinaryOperator::CreateSub(Rem, Op0BO);
295 // div/rem X, (Cond ? 0 : Y) -> div/rem X, Y
300 // div/rem X, (Cond ? Y : 0) -> div/rem X,
    [all...]
InstCombineSimplifyDemanded.cpp 691 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
694 if (Rem->isAllOnesValue())
696 APInt RA = Rem->getValue().abs();
    [all...]
InstCombineShifts.cpp 47 Value *Rem = Builder->CreateAnd(A, ConstantInt::get(I.getType(), *B-1),
49 I.setOperand(1, Rem);
    [all...]
  /external/clang/include/clang/AST/
StmtVisitor.h 121 BINOP_FALLBACK(Mul) BINOP_FALLBACK(Div) BINOP_FALLBACK(Rem)
RecursiveASTVisitor.h 50 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) \
64 OPERATOR(Mul) OPERATOR(Div) OPERATOR(Rem) OPERATOR(Add) OPERATOR(Sub) \
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 535 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
536 APInt RA = Rem->getValue().abs();
572 if (ConstantInt *Rem = dyn_cast<ConstantInt>(I->getOperand(1))) {
573 APInt RA = Rem->getValue();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
LegalizeDAG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 459 HANDLEBINOP(Rem)
    [all...]

Completed in 174 milliseconds