HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 226 - 250 of 295) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/zlib/contrib/iostream2/
zstream.h 44 size_t value() const { return val.word; }
46 struct Val { unsigned char byte; size_t word; } val; member in class:zstringlen
130 zs > val.byte;
131 if (val.byte == 255) zs > val.word;
132 else val.word = val.byte;
278 val.byte = 255; val.word = ::strlen(x)
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.h 276 // Stores the data in @Val of type @Ty at address @Addr.
277 void StoreValueToMemory(const llvm::GenericValue &Val, void *Addr,
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 21 /// DecomposeSimpleLinearExpr - Analyze 'Val', seeing if it is a simple linear
22 /// expression. If so, decompose it, returning some value X, such that Val is
25 static Value *DecomposeSimpleLinearExpr(Value *Val, unsigned &Scale,
27 if (ConstantInt *CI = dyn_cast<ConstantInt>(Val)) {
30 return ConstantInt::get(Val->getType(), 0);
33 if (BinaryOperator *I = dyn_cast<BinaryOperator>(Val)) {
35 OverflowingBinaryOperator *OBI = dyn_cast<OverflowingBinaryOperator>(Val);
39 return Val;
73 return Val;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
ARMAsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 523 /// AnalyzeNewValue - Call AnalyzeNewNode, updating the node in Val if needed.
525 void DAGTypeLegalizer::AnalyzeNewValue(SDValue &Val) {
526 Val.setNode(AnalyzeNewNode(Val.getNode()));
527 if (Val.getNode()->getNodeId() == Processed)
529 RemapValue(Val);
    [all...]
LegalizeTypesGeneric.cpp 344 SDValue Val = N->getOperand(1);
345 EVT OldEVT = Val.getValueType();
358 GetExpandedOp(Val, Lo, Hi);
TargetLowering.cpp     [all...]
LegalizeFloatTypes.cpp     [all...]
  /external/llvm/lib/Target/Alpha/
AlphaISelLowering.cpp 732 SDValue Val = DAG.getLoad(getPointerTy(), dl, Chain, SrcP,
735 SDValue Result = DAG.getStore(Val.getValue(1), dl, Val, DestP,
740 Val = DAG.getExtLoad(ISD::SEXTLOAD, dl, MVT::i64, Result,
744 return DAG.getTruncStore(Val.getValue(1), dl, Val, NPD,
    [all...]
  /external/clang/include/clang/AST/
CanonicalType.h 353 static SimpleType getSimplifiedValue(const ::clang::CanQual<T> &Val) {
354 return Val.getTypePtr();
Stmt.h 612 void setLHS(Expr *Val) { SubExprs[LHS] = reinterpret_cast<Stmt*>(Val); }
613 void setRHS(Expr *Val) { SubExprs[RHS] = reinterpret_cast<Stmt*>(Val); }
    [all...]
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 315 Value *Val = SI->getOperand(0);
317 AA.getTypeStoreSize(Val->getType()),
  /external/llvm/lib/VMCore/
ConstantsContext.h 185 InsertValueConstantExpr(Constant *Agg, Constant *Val,
191 Op<1>() = Val;
AsmWriter.cpp 720 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
723 raw_svector_ostream(StrVal) << Val;
733 if (atof(StrVal.c_str()) == Val) {
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 311 /// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.
312 /// Ptr is the address of the memory at which to store Val, cast to
314 /// address at which to store Val.
315 void StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 268 SVal val = state->getSVal(Ex); local
269 val = getStoreManager().evalDerivedToBase(val, T);
270 state = state->BindExpr(CastE, val);
482 if (OOE->Evaluate(Res, getContext()) && Res.Val.isInt()) {
483 const APSInt &IV = Res.Val.getInt();
523 CharUnits amt = CharUnits::fromQuantity(Result.Val.getInt().getZExtValue());
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 79 void EmitConstant(uint64_t Val, unsigned Size, unsigned &CurByte,
83 EmitByte(Val & 255, CurByte, OS);
84 Val >>= 8;
    [all...]
  /external/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 68 static unsigned getHashValue(const std::pair<BasicBlock*, unsigned> &Val) {
69 return DenseMapInfo<void*>::getHashValue(Val.first) + Val.second*2;
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 249 llvm::Value *Val = LPI->getClause(I)->stripPointerCasts();
252 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
259 llvm::Constant *CVal = cast<llvm::Constant>(Val);
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 1791 uint64_t val = 0; local
    [all...]
  /external/clang/lib/Analysis/
LiveVariables.cpp 202 LiveVariables::LivenessValues val,
298 LiveVariables::LivenessValues &val; member in class:__anon4256::TransferFunctions
303 LiveVariables::LivenessValues &Val,
306 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
334 observer->observeStmt(S, currentBlock, val);
339 val.liveStmts = LV.SSetFact.remove(val.liveStmts, S);
357 val.liveStmts = LV.SSetFact.add(val.liveStmts, ImplicitObj)
596 LivenessValues val; local
    [all...]

Completed in 1258 milliseconds

1 2 3 4 5 6 7 8 91011>>