Home
last modified time | relevance | path

Searched refs:call_frame (Results 1 – 25 of 26) sorted by relevance

12

/external/tensorflow/tensorflow/core/kernels/data/
Dsingle_threaded_executor_test.cc84 Status Run(CallFrameInterface* call_frame) { in Run() argument
86 args.call_frame = call_frame; in Run()
152 FunctionCallFrame call_frame({DT_FLOAT, DT_FLOAT}, {DT_FLOAT}); in TEST_F() local
153 TF_ASSERT_OK(call_frame.SetArgs({V(1.0), V(2.0)})); in TEST_F()
154 TF_ASSERT_OK(Run(&call_frame)); in TEST_F()
156 TF_ASSERT_OK(call_frame.ConsumeRetvals(&retvals, false)); in TEST_F()
161 TF_ASSERT_OK(call_frame.GetArg(0, &arg_0)); in TEST_F()
164 TF_ASSERT_OK(call_frame.GetArg(1, &arg_1)); in TEST_F()
187 FunctionCallFrame call_frame({DT_FLOAT}, {DT_FLOAT}); in TEST_F() local
189 TF_ASSERT_OK(call_frame.SetArgs({V(1.0)})); in TEST_F()
[all …]
Dsingle_threaded_executor.cc294 params.call_frame = args.call_frame; in Run()
318 args.call_frame ? args.call_frame->num_args() : 0; in Run()
332 if (args.call_frame->CanConsumeArg(i)) { in Run()
337 args.call_frame->ConsumeArg(i, first_input.val.get()); in Run()
351 TF_CHECK_OK(args.call_frame->GetArg(i, &arg)); in Run()
Dmap_defun_op.cc222 auto* call_frame = new MapFunctionCallFrame(compute_opts, this, i); in ComputeAsync() local
226 opts, func_handle_, call_frame, in ComputeAsync()
227 [call_frame, refcounted, c_mgr](const Status& func_status) { in ComputeAsync()
229 delete call_frame; in ComputeAsync()
Ddataset_test_base.cc467 exec_args.call_frame = &frame; in RunFunction()
/external/libffi/src/s390/
Dffi.c63 struct call_frame struct
72 extern void FFI_HIDDEN ffi_call_SYSV(struct call_frame *, unsigned, void *, argument
315 struct call_frame *frame; in ffi_call_int()
356 stack = alloca (bytes + sizeof(struct call_frame) + rsize); in ffi_call_int()
357 frame = (struct call_frame *)(stack + bytes); in ffi_call_int()
/external/libffi/src/x86/
Dffi.c217 struct call_frame struct
256 extern void FFI_DECLARE_FASTCALL ffi_call_i386(struct call_frame *, char *) FFI_HIDDEN;
263 struct call_frame *frame; in ffi_call_int()
298 frame = (struct call_frame *)(stack + bytes); in ffi_call_int()
672 struct call_frame *frame; in ffi_raw_call()
706 frame = (struct call_frame *)(stack + bytes); in ffi_raw_call()
/external/libffi/src/arm/
Dffi.c337 struct call_frame struct
346 extern void ffi_call_SYSV (void *stack, struct call_frame *, argument
348 extern void ffi_call_VFP (void *vfp_space, struct call_frame *,
359 struct call_frame *frame; in ffi_call_int()
384 stack = alloca (vfp_size + bytes + sizeof(struct call_frame) + rsize); in ffi_call_int()
393 frame = (struct call_frame *)(stack + bytes); in ffi_call_int()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dretval_op.cc50 auto frame = ctx->call_frame(); in Compile()
Darg_op.cc42 auto frame = ctx->call_frame(); in Compile()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_op_kernel.h256 CallFrameInterface* call_frame() const { return context_->call_frame(); } in call_frame() function
/external/tensorflow/tensorflow/core/common_runtime/
Dfunction.cc166 void Run(const Options& opts, Handle handle, CallFrameInterface* call_frame,
240 CallFrameInterface* call_frame, in Run() argument
242 base_flr_->Run(opts, handle, call_frame, std::move(done)); in Run()
252 CallFrameInterface* call_frame) { in RunSync() argument
253 return base_flr_->RunSync(std::move(opts), handle, call_frame); in RunSync()
354 CallFrameInterface* call_frame) override;
993 exec_args->call_frame = frame; in ExecutorArgsFromOptions()
1291 CallFrameInterface* call_frame) { in RunSync() argument
1296 return parent_->RunSync(opts, handle, call_frame); in RunSync()
1300 ExecutorArgsFromOptions(opts, call_frame, &exec_args); in RunSync()
Dexecutor.h99 CallFrameInterface* call_frame = nullptr; member
Ddirect_session.cc497 CallFrameInterface* call_frame, ExecutorsAndKeys* executors_and_keys, in RunInternal() argument
643 args.call_frame = call_frame; in RunInternal()
866 FunctionCallFrame call_frame(executors_and_keys->input_types, in Run() local
880 const Status s = call_frame.SetArgs(feed_args); in Run()
893 TF_RETURN_IF_ERROR(RunInternal(step_id, run_options, &call_frame, in Run()
900 const Status s = call_frame.ConsumeRetvals( in Run()
1984 RunCallableCallFrame call_frame(this, executors_and_keys.get(), in RunCallable() local
1992 step_id, executors_and_keys->callable_options.run_options(), &call_frame, in RunCallable()
Ddirect_session.h268 CallFrameInterface* call_frame, ExecutorsAndKeys* executors_and_keys,
Dexecutor.cc409 call_frame_(args.call_frame), in ExecutorState()
705 params.call_frame = call_frame_; in Process()
/external/tensorflow/tensorflow/core/kernels/
Dsendrecv_ops.cc47 if (hostmem_sendrecv && ctx->call_frame() != nullptr) { in GetFrameAndIter()
52 return FrameAndIter(reinterpret_cast<uint64>(ctx->call_frame()), 0); in GetFrameAndIter()
Dfunction_ops.cc45 auto frame = ctx->call_frame(); in Compute()
82 auto frame = ctx->call_frame(); in Compute()
Dfunctional_ops.cc649 BodyFuncCallFrame call_frame(&args, &body_rets, loop_var_types); in DoComputeSync() local
650 TF_RETURN_IF_ERROR(lib->RunSync(opts, body_handle, &call_frame)); in DoComputeSync()
/external/llvm-project/llvm/test/CodeGen/X86/
D2009-01-16-SchedulerBug.ll11 define fastcc %XXV* @bar(%CF* %call_frame, %XXV** %exception) nounwind {
/external/llvm/test/CodeGen/X86/
D2009-01-16-SchedulerBug.ll11 define fastcc %XXV* @bar(%CF* %call_frame, %XXV** %exception) nounwind {
/external/tensorflow/tensorflow/core/framework/
Dfunction.h826 CallFrameInterface* call_frame, DoneCallback done) = 0;
832 CallFrameInterface* call_frame) = 0;
Dop_kernel.h684 CallFrameInterface* call_frame = nullptr; member
1127 CallFrameInterface* call_frame() const { return params_->call_frame; } in call_frame() function
/external/tensorflow/tensorflow/core/common_runtime/device/
Ddevice_event_mgr_test.cc291 params->call_frame = nullptr; in PrepOpKernel()
/external/python/jinja/src/jinja2/
Dcompiler.py1158 call_frame, macro_ref = self.macro_body(node, frame)
1160 self.macro_def(macro_ref, call_frame)
/external/libchrome/third_party/jinja2/
Dcompiler.py1187 call_frame, macro_ref = self.macro_body(node, frame)
1189 self.macro_def(macro_ref, call_frame)

12