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

  /external/webkit/Tools/android/flex-2.5.4a/MISC/MSDOS/
MSC70.make 4 vern Exp $ (LBL)
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 590 uint8_t Exp = (Imm >> 4) & 0x7;
600 FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30;
601 FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25;
602 FPUnion.I |= (Exp & 0x3) << 23;
612 int32_t Exp = (Imm.lshr(23).getSExtValue() & 0xff) - 127; // -126 to 127
623 // We can handle 3 bits of exponent: exp == UInt(NOT(b):c:d)-3
624 if (Exp < -3 || Exp > 4)
626 Exp = ((Exp+3) & 0x7) ^ 4
    [all...]
  /external/clang/lib/ARCMigrate/
TransARCAssign.cpp 41 bool VisitBinaryOperator(BinaryOperator *Exp) {
42 Expr *E = Exp->getLHS();
55 Exp->getOperatorLoc())) {
TransEmptyStatementsAndDealloc.cpp 134 Expr *Exp = S->getCollection();
135 if (!Exp)
137 if (hasSideEffects(Exp, Ctx))
  /external/clang/lib/Analysis/
ThreadSafety.cpp 159 void buildMutexID(Expr *Exp, Expr *Parent, int NumArgs,
161 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp)) {
173 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(Exp)) {
177 } else if (isa<CXXThisExpr>(Exp)) {
182 } else if (CastExpr *CE = dyn_cast<CastExpr>(Exp))
327 const ValueDecl *getValueDecl(Expr *Exp);
328 void warnIfMutexNotHeld (const NamedDecl *D, Expr *Exp, AccessKind AK,
330 void checkAccess(Expr *Exp, AccessKind AK);
331 void checkDereference(Expr *Exp, AccessKind AK);
334 void addLocksToSet(LockKind LK, AttrType *Attr, CXXMemberCallExpr *Exp,
    [all...]
CFG.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 157 const MCExpr *Exp =
159 OutStreamer.EmitAbsValue(Exp, GetSizeOfEncodedValue(Encoding));
165 const MCExpr *Exp =
167 OutStreamer.EmitValue(Exp, GetSizeOfEncodedValue(Encoding), /*addrspace*/0);
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 290 Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp);
297 Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp);
298 Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp);
299 Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp);
300 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp);
315 Stmt *SynthMessageExpr(ObjCMessageExpr *Exp,
388 Stmt *SynthesizeBlockCall(CallExpr *Exp, const Expr* BlockExp);
393 void CollectBlockDeclRefInfo(BlockExpr *Exp);
458 Stmt *SynthBlockInitExpr(BlockExpr *Exp,
    [all...]
  /external/valgrind/main/none/tests/ppc32/
round.c 53 unsigned int exp:8; member in struct:__anon12901::__anon12902
62 unsigned int exp:11; member in struct:__anon12903::__anon12904
123 D.layout.exp, D.layout.frac_hi, D.layout.frac_lo);
137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
153 (R.layout.exp != E.layout.exp) ||
229 F.layout.exp = 0;
237 D.layout.exp = 0;
246 F.layout.exp = 1;
267 (R.layout.exp != E.layout.exp) |
826 int exp, hi, lo; member in struct:__anon12908
    [all...]
  /external/valgrind/main/none/tests/ppc64/
round.c 53 unsigned int exp:8; member in struct:__anon12928::__anon12929
62 unsigned int exp:11; member in struct:__anon12930::__anon12931
123 D.layout.exp, D.layout.frac_hi, D.layout.frac_lo);
137 msg, F.flt, (F.layout.sign == 0 ? '+' : '-'), F.layout.exp, F.layout.frac << 1);
153 (R.layout.exp != E.layout.exp) ||
229 F.layout.exp = 0;
237 D.layout.exp = 0;
246 F.layout.exp = 1;
267 (R.layout.exp != E.layout.exp) |
826 int exp, hi, lo; member in struct:__anon12935
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 162 Value *Exp = CI->getArgOperand(0);
163 CI->replaceAllUsesWith(Exp);
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
Expr.cpp     [all...]
  /external/llvm/utils/TableGen/
SetTheory.cpp 261 if (Expander *Exp = Expanders.lookup(SC[i]->getName())) {
265 Exp->expand(*this, Set, Elts);
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGExprCXX.cpp 474 const Expr *Exp) {
475 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
476 Exp = E->getSubExpr();
477 assert(isa<CXXConstructExpr>(Exp) &&
479 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
    [all...]
CodeGenFunction.h     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 360 const MCExpr *Exp =
363 TmpInst.getOperand(1) = MCOperand::CreateExpr(Exp);
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
SemaDeclAttr.cpp 239 static bool isIntOrBool(Expr *Exp) {
240 QualType QT = Exp->getType();
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/qemu/fpu/
softfloat.c     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 980 milliseconds