Home
last modified time | relevance | path

Searched refs:last_frame (Results 1 – 25 of 112) sorted by relevance

12345

/aosp_15_r20/external/google-breakpad/src/processor/
H A Dstackwalker_riscv.cc82 StackFrameRISCV* last_frame = in GetCallerByCFIFrameInfo() local
87 if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_PC) in GetCallerByCFIFrameInfo()
88 callee_registers["pc"] = last_frame->context.pc; in GetCallerByCFIFrameInfo()
89 if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_RA) in GetCallerByCFIFrameInfo()
90 callee_registers["ra"] = last_frame->context.ra; in GetCallerByCFIFrameInfo()
91 if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_SP) in GetCallerByCFIFrameInfo()
92 callee_registers["sp"] = last_frame->context.sp; in GetCallerByCFIFrameInfo()
93 if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_GP) in GetCallerByCFIFrameInfo()
94 callee_registers["gp"] = last_frame->context.gp; in GetCallerByCFIFrameInfo()
95 if (last_frame->context_validity & StackFrameRISCV::CONTEXT_VALID_TP) in GetCallerByCFIFrameInfo()
[all …]
H A Dstackwalker_riscv64.cc82 StackFrameRISCV64* last_frame = in GetCallerByCFIFrameInfo() local
87 if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_PC) in GetCallerByCFIFrameInfo()
88 callee_registers["pc"] = last_frame->context.pc; in GetCallerByCFIFrameInfo()
89 if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_RA) in GetCallerByCFIFrameInfo()
90 callee_registers["ra"] = last_frame->context.ra; in GetCallerByCFIFrameInfo()
91 if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_SP) in GetCallerByCFIFrameInfo()
92 callee_registers["sp"] = last_frame->context.sp; in GetCallerByCFIFrameInfo()
93 if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_GP) in GetCallerByCFIFrameInfo()
94 callee_registers["gp"] = last_frame->context.gp; in GetCallerByCFIFrameInfo()
95 if (last_frame->context_validity & StackFrameRISCV64::CONTEXT_VALID_TP) in GetCallerByCFIFrameInfo()
[all …]
H A Dstackwalker_x86.cc150 StackFrameX86* last_frame = static_cast<StackFrameX86*>(frames.back()); in GetCallerByWindowsFrameInfo() local
154 last_frame->windows_frame_info = last_frame_info; in GetCallerByWindowsFrameInfo()
220 dictionary["$ebp"] = last_frame->context.ebp; in GetCallerByWindowsFrameInfo()
221 dictionary["$esp"] = last_frame->context.esp; in GetCallerByWindowsFrameInfo()
222 if (last_frame->context_validity & StackFrameX86::CONTEXT_VALID_EBX) in GetCallerByWindowsFrameInfo()
223 dictionary["$ebx"] = last_frame->context.ebx; in GetCallerByWindowsFrameInfo()
233 uint32_t raSearchStart = last_frame->context.esp + in GetCallerByWindowsFrameInfo()
256 last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT && in GetCallerByWindowsFrameInfo()
257 last_frame->windows_frame_info != NULL && in GetCallerByWindowsFrameInfo()
260 found == last_frame->context.eip) { in GetCallerByWindowsFrameInfo()
[all …]
H A Dstackwalker_arm64.cc107 StackFrameARM64* last_frame = static_cast<StackFrameARM64*>(frames.back()); in GetCallerByCFIFrameInfo() local
120 if (last_frame->context_validity & StackFrameARM64::RegisterValidFlag(i)) in GetCallerByCFIFrameInfo()
121 callee_registers[register_names[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
140 } else if (19 <= i && i <= 29 && (last_frame->context_validity & in GetCallerByCFIFrameInfo()
148 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
184 StackFrameARM64* last_frame = static_cast<StackFrameARM64*>(frames.back()); in GetCallerByStackScan() local
185 uint64_t last_sp = last_frame->context.iregs[MD_CONTEXT_ARM64_REG_SP]; in GetCallerByStackScan()
189 /*is_context_frame=*/last_frame->trust == in GetCallerByStackScan()
205 frame->context = last_frame->context; in GetCallerByStackScan()
216 StackFrameARM64* last_frame = static_cast<StackFrameARM64*>(frames.back()); in GetCallerByFramePointer() local
[all …]
H A Dstackwalker_amd64.cc134 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerByCFIFrameInfo() local
139 last_frame->context, last_frame->context_validity, in GetCallerByCFIFrameInfo()
166 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerByFramePointerRecovery() local
167 uint64_t last_rbp = last_frame->context.rbp; in GetCallerByFramePointerRecovery()
214 frame->context = last_frame->context; in GetCallerByFramePointerRecovery()
230 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerBySimulatingReturn() local
231 uint64_t last_rsp = last_frame->context.rsp; in GetCallerBySimulatingReturn()
246 frame->context = last_frame->context; in GetCallerBySimulatingReturn()
251 frame->context_validity = last_frame->context_validity; in GetCallerBySimulatingReturn()
258 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerByStackScan() local
[all …]
H A Dstackwalker_arm.cc86 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back()); in GetCallerByCFIFrameInfo() local
99 if (last_frame->context_validity & StackFrameARM::RegisterValidFlag(i)) in GetCallerByCFIFrameInfo()
100 callee_registers[register_names[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
118 } else if (4 <= i && i <= 11 && (last_frame->context_validity & in GetCallerByCFIFrameInfo()
125 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
143 last_frame->context.iregs[MD_CONTEXT_ARM_REG_LR]; in GetCallerByCFIFrameInfo()
169 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back()); in GetCallerByStackScan() local
170 uint32_t last_sp = last_frame->context.iregs[MD_CONTEXT_ARM_REG_SP]; in GetCallerByStackScan()
174 /*is_context_frame=*/last_frame->trust == in GetCallerByStackScan()
190 frame->context = last_frame->context; in GetCallerByStackScan()
[all …]
H A Dstackwalker_mips.cc112 StackFrameMIPS* last_frame = static_cast<StackFrameMIPS*>(frames.back()); in GetCallerByCFIFrameInfo() local
123 caller_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
124 callee_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
159 (last_frame->context_validity & in GetCallerByCFIFrameInfo()
166 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
190 caller_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
191 callee_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
226 (last_frame->context_validity & in GetCallerByCFIFrameInfo()
233 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
259 StackFrameMIPS* last_frame = static_cast<StackFrameMIPS*>(frames.back()); in GetCallerFrame() local
[all …]
H A Dstackwalker_ppc64.cc95 StackFramePPC64* last_frame = static_cast<StackFramePPC64*>( in GetCallerFrame() local
102 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
104 stack_pointer <= last_frame->context.gpr[1]) { in GetCallerFrame()
121 frame->context = last_frame->context; in GetCallerFrame()
129 if (TerminateWalk(instruction, stack_pointer, last_frame->context.gpr[1], in GetCallerFrame()
130 /*is_context_frame=*/last_frame->trust == in GetCallerFrame()
H A Dstackwalker_sparc.cc85 StackFrameSPARC* last_frame = static_cast<StackFrameSPARC*>( in GetCallerFrame() local
100 uint64_t stack_pointer = last_frame->context.g_r[30]; in GetCallerFrame()
101 if (stack_pointer <= last_frame->context.g_r[14]) { in GetCallerFrame()
118 if (TerminateWalk(instruction, stack_pointer, last_frame->context.g_r[14], in GetCallerFrame()
119 /*is_context_frame=*/last_frame->trust == in GetCallerFrame()
126 frame->context = last_frame->context; in GetCallerFrame()
H A Dstackwalker_ppc.cc104 StackFramePPC* last_frame = static_cast<StackFramePPC*>( in GetCallerFrame() local
111 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
113 stack_pointer <= last_frame->context.gpr[1]) { in GetCallerFrame()
130 frame->context = last_frame->context; in GetCallerFrame()
138 if (TerminateWalk(instruction, stack_pointer, last_frame->context.gpr[1], in GetCallerFrame()
139 /*first_unwind=*/last_frame->trust == in GetCallerFrame()
H A Dstackwalker_arm64.h97 StackFrameARM64* last_frame);
/aosp_15_r20/external/libvpx/vp8/common/
H A Dswapyv12buffer.c14 YV12_BUFFER_CONFIG *last_frame) { in vp8_swap_yv12_buffer() argument
17 temp = last_frame->buffer_alloc; in vp8_swap_yv12_buffer()
18 last_frame->buffer_alloc = new_frame->buffer_alloc; in vp8_swap_yv12_buffer()
21 temp = last_frame->y_buffer; in vp8_swap_yv12_buffer()
22 last_frame->y_buffer = new_frame->y_buffer; in vp8_swap_yv12_buffer()
25 temp = last_frame->u_buffer; in vp8_swap_yv12_buffer()
26 last_frame->u_buffer = new_frame->u_buffer; in vp8_swap_yv12_buffer()
29 temp = last_frame->v_buffer; in vp8_swap_yv12_buffer()
30 last_frame->v_buffer = new_frame->v_buffer; in vp8_swap_yv12_buffer()
H A Dswapyv12buffer.h21 YV12_BUFFER_CONFIG *last_frame);
/aosp_15_r20/external/webrtc/modules/video_coding/
H A Dframe_helpers.cc65 const EncodedFrame& last_frame = *frames.back(); in CombineAndDeleteFrames() local
76 first_frame->SetSpatialIndex(last_frame.SpatialIndex().value_or(0)); in CombineAndDeleteFrames()
79 last_frame.video_timing().network2_timestamp_ms; in CombineAndDeleteFrames()
81 last_frame.video_timing().receive_finish_ms; in CombineAndDeleteFrames()
/aosp_15_r20/external/libaom/av1/encoder/
H A Dfirstpass.c703 AV1_COMP *cpi, ThreadData *td, const YV12_BUFFER_CONFIG *const last_frame, in firstpass_inter_prediction() argument
727 xd->plane[0].pre[0].buf = last_frame->y_buffer + recon_yoffset; in firstpass_inter_prediction()
800 xd->plane[0].pre[0].buf = last_frame->y_buffer + recon_yoffset; in firstpass_inter_prediction()
802 xd->plane[1].pre[0].buf = last_frame->u_buffer + recon_uvoffset; in firstpass_inter_prediction()
803 xd->plane[2].pre[0].buf = last_frame->v_buffer + recon_uvoffset; in firstpass_inter_prediction()
992 const YV12_BUFFER_CONFIG *const last_frame, int frame_number, in print_reconstruction_frame() argument
1006 fwrite(last_frame->buffer_alloc, last_frame->frame_size, 1, recon_file); in print_reconstruction_frame()
1142 const YV12_BUFFER_CONFIG *last_frame = in av1_first_pass_row() local
1144 if (!last_frame) { in av1_first_pass_row()
1145 last_frame = get_ref_frame_yv12_buf(cm, LAST_FRAME); in av1_first_pass_row()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/util/
H A Dmanaged_stack_trace.h93 const StackFrame& last_frame = stack_frames[0]; in DefinitionLocationMsg() local
94 return absl::StrCat(" (defined @ ", last_frame.file_name, ":", in DefinitionLocationMsg()
95 last_frame.line_number, ")"); in DefinitionLocationMsg()
/aosp_15_r20/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc65 SymbolizedStack *last_frame = nullptr; in StackStripMain() local
68 last_frame2 = last_frame; in StackStripMain()
69 last_frame = cur; in StackStripMain()
75 const char *last = last_frame->info.function; in StackStripMain()
79 last_frame->ClearAll(); in StackStripMain()
83 last_frame->ClearAll(); in StackStripMain()
87 last_frame->ClearAll(); in StackStripMain()
99 last_frame->ClearAll(); in StackStripMain()
/aosp_15_r20/external/flac/src/libFLAC/
H A Dstream_decoder.c162 FLAC__Frame last_frame; /* holds the info of the last frame we decoded or seeked to */ member
2152 …FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NU… in read_frame_()
2153 …if(decoder->private_->last_frame.header.number.sample_number + decoder->private_->last_frame.heade… in read_frame_()
2154 …mber.sample_number - (decoder->private_->last_frame.header.number.sample_number + decoder->private… in read_frame_()
2160 …if(decoder->private_->last_frame.header.sample_rate == decoder->private_->frame.header.sample_rate… in read_frame_()
2161 decoder->private_->last_frame.header.channels == decoder->private_->frame.header.channels && in read_frame_()
2162 …decoder->private_->last_frame.header.bits_per_sample == decoder->private_->frame.header.bits_per_s… in read_frame_()
2163 decoder->private_->last_frame.header.blocksize >= 16) { in read_frame_()
2166 empty_frame.header = decoder->private_->last_frame.header; in read_frame_()
3214 decoder->private_->last_frame = *frame; /* save the frame */ in write_audio_frame_to_client_()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/util/
H A Dtf_stack.cc230 std::vector<StackFrame> last_frame = GetUserFrames(1); in LastUserFrame() local
232 if (last_frame.empty()) { in LastUserFrame()
235 DCHECK_EQ(last_frame.size(), 1); in LastUserFrame()
236 last_stack_frame_cache_ = last_frame[0]; in LastUserFrame()
/aosp_15_r20/external/libxaac/decoder/drc_src/
H A Dimpd_drc_main_td_process.c81 WORD32 last_frame = 0; in impd_process_time_domain() local
174 if (num_sample_to_process < p_obj_drc->str_config.frame_size) last_frame = 1; in impd_process_time_domain()
366 if (last_frame == 1) { in impd_process_time_domain()
/aosp_15_r20/development/scripts/
H A Dstack_core.py59 last_frame = -1 variable in TraceConverter
466 self.last_frame = -1
500 if frame <= self.last_frame and (self.trace_lines or self.value_lines):
505 self.last_frame = frame
/aosp_15_r20/external/webrtc/api/video/
H A Dframe_buffer.cc126 auto end_it = std::next(next_decodable_temporal_unit_->last_frame); in ExtractNextDecodableTemporalUnit()
142 auto end_it = std::next(next_decodable_temporal_unit_->last_frame); in DropNextDecodableTemporalUnit()
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/host/l2cap/
H A Denhanced_retransmission_mode_tx_engine.cc406 auto last_frame = std::next(cur_frame, n_to_send); in RetransmitUnackedData() local
407 for (; cur_frame != last_frame; cur_frame++) { in RetransmitUnackedData()
/aosp_15_r20/external/grpc-grpc/test/core/bad_client/
H A Dbad_client.cc305 grpc_slice last_frame = last_frame_buffer.slices[0]; in rst_stream_client_validator() local
307 const uint8_t* p = GRPC_SLICE_START_PTR(last_frame); in rst_stream_client_validator()
/aosp_15_r20/external/cronet/net/test/embedded_test_server/
H A Dhttp2_connection.cc109 void set_last_frame(bool last_frame) { last_frame_ = last_frame; } in set_last_frame() argument

12345