HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 226 - 250 of 467) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 324 "always result in a buffer overflow",
456 llvm::APSInt Result;
457 if (!suffixEx->EvaluateAsInt(Result, BR.getContext()))
460 if (Result.isNegative())
462 suffix = (unsigned) Result.getZExtValue();
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 86 SVal Result = evalBinOp(state, Op, LeftV, RightV, B->getType());
87 if (Result.isUnknown()) {
92 state = state->BindExpr(B, LCtx, Result);
141 // Compute the result of the operation.
142 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy),
150 if (Result.isUnknown()) {
157 Result = svalBuilder.evalCast(LHSVal, CTy, LTy);
162 LHSVal = svalBuilder.evalCast(Result, LTy, CTy);
170 state = state->BindExpr(B, LCtx, Result);
334 // Compute the type of the result
390 SVal result = svalBuilder.conjureSymbolVal(0, CastE, LCtx, local
    [all...]
SimpleSValBuilder.cpp 238 const llvm::APSInt &Result = BasicVals.Convert(resultTy, RHS);
239 return nonloc::ConcreteInt(Result);
345 // FIXME: This is not correct. char + short will result in a promotion
357 const llvm::APSInt *Result =
359 if (!Result)
362 return nonloc::ConcreteInt(*Result);
636 if (Optional<NonLoc> Result = ResultVal.getAs<NonLoc>())
637 return evalCastFromNonLoc(*Result, resultTy);
    [all...]
  /external/clang/test/SemaTemplate/
default-expr-arguments.cpp 167 vector<A> Result;
171 vector<A> Result;
  /external/libnfc-nxp/src/
phFriNfc_FelicaMap.c 2818 uint8_t result = 0; local
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 220 ExprAST *Result = new NumberExprAST(NumVal);
222 return Result;
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 227 ExprAST *Result = new NumberExprAST(NumVal);
229 return Result;
  /external/llvm/include/llvm/ADT/
FoldingSet.h 73 /// If The result is equal to the input then the node has been inserted.
74 /// Otherwise, the result is the node existing in the folding set, and the
75 /// input can be discarded (use the result instead.)
91 /// 3) If you get a NULL result from FindNodeOrInsertPos then you can as a new
100 /// The result indicates whether the node existed in the folding set.
608 T *Result = Set.GetOrInsertNode(N);
609 if (Result == N) Vector.push_back(N);
610 return Result;
ValueMap.h 301 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
302 return Result;
351 ValueTypeProxy Result = {I->first.Unwrap(), I->second};
352 return Result;
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 192 MemDepResult Result;
194 NonLocalDepEntry(BasicBlock *bb, MemDepResult result)
195 : BB(bb), Result(result) {}
203 void setResult(const MemDepResult &R) { Result = R; }
205 const MemDepResult &getResult() const { return Result; }
212 /// NonLocalDepResult - This is a result from a NonLocal dependence query.
219 NonLocalDepResult(BasicBlock *bb, MemDepResult result, Value *address)
220 : Entry(bb, result), Address(address) {}
233 /// be different than the address queried for the non-local result becaus
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 249 /// incorporating info about the result values into this state.
338 unsigned Result = StackOffset;
341 return Result;
  /external/llvm/lib/Analysis/
Lint.cpp 240 AliasAnalysis::AliasResult Result = AA->alias(*AI, *BI);
241 Assert1(Result != AliasAnalysis::MustAlias &&
242 Result != AliasAnalysis::PartialAlias,
477 "Undefined result: xor(undef, undef)", &I);
483 "Undefined result: sub(undef, undef)", &I);
490 "Undefined result: Shift count out of range", &I);
497 "Undefined result: Shift count out of range", &I);
504 "Undefined result: Shift count out of range", &I);
564 "Undefined result: extractelement index out of range", &I);
572 "Undefined result: insertelement index out of range", &I)
    [all...]
