Home
last modified time | relevance | path

Searched refs:cast (Results 1 – 25 of 2503) sorted by relevance

12345678910>>...101

/third_party/mindspore/tests/ut/cpp/python_input/gtest_input/pre_activate/
Dmixed_precision_test.py27 cast = Primitive('Cast') variable
51 new_x = cast(x)
52 new_y = cast(y)
54 res = cast(res)
71 new_x = cast(x)
72 new_y = cast(y)
74 output = cast(res)
94 new_x_sum = cast(x)
95 new_y_sum = cast(y)
97 sum_cast = cast(sum_add)
[all …]
Deliminate_redundant_op_test.py24 cast = Primitive('Cast') variable
90 new_x_sum = cast(x)
91 new_y_sum = cast(y)
92 new_y_sum2 = cast(y)
94 sum_cast1 = cast(sum_add)
95 sum_cast2 = cast(sum_cast1)
97 output = cast(res)
104 new_x_sum = cast(x)
105 new_y_sum = cast(y)
106 new_y_diff = cast(y)
[all …]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbuilder_constructor_expression_test.cc97 auto* cast = Construct(ty.Of(alias), 2.3f); in TEST_F() local
98 WrapInFunction(cast); in TEST_F()
103 EXPECT_EQ(b.GenerateExpression(cast), 1u); in TEST_F()
169 auto* cast = Construct<bool>(true); in TEST_F() local
170 WrapInFunction(cast); in TEST_F()
176 EXPECT_EQ(b.GenerateExpression(cast), 3u); in TEST_F()
186 auto* cast = Construct<i32>(2); in TEST_F() local
187 WrapInFunction(cast); in TEST_F()
192 EXPECT_EQ(b.GenerateExpression(cast), 3u); in TEST_F()
201 auto* cast = Construct<u32>(2u); in TEST_F() local
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstruction.cpp101 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(b); in setHasNoUnsignedWrap()
105 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(b); in setHasNoSignedWrap()
109 cast<PossiblyExactOperator>(this)->setIsExact(b); in setIsExact()
113 return cast<OverflowingBinaryOperator>(this)->hasNoUnsignedWrap(); in hasNoUnsignedWrap()
117 return cast<OverflowingBinaryOperator>(this)->hasNoSignedWrap(); in hasNoSignedWrap()
126 cast<OverflowingBinaryOperator>(this)->setHasNoUnsignedWrap(false); in dropPoisonGeneratingFlags()
127 cast<OverflowingBinaryOperator>(this)->setHasNoSignedWrap(false); in dropPoisonGeneratingFlags()
134 cast<PossiblyExactOperator>(this)->setIsExact(false); in dropPoisonGeneratingFlags()
138 cast<GetElementPtrInst>(this)->setIsInBounds(false); in dropPoisonGeneratingFlags()
146 return cast<PossiblyExactOperator>(this)->isExact(); in isExact()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_cast.cpp22 ToType __attribute__((noinline)) cast(FromType a) { in cast() function
32 ToType __attribute__((noinline)) cast(int i, FromType a, int j) { in cast() function
49 static ToType f(bool a) { return cast<bool, ToType>(a); } in f()
50 static ToType f(myint8_t a) { return cast<myint8_t, ToType>(a); } in f()
51 static ToType f(uint8_t a) { return cast<uint8_t, ToType>(a); } in f()
52 static ToType f(int16_t a) { return cast<int16_t, ToType>(a); } in f()
53 static ToType f(uint16_t a) { return cast<uint16_t, ToType>(a); } in f()
54 static ToType f(int32_t a) { return cast<int32_t, ToType>(a); } in f()
55 static ToType f(uint32_t a) { return cast<uint32_t, ToType>(a); } in f()
56 static ToType f(int64 a) { return cast<int64, ToType>(a); } in f()
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/cpu/
Dinsert_cast_cpu.cc41 …CNodePtr cast = func_graph->NewCNode({NewValueNode(std::make_shared<Primitive>(prim::kPrimCast->na… in AddCastOpNodeToGraph() local
42 MS_EXCEPTION_IF_NULL(cast); in AddCastOpNodeToGraph()
49 if (cast->kernel_info() == nullptr) { in AddCastOpNodeToGraph()
51 cast->set_kernel_info(kernel_info); in AddCastOpNodeToGraph()
53 AnfAlgo::SetSelectKernelBuildInfo(builder.Build(), cast.get()); in AddCastOpNodeToGraph()
54 AnfAlgo::SetOutputInferTypeAndShape({origin_type}, {origin_shape}, cast.get()); in AddCastOpNodeToGraph()
55 AnfAlgo::SetNodeAttr(kIsBackendCast, MakeValue(true), cast); in AddCastOpNodeToGraph()
56 …<kernel::CPUKernel> cpu_kernel = kernel::CPUKernelFactory::GetInstance().Create(kCastOpName, cast); in AddCastOpNodeToGraph()
58 MS_LOG(EXCEPTION) << "Operator[Cast] " << cast->kernel_info() << " is not support."; in AddCastOpNodeToGraph()
61 cpu_kernel->Init(cast); in AddCastOpNodeToGraph()
[all …]
/third_party/mindspore/tests/ut/cpp/operator/
Dcc_implementations_test.cc36 ASSERT_EQ(ScalarAdd(list)->cast<Int64ImmPtr>()->value(), 3); in TEST_F()
41 ASSERT_EQ(ScalarAdd(list)->cast<FP32ImmPtr>()->value(), 2.5f); in TEST_F()
46 ASSERT_EQ(ScalarAdd(list)->cast<FP64ImmPtr>()->value(), 3.5); in TEST_F()
74 ASSERT_EQ(ScalarSub(list)->cast<Int64ImmPtr>()->value(), -2); in TEST_F()
79 ASSERT_EQ(ScalarSub(list)->cast<FP32ImmPtr>()->value(), -0.5f); in TEST_F()
84 ASSERT_EQ(ScalarSub(list)->cast<FP64ImmPtr>()->value(), 2.5); in TEST_F()
112 ASSERT_EQ(ScalarMul(list)->cast<Int64ImmPtr>()->value(), 6); in TEST_F()
117 ASSERT_EQ(ScalarMul(list)->cast<FP32ImmPtr>()->value(), 3.0f); in TEST_F()
122 ASSERT_EQ(ScalarMul(list)->cast<FP64ImmPtr>()->value(), 8.0); in TEST_F()
167 ASSERT_EQ(ScalarDiv(list)->cast<Int64ImmPtr>()->value(), 0); in TEST_F()
[all …]
/third_party/boost/boost/serialization/
Dsmart_cast.hpp72 static T cast(U & u){ in cast() function
79 static T cast(U & u){ in cast() function
85 static T cast(U & u){ in cast() function
90 return cross::cast(u); in cast()
113 return typex::cast(u); in cast()
120 static T cast(U & u){ in cast() function
125 static T cast(U & u){ in cast() function
131 return typex::cast(u); in cast()
145 static T cast(U * u){
152 static T cast(U * u){
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroInstr.h57 return cast<ConstantInt>(getArgOperand(IndexArg)); in getRawIndex()
65 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
77 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
108 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
121 : cast<AllocaInst>(Arg->stripPointerCasts()); in getPromise()
134 auto *Inst = cast<Instruction>(Arg); in clearPromise()
173 Result.Resumers = cast<ConstantArray>(Initializer); in getInfo()
177 return cast<Constant>(getArgOperand(InfoArg)->stripPointerCasts()); in getRawInfo()
183 return cast<Function>(getArgOperand(CoroutineArg)->stripPointerCasts()); in getCoroutine()
198 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
[all …]
/third_party/flutter/skia/third_party/skcms/src/
DTransform_inl.h106 SI D cast(const S& v) { in cast() function
131 SI U16 to_fixed(F f) { return cast<U16>(f + 0.5f); } in to_fixed()
133 SI U32 to_fixed(F f) { return (U32)cast<I32>(f + 0.5f); } in to_fixed()
157 U32 wide = cast<U32>(half); in F_from_Half()
191 return cast<U16>(if_then_else(em < 0x38800000, (U32)F0 in Half_from_F()
242 F roundtrip = cast<F>(cast<I32>(x)); in floor_()
259 F e = cast<F>(bits) * (1.0f / (1<<23)); in approx_log2()
277 I32 bits = cast<I32>((1.0f * (1<<23)) * (x + 121.274057500f in approx_exp2()
537 return cast<F>(v) * (1/255.0f); in F_from_U8()
545 return cast<F>(lo|hi) * (1/65535.0f); in F_from_U16_BE()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInstrumentation.cpp64 instrumentAlloca(Context, llvm::cast<InstAlloca>(Instr)); in instrumentInst()
67 instrumentArithmetic(Context, llvm::cast<InstArithmetic>(Instr)); in instrumentInst()
70 instrumentBr(Context, llvm::cast<InstBr>(Instr)); in instrumentInst()
73 instrumentCall(Context, llvm::cast<InstCall>(Instr)); in instrumentInst()
76 instrumentCast(Context, llvm::cast<InstCast>(Instr)); in instrumentInst()
79 instrumentExtractElement(Context, llvm::cast<InstExtractElement>(Instr)); in instrumentInst()
82 instrumentFcmp(Context, llvm::cast<InstFcmp>(Instr)); in instrumentInst()
85 instrumentIcmp(Context, llvm::cast<InstIcmp>(Instr)); in instrumentInst()
88 instrumentInsertElement(Context, llvm::cast<InstInsertElement>(Instr)); in instrumentInst()
91 instrumentIntrinsic(Context, llvm::cast<InstIntrinsic>(Instr)); in instrumentInst()
[all …]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dcl_stubs.cpp74 return device->cast<Device>().getInfo(param_name, param_value_size, param_value, in GetDeviceInfo()
84 return in_device->cast<Device>().createSubDevices(properties, num_devices, out_devices, in CreateSubDevices()
90 Device &dev = device->cast<Device>(); in RetainDevice()
100 Device &dev = device->cast<Device>(); in ReleaseDevice()
159 context->cast<Context>().retain(); in RetainContext()
165 Context &ctx = context->cast<Context>(); in ReleaseContext()
179 return context->cast<Context>().getInfo(param_name, param_value_size, param_value, in GetContextInfo()
197 return context->cast<Context>().createCommandQueueWithProperties(device, properties, errorCode); in CreateCommandQueueWithProperties()
202 command_queue->cast<CommandQueue>().retain(); in RetainCommandQueue()
208 CommandQueue &queue = command_queue->cast<CommandQueue>(); in ReleaseCommandQueue()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicInst.h62 return isa<CallInst>(V) && classof(cast<CallInst>(V)); in classof()
82 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
102 return cast<DILocalVariable>(getRawVariable()); in getVariable()
106 return cast<DIExpression>(getRawExpression()); in getExpression()
110 return cast<MetadataAsValue>(getArgOperand(1))->getMetadata(); in getRawVariable()
114 return cast<MetadataAsValue>(getArgOperand(2))->getMetadata(); in getRawExpression()
133 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
149 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
165 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
182 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
[all …]
/third_party/mindspore/mindspore/ccsrc/utils/
Dconvert_utils_py.cc63 int_v = value->cast<UInt8ImmPtr>()->value(); in ScalarPtrToPyData()
67 int_v = value->cast<UInt16ImmPtr>()->value(); in ScalarPtrToPyData()
71 int_v = value->cast<UInt32ImmPtr>()->value(); in ScalarPtrToPyData()
75 int_v = value->cast<UInt64ImmPtr>()->value(); in ScalarPtrToPyData()
79 int_v = value->cast<Int8ImmPtr>()->value(); in ScalarPtrToPyData()
83 int_v = value->cast<Int16ImmPtr>()->value(); in ScalarPtrToPyData()
87 int_v = value->cast<Int32ImmPtr>()->value(); in ScalarPtrToPyData()
91 int_v = value->cast<Int64ImmPtr>()->value(); in ScalarPtrToPyData()
95 float_v = value->cast<FP32ImmPtr>()->value(); in ScalarPtrToPyData()
99 float_v = value->cast<FP64ImmPtr>()->value(); in ScalarPtrToPyData()
[all …]
/third_party/skia/third_party/skcms/src/
DTransform_inl.h110 SI D cast(const S& v) { in cast() function
135 SI U16 to_fixed(F f) { return cast<U16>(f + 0.5f); } in to_fixed()
137 SI U32 to_fixed(F f) { return (U32)cast<I32>(f + 0.5f); } in to_fixed()
169 U32 wide = cast<U32>(half); in F_from_Half()
203 return cast<U16>(if_then_else(em < 0x38800000, (U32)F0 in Half_from_F()
254 F roundtrip = cast<F>(cast<I32>(x)); in floor_()
271 F e = cast<F>(bits) * (1.0f / (1<<23)); in approx_log2()
297 I32 bits = cast<I32>(max_(fbits, F0)); in approx_exp2()
620 return cast<F>(v) * (1/255.0f); in F_from_U8()
628 return cast<F>(lo|hi) * (1/65535.0f); in F_from_U16_BE()
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_deref.c30 is_trivial_deref_cast(nir_deref_instr *cast) in is_trivial_deref_cast() argument
32 nir_deref_instr *parent = nir_src_as_deref(cast->parent); in is_trivial_deref_cast()
36 return cast->modes == parent->modes && in is_trivial_deref_cast()
37 cast->type == parent->type && in is_trivial_deref_cast()
38 cast->dest.ssa.num_components == parent->dest.ssa.num_components && in is_trivial_deref_cast()
39 cast->dest.ssa.bit_size == parent->dest.ssa.bit_size; in is_trivial_deref_cast()
261 return deref->cast.ptr_stride; in nir_deref_instr_array_stride()
723 new_deref->cast.ptr_stride = deref->cast.ptr_stride; in rematerialize_deref_in_block()
855 is_trivial_array_deref_cast(nir_deref_instr *cast) in is_trivial_array_deref_cast() argument
857 assert(is_trivial_deref_cast(cast)); in is_trivial_array_deref_cast()
[all …]
/third_party/mindspore/tests/ut/cpp/pre_activate/ascend/buffer_fusion/
Dbuffer_fusion_test.cc60 auto cast = tuple->cast<CNodePtr>()->input(1); in TEST_F() local
61 EXPECT_NE(cast, nullptr); in TEST_F()
62 auto relu2 = cast->cast<CNodePtr>()->input(1); in TEST_F()
64 auto relu1 = relu2->cast<CNodePtr>()->input(1); in TEST_F()
91 cast->set_kernel_info(std::make_shared<device::KernelInfo>()); in TEST_F()
92 AnfAlgo::SetSelectKernelBuildInfo(builder1.Build(), cast.get()); in TEST_F()
121 auto cast = tuple->cast<CNodePtr>()->input(1); in TEST_F() local
122 EXPECT_NE(cast, nullptr); in TEST_F()
123 auto relu6 = cast->cast<CNodePtr>()->input(1); in TEST_F()
125 auto relu5 = relu6->cast<CNodePtr>()->input(1); in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DVPlanSLP.cpp59 return cast<VPInstruction>(V)->getUnderlyingInstr(); in addCombined()
63 Type *T = cast<VPInstruction>(V)->getUnderlyingInstr()->getType(); in addCombined()
80 cast<VPInstruction>(Op)->getUnderlyingInstr(); in areVectorizable()
91 cast<VPInstruction>(Operands[0])->getUnderlyingInstr(); in areVectorizable()
95 const Instruction *I = cast<VPInstruction>(Op)->getUnderlyingInstr(); in areVectorizable()
105 return cast<VPInstruction>(Op)->getParent() != &this->BB; in areVectorizable()
123 VPBasicBlock *Parent = cast<VPInstruction>(Operands[0])->getParent(); in areVectorizable()
125 auto *VPI = cast<VPInstruction>(&I); in areVectorizable()
140 return cast<LoadInst>(cast<VPInstruction>(Op)->getUnderlyingInstr()) in areVectorizable()
150 return cast<StoreInst>(cast<VPInstruction>(Op)->getUnderlyingInstr()) in areVectorizable()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp277 const auto *SeqR = cast<ConstantDataSequential>(R); in cmpConstants()
291 const APInt &LInt = cast<ConstantInt>(L)->getValue(); in cmpConstants()
292 const APInt &RInt = cast<ConstantInt>(R)->getValue(); in cmpConstants()
296 const APFloat &LAPF = cast<ConstantFP>(L)->getValueAPF(); in cmpConstants()
297 const APFloat &RAPF = cast<ConstantFP>(R)->getValueAPF(); in cmpConstants()
301 const ConstantArray *LA = cast<ConstantArray>(L); in cmpConstants()
302 const ConstantArray *RA = cast<ConstantArray>(R); in cmpConstants()
303 uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements(); in cmpConstants()
304 uint64_t NumElementsR = cast<ArrayType>(TyR)->getNumElements(); in cmpConstants()
308 if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)), in cmpConstants()
[all …]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DTraits.hpp82 static Bool cast(bool);
88 static Byte cast(uint8_t);
94 static SByte cast(int8_t);
100 static Short cast(int16_t);
106 static UShort cast(uint16_t);
112 static Int cast(int32_t);
118 static UInt cast(uint32_t);
124 static Float cast(float);
130 static Float4 cast(float[4]);
154 static inline type cast(const T *v); // implemented in Traits.inl
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCFragment.cpp252 delete cast<MCAlignFragment>(this); in destroy()
255 delete cast<MCDataFragment>(this); in destroy()
258 delete cast<MCCompactEncodedInstFragment>(this); in destroy()
261 delete cast<MCFillFragment>(this); in destroy()
264 delete cast<MCRelaxableFragment>(this); in destroy()
267 delete cast<MCOrgFragment>(this); in destroy()
270 delete cast<MCDwarfLineAddrFragment>(this); in destroy()
273 delete cast<MCDwarfCallFrameFragment>(this); in destroy()
276 delete cast<MCLEBFragment>(this); in destroy()
279 delete cast<MCBoundaryAlignFragment>(this); in destroy()
[all …]
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/graph_util/
Dnode_info.cc33 auto para_ptr = node_ptr->cast<ParameterPtr>(); in ParameterName()
39 auto para_ptr = node_ptr->cast<ParameterPtr>(); in ParameterRequireGrad()
55 return input->cast<CNodePtr>()->input(1); in GetRealInput()
71 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueListPtr>()->value(); in ExtractInputParameterByNode()
73 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueTuplePtr>()->value(); in ExtractInputParameterByNode()
79 node_inputs = node_inputs[1]->cast<CNodePtr>()->inputs(); in ExtractInputParameterByNode()
87 auto input_parameter = input->cast<ParameterPtr>(); in ExtractInputParameterByNode()
144 auto input_element_type = type->cast<mindspore::TensorTypePtr>()->element(); in GetInputsTypeLen()
161 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueListPtr>()->value(); in ExtractInputTypeLengthByNode()
163 inputs_seq = node_inputs[1]->cast<ValueNodePtr>()->value()->cast<ValueTuplePtr>()->value(); in ExtractInputTypeLengthByNode()
[all …]
/third_party/mindspore/tests/ut/cpp/pre_activate/ascend/format_type/
Dcheck_consistency_test.cc63 auto make_tuple = ret->input(1)->cast<CNodePtr>(); in TEST_F()
76 auto cast = make_tuple->input(1)->cast<CNodePtr>(); in TEST_F() local
84 AnfAlgo::SetSelectKernelBuildInfo(builder2.Build(), cast.get()); in TEST_F()
87 EXPECT_NE(cast->input(1), nullptr); in TEST_F()
88 EXPECT_TRUE(cast->input(1)->isa<Parameter>()); in TEST_F()
89 auto para = cast->input(1)->cast<ParameterPtr>(); in TEST_F()
124 auto make_tuple = ret->input(1)->cast<CNodePtr>(); in TEST_F()
137 auto cast = make_tuple->input(1)->cast<CNodePtr>(); in TEST_F() local
145 AnfAlgo::SetSelectKernelBuildInfo(builder2.Build(), cast.get()); in TEST_F()
148 EXPECT_NE(cast->input(1), nullptr); in TEST_F()
[all …]
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/gpu/
Dapply_momentum_weight_scale_fusion.cc33 AnfNodePtr in = utils::cast<AnfNodePtr>(n); in IsScalar()
37 auto shape = shape_ptr->cast<abstract::ShapePtr>(); in IsScalar()
62 AnfNodePtr in = utils::cast<AnfNodePtr>(n); in IsCast()
66 IsPrimitiveCNode(in->cast<CNodePtr>()->input(kInputIndex), prim::kPrimCast))) { in IsCast()
75 return node->cast<CNodePtr>()->input(kInputIndex); in GetCastInput()
78 auto cast_node = node->cast<CNodePtr>()->input(kInputIndex); in GetCastInput()
80 return cast_node->cast<CNodePtr>()->input(kInputIndex); in GetCastInput()
101 auto weight_decay = utils::cast<AnfNodePtr>((*equiv)[weight_decay_]); in Process()
102 auto scale = utils::cast<AnfNodePtr>((*equiv)[scale_]); in Process()
103 auto variable = utils::cast<AnfNodePtr>((*equiv)[variable_]); in Process()
[all …]
/third_party/mindspore/mindspore/ccsrc/vm/
Dvmimpl.cc99 auto g = utils::cast<FuncGraphPtr>(fkv.first); in ComputeFvs()
155 if (utils::isa<ValuePtr>(value) && utils::cast<ValuePtr>(value)->isa<FuncGraph>()) { in Export()
156 return ExportGraph(utils::cast<ValuePtr>(value)->cast<FuncGraphPtr>()); in Export()
159 if (utils::isa<ValuePtr>(value) && utils::cast<ValuePtr>(value)->isa<Primitive>()) { in Export()
160 return ExportPrimitive(utils::cast<ValuePtr>(value)->cast<PrimitivePtr>()); in Export()
164 return ExportGraph(utils::cast<FuncGraphPtr>(value)); in Export()
168 return ExportClosure(utils::cast<ClosurePtr>(value)); in Export()
172 return ExportPrimitive(utils::cast<PrimitivePtr>(value)); in Export()
176 return ExportSequence(utils::cast<VectorRef>(value)); in Export()
212 frames[frames.size() - 1] = utils::cast<CallWrapPtr>(except)->frame; in Evaluate()
[all …]

12345678910>>...101