HomeSort by relevance Sort by last modified time
    Searched refs:cast (Results 451 - 475 of 3080) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
Reassociate.cpp 205 cast<Instruction>(V)->getOpcode() == Opcode)
206 return cast<BinaryOperator>(V);
230 BinaryOperator *LHS = cast<BinaryOperator>(I->getOperand(0));
231 BinaryOperator *RHS = cast<BinaryOperator>(I->getOperand(1));
285 LHS = LowerNegateToMultiply(cast<Instruction>(LHS), ValueRankMap);
289 RHS = LowerNegateToMultiply(cast<Instruction>(RHS), ValueRankMap);
318 LHS = LHSBO = cast<BinaryOperator>(I->getOperand(0));
385 BinaryOperator *LHS = cast<BinaryOperator>(I->getOperand(0));
441 BinaryOperator *TheNeg = cast<BinaryOperator>(U);
529 MulCst = ConstantExpr::getShl(MulCst, cast<Constant>(Shl->getOperand(1)))
    [all...]
  /external/v8/src/objects/
scope-info.cc 37 if (HeapObject::cast(entry)->map()->instance_type() !=
38 HeapObject::cast(other_entry)->map()->instance_type()) {
42 if (!String::cast(entry)->Equals(String::cast(other_entry))) {
46 if (!ScopeInfo::cast(entry)->Equals(ScopeInfo::cast(other_entry))) {
50 if (!ModuleInfo::cast(entry)->Equals(ModuleInfo::cast(other_entry))) {
587 if (name->IsString() && String::cast(name)->length() > 0) {
588 return String::cast(name)
    [all...]
  /external/v8/src/runtime/
runtime-classes.cc 69 super_name = handle(Handle<JSFunction>::cast(constructor)->shared()->Name(),
117 return Handle<Name>::cast(key);
208 Handle<Dictionary>::cast(isolate->factory()->CopyFixedArrayWithMap(
215 Handle<AccessorPair> pair(AccessorPair::cast(value), isolate);
242 Handle<AccessorPair> pair = Handle<AccessorPair>::cast(value);
249 isolate, args, Smi::cast(tmp), receiver,
260 isolate, args, Smi::cast(tmp), receiver,
270 isolate, args, Smi::cast(*value), receiver,
302 isolate, handle(AccessorPair::cast(value), isolate));
321 AccessorPair* pair = AccessorPair::cast(value)
    [all...]
  /external/clang/lib/AST/
VTTBuilder.cpp 65 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
91 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
155 cast<CXXRecordDecl>(I.getType()->getAs<RecordType>()->getDecl());
  /external/eigen/bench/
bench_norm.cpp 274 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\t" << sqsumNorm(vf.cast<long double>()) << "\t" << sqsumNorm(vd.cast<long double>()) << "\n";
275 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\t" << hypotNorm(vf.cast<long double>()) << "\t" << hypotNorm(vd.cast<long double>()) << "\n";
276 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\t" << blueNorm(vf.cast<long double>()) << "\t" << blueNorm(vd.cast<long double>()) << "\n";
277 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\t" << blueNorm(vf.cast<long double>()) << "\t" << blueNorm(vd.cast<long double>()) << "\n";
278 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\t" << lapackNorm(vf.cast<long double>()) << "\t" << lapackNorm(vd.cast<long double>()) << "\n"
    [all...]
  /external/junit/src/main/java/org/junit/experimental/theories/
ParameterSignature.java 114 return annotationType.cast(each);
119 return annotationType.cast(candidate);
129 return annotationType.cast(each);
  /external/llvm/lib/CodeGen/
Analysis.cpp 129 if (!GV) V = cast<ConstantPointerNull>(Init);
253 if (cast<GetElementPtrInst>(I)->hasAllZeroIndices())
257 // Make sure this isn't a truncating or extending cast. We could
261 cast<IntegerType>(Op->getType())->getBitWidth())
265 // Make sure this isn't a truncating or extending cast. We could
269 cast<IntegerType>(I->getType())->getBitWidth())
280 if (cast<CallInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
291 if (cast<InvokeInst>(I)->paramHasAttr(attrInd, Attribute::Returned) &&
380 return Idx < cast<StructType>(T)->getNumElements();
418 CompositeType *CT = cast<CompositeType>(DeeperType)
    [all...]
  /external/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 78 const Value *Ret = cast<ReturnInst>(Inst).getReturnValue();
87 const BranchInst &BrInst = *cast<BranchInst>(&Inst);
89 const BasicBlock &BrTgt = *cast<BasicBlock>(BrInst.getOperand(0));
  /external/llvm/lib/MC/
MCELFStreamer.cpp 99 auto *Symbol = cast<MCSymbolELF>(S);
190 auto *Symbol = cast<MCSymbolELF>(S);
297 auto *Symbol = cast<MCSymbolELF>(S);
328 cast<MCSymbolELF>(Symbol)
338 auto *Symbol = cast<MCSymbolELF>(S);
388 cast<MCTargetExpr>(expr)->fixELFSymbolsInTLSFixups(getAssembler());
394 const MCBinaryExpr *be = cast<MCBinaryExpr>(expr);
401 const MCSymbolRefExpr &symRef = *cast<MCSymbolRefExpr>(expr);
453 cast<MCSymbolELF>(symRef.getSymbol()).setType(ELF::STT_TLS);
458 fixSymbolsInTLSFixups(cast<MCUnaryExpr>(expr)->getSubExpr())
    [all...]
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 84 BasicBlock* newEntryBlock = cast<BasicBlock>(VMap[entryBlock]);
85 BasicBlock* newReturnBlock = cast<BasicBlock>(VMap[returnBlock]);
86 BasicBlock* newNonReturnBlock = cast<BasicBlock>(VMap[nonReturnBlock]);
  /external/llvm/unittests/ADT/
PointerSumTypeTest.cpp 76 TEST_F(PointerSumTypeTest, Cast) {
77 EXPECT_EQ(&f, a.cast<Float>());
78 EXPECT_EQ(&i1, b.cast<Int1>());
79 EXPECT_EQ(&i2, c.cast<Int2>());
  /external/skia/src/gpu/effects/
GrAARectEffect.cpp 23 const GrAARectEffect& _outer = args.fFp.cast<GrAARectEffect>();
63 const GrAARectEffect& _outer = _proc.cast<GrAARectEffect>();
88 const GrAARectEffect& that = other.cast<GrAARectEffect>();
GrAlphaThresholdFragmentProcessor.cpp 34 args.fFp.cast<GrAlphaThresholdFragmentProcessor>();
67 _proc.cast<GrAlphaThresholdFragmentProcessor>();
82 const GrAlphaThresholdFragmentProcessor& that = other.cast<GrAlphaThresholdFragmentProcessor>();
GrCircleEffect.cpp 23 const GrCircleEffect& _outer = args.fFp.cast<GrCircleEffect>();
55 const GrCircleEffect& _outer = _proc.cast<GrCircleEffect>();
93 const GrCircleEffect& that = other.cast<GrCircleEffect>();
GrEllipseEffect.cpp 23 const GrEllipseEffect& _outer = args.fFp.cast<GrEllipseEffect>();
65 const GrEllipseEffect& _outer = _proc.cast<GrEllipseEffect>();
116 const GrEllipseEffect& that = other.cast<GrEllipseEffect>();
GrSRGBEffect.cpp 18 const GrSRGBEffect& srgbe = args.fFp.cast<GrSRGBEffect>();
66 const GrSRGBEffect& srgbe = processor.cast<GrSRGBEffect>();
89 const GrSRGBEffect& other = s.cast<GrSRGBEffect>();
  /external/skia/src/gpu/gradients/
GrClampedGradientEffect.cpp 23 const GrClampedGradientEffect& _outer = args.fFp.cast<GrClampedGradientEffect>();
60 const GrClampedGradientEffect& _outer = _proc.cast<GrClampedGradientEffect>();
87 const GrClampedGradientEffect& that = other.cast<GrClampedGradientEffect>();
GrSweepGradientLayout.cpp 23 const GrSweepGradientLayout& _outer = args.fFp.cast<GrSweepGradientLayout>();
49 const GrSweepGradientLayout& _outer = _proc.cast<GrSweepGradientLayout>();
74 const GrSweepGradientLayout& that = other.cast<GrSweepGradientLayout>();
  /external/skqp/src/gpu/effects/
GrAARectEffect.cpp 23 const GrAARectEffect& _outer = args.fFp.cast<GrAARectEffect>();
63 const GrAARectEffect& _outer = _proc.cast<GrAARectEffect>();
88 const GrAARectEffect& that = other.cast<GrAARectEffect>();
GrAlphaThresholdFragmentProcessor.cpp 34 args.fFp.cast<GrAlphaThresholdFragmentProcessor>();
67 _proc.cast<GrAlphaThresholdFragmentProcessor>();
82 const GrAlphaThresholdFragmentProcessor& that = other.cast<GrAlphaThresholdFragmentProcessor>();
GrCircleEffect.cpp 23 const GrCircleEffect& _outer = args.fFp.cast<GrCircleEffect>();
55 const GrCircleEffect& _outer = _proc.cast<GrCircleEffect>();
93 const GrCircleEffect& that = other.cast<GrCircleEffect>();
GrEllipseEffect.cpp 23 const GrEllipseEffect& _outer = args.fFp.cast<GrEllipseEffect>();
64 const GrEllipseEffect& _outer = _proc.cast<GrEllipseEffect>();
115 const GrEllipseEffect& that = other.cast<GrEllipseEffect>();
GrSRGBEffect.cpp 18 const GrSRGBEffect& srgbe = args.fFp.cast<GrSRGBEffect>();
65 const GrSRGBEffect& srgbe = processor.cast<GrSRGBEffect>();
88 const GrSRGBEffect& other = s.cast<GrSRGBEffect>();
  /external/skqp/src/gpu/gradients/
GrSweepGradientLayout.cpp 23 const GrSweepGradientLayout& _outer = args.fFp.cast<GrSweepGradientLayout>();
50 const GrSweepGradientLayout& _outer = _proc.cast<GrSweepGradientLayout>();
75 const GrSweepGradientLayout& that = other.cast<GrSweepGradientLayout>();
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
PartialInlining.cpp 77 BasicBlock* newEntryBlock = cast<BasicBlock>(VMap[entryBlock]);
78 BasicBlock* newReturnBlock = cast<BasicBlock>(VMap[returnBlock]);
79 BasicBlock* newNonReturnBlock = cast<BasicBlock>(VMap[nonReturnBlock]);

Completed in 799 milliseconds

<<11121314151617181920>>