MemoryBuiltins.cpp 206 // The size of the malloc's result type must be known to determine array size.
246 /// 1: PointerType is the bitcast's result type.
278 /// 1: PointerType is the bitcast's result type.
591 SizeOffsetEvalType Result = compute_(V);
593 if (!bothKnown(Result)) {
606 return Result;
634 SizeOffsetEvalType Result;
636 Result = visitGEPOperator(*GEP);
638 Result = visit(*I);
645 Result = unknown()
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 30 std::string Result;
31 raw_string_ostream Tmp(Result);
363 Type *Result = 0;
365 NumberedTypes[TypeID], Result)) return true;
367 if (!isa<StructType>(Result)) {
371 Entry.first = Result;
390 Type *Result = 0;
392 NamedTypes[Name], Result)) return true;
394 if (!isa<StructType>(Result)) {
398 Entry.first = Result;
    [all...]
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 93 std::vector<MCSymbol*> &Result);
119 MCSymbol *Result = Context.CreateTempSymbol();
120 Entry.Symbols = Result;
121 return Result;
130 std::vector<MCSymbol*> Result;
134 Result.push_back(getAddrLabelSymbol(BB));
136 Result.push_back(Sym);
138 Result = *Entry.Symbols.get<std::vector<MCSymbol*>*>();
139 return Result;
146 takeDeletedSymbolsForFunction(Function *F, std::vector<MCSymbol*> &Result) {
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 236 std::string Result;
237 Result += "align";
238 Result += (InAttrGrp) ? "=" : " ";
239 Result += utostr(getValueAsInt());
240 return Result;
244 std::string Result;
245 Result += "alignstack";
247 Result += "=";
248 Result += utostr(getValueAsInt());
250 Result += "("
    [all...]
ConstantsContext.h 223 GetElementPtrConstantExpr *Result =
225 Result->SubclassOptionalData = Flags;
226 return Result;
581 ConstantClass* Result =
584 assert(Result->getType() == Ty && "Type specified is not correct!");
585 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
588 InverseMap.insert(std::make_pair(Result, I));
590 return Result;
598 ConstantClass* Result = 0;
603 Result = I->second
    [all...]
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64Disassembler.cpp 229 DecodeStatus result = decodeInstruction(DecoderTableA6432, MI, insn, Address, local
231 if (result != MCDisassembler::Fail) {
233 return result;
591 DecodeStatus Result = MCDisassembler::Success;
612 Result = MCDisassembler::SoftFail;
617 Result = MCDisassembler::SoftFail;
668 return Result;
  /external/llvm/lib/Target/R600/
AMDILISelLowering.cpp 382 SDValue Result;
383 Result = DAG.getNode(
388 return Result;
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 72 SetVector<BasicBlock *> Result;
79 if (!Result.insert(*I))
83 Result.clear();
84 return Result;
89 for (SetVector<BasicBlock *>::iterator I = llvm::next(Result.begin()),
90 E = Result.end();
94 assert(Result.count(*PI) &&
99 return Result;
565 // dominated by the result of the invocation
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 105 // kept passes, we can update our bitcode file to include the result of the
129 // passes on the result of the prefix passes.
158 // Run the result...
828 // Call the old main function and return its result
    [all...]
ToolRunner.cpp 255 StringRef Result = sys::path::parent_path(Main);
257 if (!Result.empty()) {
258 SmallString<128> Storage = Result;
264 return Result.str();
543 // Assuming LLC worked, compile the result with GCC and run it.
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 178 bool Result = diff(L, R, true, true);
179 assert(!Result && "structural differences second time around?");
180 (void) Result;
  /external/llvm/utils/TableGen/
IntrinsicEmitter.cpp 177 std::string Result = "return " + TargetPrefix + "Intrinsic::" +
181 MatchTable.push_back(std::make_pair(Ints[IntNo].Name.substr(6),Result));
189 << Result << '\n';
424 unsigned Result = 0;
431 Result = (Result << 4) | TypeSig[e-i-1];
435 if (!Failed && (Result >> 31) == 0) {
436 FixedEncodings.push_back(Result);
729 OS << "// in as TargetPrefix. The result is assigned to 'IntrinsicID'.\n";
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelLowering.cpp 479 SDValue Result;
480 Result = DAG.getNode(
485 return Result;

Completed in 990 milliseconds

1 2 3 4 5 6 7 8 91011>>