Home
last modified time | relevance | path

Searched refs:frame_ (Results 1 – 25 of 36) sorted by relevance

12

/third_party/node/deps/v8/src/debug/
Ddebug-frames.cc20 : frame_(frame), in FrameInspector()
43 is_optimized_ = frame_->is_optimized(); in FrameInspector()
58 return JavaScriptFrame::cast(frame_); in javascript_frame()
69 : handle(frame_->GetExpression(index), isolate_); in GetExpression()
74 : handle(frame_->context(), isolate_); in GetContext()
80 auto wasm_frame = WasmFrame::cast(frame_); in GetFunctionName()
90 bool FrameInspector::IsWasm() { return frame_->is_wasm(); } in IsWasm()
93 bool FrameInspector::IsJavaScript() { return frame_->is_java_script(); } in IsJavaScript()
Ddebug-wasm-objects.cc661 : frame_(frame), in DebugWasmScopeIterator()
693 Isolate* isolate = frame_->isolate(); in GetObject()
696 Handle<WasmInstanceObject> instance(frame_->wasm_instance(), isolate); in GetObject()
728 return Utils::ToLocal(LocalsProxy::Create(frame_)); in GetObject()
732 auto stack = StackProxy::Create(frame_); in GetObject()
741 return Utils::ToLocal(frame_->isolate()->factory()->empty_string()); in GetFunctionDebugName()
758 WasmFrame* const frame_; member in v8::internal::__anon1e21dee00111::DebugWasmScopeIterator
Ddebug-frames.h54 CommonFrame* frame_; variable
/third_party/node/deps/v8/src/execution/
Dframes-inl.h323 DCHECK(frame_->is_java_script() || frame_->is_exit() || in frame()
324 frame_->is_builtin_exit() || frame_->is_wasm() || in frame()
325 frame_->is_wasm_to_js() || frame_->is_js_to_wasm()); in frame()
327 DCHECK(frame_->is_java_script() || frame_->is_exit() || in frame()
328 frame_->is_builtin_exit()); in frame()
330 return frame_; in frame()
Dframes.cc101 STACK_FRAME_TYPE_LIST(INITIALIZE_SINGLETON) frame_(nullptr), in StackFrameIteratorBase()
128 StackFrame::Type type = frame_->GetCallerState(&state); in Advance()
131 StackHandlerIterator it(frame_, handler_); in Advance()
136 frame_ = SingletonFor(type, &state); in Advance()
150 StackFrame::Type type = frame_->ComputeType(this, &frame_->state_); in Reframe()
151 frame_ = SingletonFor(type, &frame_->state_); in Reframe()
160 frame_ = SingletonFor(type, &state); in Reset()
173 frame_ = SingletonFor(StackFrame::STACK_SWITCH, &state); in Reset()
368 frame_ = nullptr; in SafeStackFrameIterator()
455 frame_ = SingletonFor(type, &state); in SafeStackFrameIterator()
[all …]
Dframes.h1210 bool done() const { return frame_ == nullptr; } in done()
1220 StackFrame* frame_;
1255 return frame_; in frame()
/third_party/node/deps/v8/src/maglev/
Dmaglev-interpreter-frame-state.h29 : frame_(info) {} in InterpreterFrameState()
33 : frame_(info) { in InterpreterFrameState()
34 frame_.CopyFrom(info, state.frame_, nullptr); in InterpreterFrameState()
39 frame_.CopyFrom(info, state.frame_, nullptr); in CopyFrom()
46 frame_[interpreter::Register::virtual_accumulator()] = value; in set_accumulator()
49 return frame_[interpreter::Register::virtual_accumulator()]; in accumulator()
58 frame_[reg] = value; in set()
66 return frame_[reg]; in get()
69 const RegisterFrameArray<ValueNode*>& frame() const { return frame_; } in frame()
72 RegisterFrameArray<ValueNode*> frame_;
[all …]
/third_party/vk-gl-cts/external/amber/src/src/vulkan/
Dgraphics_pipeline.cc744 frame_ = in Initialize()
747 r = frame_->Initialize(render_pass_); in Initialize()
825 frame_->ChangeFrameToWriteLayout(GetCommandBuffer()); in Clear()
826 frame_->CopyBuffersToImages(); in Clear()
827 frame_->TransferImagesToDevice(GetCommandBuffer()); in Clear()
870 frame_->TransferImagesToHost(command_.get()); in Clear()
876 frame_->CopyImagesToBuffers(); in Clear()
912 frame_->ChangeFrameToWriteLayout(GetCommandBuffer()); in Draw()
913 frame_->CopyBuffersToImages(); in Draw()
914 frame_->TransferImagesToDevice(GetCommandBuffer()); in Draw()
[all …]
Dframe_buffer.h48 VkFramebuffer GetVkFrameBuffer() const { return frame_; } in GetVkFrameBuffer()
76 VkFramebuffer frame_ = VK_NULL_HANDLE; variable
Dgraphics_pipeline.h64 FrameBuffer* GetFrameBuffer() const { return frame_.get(); } in GetFrameBuffer()
88 std::unique_ptr<FrameBuffer> frame_; variable
Dframe_buffer.cc44 if (frame_ != VK_NULL_HANDLE) { in ~FrameBuffer()
45 device_->GetPtrs()->vkDestroyFramebuffer(device_->GetVkDevice(), frame_, in ~FrameBuffer()
135 &frame_) != VK_SUCCESS) { in Initialize()
/third_party/node/deps/v8/src/compiler/
Dframe.h230 : frame_(frame), in FrameAccessState()
235 const Frame* frame() const { return frame_; } in frame()
269 const Frame* const frame_;
Dpipeline.cc378 Frame* frame() const { return frame_; } in frame()
488 frame_ = nullptr; in DeleteCodegenZone()
513 DCHECK_NULL(frame_); in InitializeFrameData()
519 frame_ = codegen_zone()->New<Frame>(fixed_frame_size); in InitializeFrameData()
647 Frame* frame_ = nullptr; member in v8::internal::compiler::PipelineData
/third_party/node/deps/v8/src/compiler/backend/
Dmid-tier-register-allocator.h84 Frame* frame() const { return frame_; } in frame()
91 Frame* const frame_; variable
Dcode-generator-impl.h264 const Frame* frame() const { return frame_; } in frame()
271 const Frame* const frame_; variable
Dregister-allocator.h299 Frame* frame() const { return frame_; } in frame()
359 Frame* const frame_; variable
Dinstruction-selector.h750 Frame* frame_; variable
Dcode-generator.cc1310 : frame_(gen->frame()), tasm_(gen->tasm()), next_(gen->ools_) { in OutOfLineCode()
Dinstruction-selector.cc74 frame_(frame), in InstructionSelector()
978 frame_->EnsureReturnSlots( in InitializeCallBuffer()
Dmid-tier-register-allocator.cc125 frame_(frame), in MidTierRegisterAllocationData()
/third_party/node/deps/v8/src/deoptimizer/
Ddeoptimizer.cc48 frame_(frame), in FrameWriter()
72 frame_->SetFrameSlot(top_offset_, pc); in PushBottommostCallerPc()
78 frame_->SetCallerPc(top_offset_, pc); in PushApprovedCallerPc()
84 frame_->SetCallerFp(top_offset_, fp); in PushCallerFp()
90 frame_->SetCallerConstantPool(top_offset_, cp); in PushCallerConstantPool()
119 FrameDescription* frame() { return frame_; } in frame()
125 frame_->SetFrameSlot(top_offset_, value); in PushValue()
130 static_cast<Address>(frame_->GetTop()) + output_offset; in output_address()
172 FrameDescription* frame_; member in v8::internal::FrameWriter
/third_party/ffmpeg/doc/
Dbitstream_filters.texi516 ffmpeg -i mjpeg-movie.avi -c:v copy -bsf:v mjpeg2jpeg frame_%d.jpg
518 ffmpeg -i frame_%d.jpg -c:v copy rotated.avi
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/video/
Dh264_encode.adoc209 A frame consisting of a P picture is also referred to as a _P frame_.
212 A frame consisting of a B picture is also referred to as a _B frame_.
215 A frame consisting of an I picture is also referred to as an _I frame_.
221 frame_.
Dh265_encode.adoc205 A frame consisting of a P picture is also referred to as a _P frame_.
208 A frame consisting of a B picture is also referred to as a _B frame_.
211 A frame consisting of an I picture is also referred to as an _I frame_.
217 frame_.
/third_party/node/deps/v8/src/compiler/backend/ppc/
Dinstruction-selector-ppc.cc161 int slot = frame_->AllocateSpillSlot(rep.size(), rep.alignment()); in VisitStackSlot()

12