Home
last modified time | relevance | path

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

12

/external/libvpx/libvpx/vp8/common/
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()
Dswapyv12buffer.h21 YV12_BUFFER_CONFIG *last_frame);
/external/google-breakpad/src/processor/
Dstackwalker_arm64.cc104 StackFrameARM64* last_frame = static_cast<StackFrameARM64*>(frames.back()); in GetCallerByCFIFrameInfo() local
117 if (last_frame->context_validity & StackFrameARM64::RegisterValidFlag(i)) in GetCallerByCFIFrameInfo()
118 callee_registers[register_names[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
137 } else if (19 <= i && i <= 29 && (last_frame->context_validity & in GetCallerByCFIFrameInfo()
145 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
179 StackFrameARM64* last_frame = static_cast<StackFrameARM64*>(frames.back()); in GetCallerByStackScan() local
180 uint64_t last_sp = last_frame->context.iregs[MD_CONTEXT_ARM64_REG_SP]; in GetCallerByStackScan()
199 frame->context = last_frame->context; in GetCallerByStackScan()
210 StackFrameARM64* last_frame = static_cast<StackFrameARM64*>(frames.back()); in GetCallerByFramePointer() local
211 if (!(last_frame->context_validity & StackFrameARM64::CONTEXT_VALID_LR)) { in GetCallerByFramePointer()
[all …]
Dstackwalker_x86.cc144 StackFrameX86* last_frame = static_cast<StackFrameX86*>(frames.back()); in GetCallerByWindowsFrameInfo() local
148 last_frame->windows_frame_info = last_frame_info; in GetCallerByWindowsFrameInfo()
208 dictionary["$ebp"] = last_frame->context.ebp; in GetCallerByWindowsFrameInfo()
209 dictionary["$esp"] = last_frame->context.esp; in GetCallerByWindowsFrameInfo()
210 if (last_frame->context_validity & StackFrameX86::CONTEXT_VALID_EBX) in GetCallerByWindowsFrameInfo()
211 dictionary["$ebx"] = last_frame->context.ebx; in GetCallerByWindowsFrameInfo()
221 uint32_t raSearchStart = last_frame->context.esp + in GetCallerByWindowsFrameInfo()
244 last_frame->trust == StackFrame::FRAME_TRUST_CONTEXT && in GetCallerByWindowsFrameInfo()
245 last_frame->windows_frame_info != NULL && in GetCallerByWindowsFrameInfo()
248 found == last_frame->context.eip) { in GetCallerByWindowsFrameInfo()
[all …]
Dstackwalker_arm.cc83 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back()); in GetCallerByCFIFrameInfo() local
96 if (last_frame->context_validity & StackFrameARM::RegisterValidFlag(i)) in GetCallerByCFIFrameInfo()
97 callee_registers[register_names[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
115 } else if (4 <= i && i <= 11 && (last_frame->context_validity & in GetCallerByCFIFrameInfo()
122 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
140 last_frame->context.iregs[MD_CONTEXT_ARM_REG_LR]; in GetCallerByCFIFrameInfo()
166 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back()); in GetCallerByStackScan() local
167 uint32_t last_sp = last_frame->context.iregs[MD_CONTEXT_ARM_REG_SP]; in GetCallerByStackScan()
186 frame->context = last_frame->context; in GetCallerByStackScan()
197 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back()); in GetCallerByFramePointer() local
[all …]
Dstackwalker_amd64.cc131 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerByCFIFrameInfo() local
136 last_frame->context, last_frame->context_validity, in GetCallerByCFIFrameInfo()
158 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerByFramePointerRecovery() local
159 uint64_t last_rbp = last_frame->context.rbp; in GetCallerByFramePointerRecovery()
206 frame->context = last_frame->context; in GetCallerByFramePointerRecovery()
221 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back()); in GetCallerByStackScan() local
222 uint64_t last_rsp = last_frame->context.rsp; in GetCallerByStackScan()
236 frame->context = last_frame->context; in GetCallerByStackScan()
246 if (last_frame->context_validity & StackFrameAMD64::CONTEXT_VALID_RBP) { in GetCallerByStackScan()
251 if (caller_rip_address - 8 == last_frame->context.rbp) { in GetCallerByStackScan()
[all …]
Dstackwalker_mips.cc109 StackFrameMIPS* last_frame = static_cast<StackFrameMIPS*>(frames.back()); in GetCallerByCFIFrameInfo() local
120 caller_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
121 callee_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
156 (last_frame->context_validity & in GetCallerByCFIFrameInfo()
163 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
187 caller_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
188 callee_registers[kRegisterNames[i]] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
223 (last_frame->context_validity & in GetCallerByCFIFrameInfo()
230 frame->context.iregs[i] = last_frame->context.iregs[i]; in GetCallerByCFIFrameInfo()
256 StackFrameMIPS* last_frame = static_cast<StackFrameMIPS*>(frames.back()); in GetCallerFrame() local
[all …]
Dstackwalker_ppc64.cc92 StackFramePPC64* last_frame = static_cast<StackFramePPC64*>( in GetCallerFrame() local
99 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
101 stack_pointer <= last_frame->context.gpr[1]) { in GetCallerFrame()
118 frame->context = last_frame->context; in GetCallerFrame()
128 last_frame->context.gpr[1], in GetCallerFrame()
Dstackwalker_sparc.cc82 StackFrameSPARC* last_frame = static_cast<StackFrameSPARC*>( in GetCallerFrame() local
97 uint64_t stack_pointer = last_frame->context.g_r[30]; in GetCallerFrame()
98 if (stack_pointer <= last_frame->context.g_r[14]) { in GetCallerFrame()
117 last_frame->context.g_r[14], in GetCallerFrame()
124 frame->context = last_frame->context; in GetCallerFrame()
Dstackwalker_ppc.cc101 StackFramePPC* last_frame = static_cast<StackFramePPC*>( in GetCallerFrame() local
108 if (!memory_->GetMemoryAtAddress(last_frame->context.gpr[1], in GetCallerFrame()
110 stack_pointer <= last_frame->context.gpr[1]) { in GetCallerFrame()
127 frame->context = last_frame->context; in GetCallerFrame()
137 last_frame->context.gpr[1], in GetCallerFrame()
Dstackwalker_arm64.h98 StackFrameARM64* last_frame);
/external/llvm-project/lldb/examples/python/
Dstacks.py31 last_frame = None
34 if last_frame:
37 if frame.fp == last_frame.fp:
44 first_frame_size = last_frame.fp - last_frame.sp
45 print("<%#7x> %s" % (first_frame_size, last_frame))
47 name = last_frame.name
54 frame_size = frame.fp - last_frame.fp
62 last_frame = frame
/external/libaom/libaom/av1/encoder/
Dfirstpass.c560 AV1_COMP *cpi, const YV12_BUFFER_CONFIG *const last_frame, in firstpass_inter_prediction() argument
582 xd->plane[0].pre[0].buf = last_frame->y_buffer + recon_yoffset; in firstpass_inter_prediction()
676 xd->plane[0].pre[0].buf = last_frame->y_buffer + recon_yoffset; in firstpass_inter_prediction()
677 xd->plane[1].pre[0].buf = last_frame->u_buffer + recon_uvoffset; in firstpass_inter_prediction()
678 xd->plane[2].pre[0].buf = last_frame->v_buffer + recon_uvoffset; in firstpass_inter_prediction()
830 const YV12_BUFFER_CONFIG *const last_frame, int frame_number, in print_reconstruction_frame() argument
844 fwrite(last_frame->buffer_alloc, last_frame->frame_size, 1, recon_file); in print_reconstruction_frame()
881 const YV12_BUFFER_CONFIG *const last_frame = in av1_first_pass() local
900 assert(frame_is_intra_only(cm) || (last_frame != NULL)); in av1_first_pass()
921 av1_setup_pre_planes(xd, 0, last_frame, 0, 0, NULL, num_planes); in av1_first_pass()
[all …]
Dpass2_strategy.c457 const GF_FRAME_STATS *last_frame, in get_features_from_gf_stats() argument
477 *features++ = (float)(last_frame->frame_coded_error / num_mbs); in get_features_from_gf_stats()
478 *features++ = (float)(last_frame->frame_sr_coded_error / num_mbs); in get_features_from_gf_stats()
479 *features++ = (float)(last_frame->frame_tr_coded_error / num_mbs); in get_features_from_gf_stats()
1937 const FIRSTPASS_STATS *last_frame, in test_candidate_kf() argument
1960 ((fabs(last_frame->coded_error - this_frame->coded_error) / in test_candidate_kf()
1963 (fabs(last_frame->intra_error - this_frame->intra_error) / in test_candidate_kf()
2064 FIRSTPASS_STATS last_frame; in define_kf_interval() local
2101 last_frame = *this_frame; in define_kf_interval()
2110 if (test_candidate_kf(twopass, &last_frame, this_frame, twopass->stats_in, in define_kf_interval()
/external/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_report.cpp68 SymbolizedStack *last_frame = nullptr; in StackStripMain() local
71 last_frame2 = last_frame; in StackStripMain()
72 last_frame = cur; in StackStripMain()
78 const char *last = last_frame->info.function; in StackStripMain()
82 last_frame->ClearAll(); in StackStripMain()
86 last_frame->ClearAll(); in StackStripMain()
90 last_frame->ClearAll(); in StackStripMain()
102 last_frame->ClearAll(); in StackStripMain()
/external/compiler-rt/lib/tsan/rtl/
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()
/external/tensorflow/tensorflow/python/util/
Dtf_stack.cc165 std::vector<StackFrame> last_frame = captured_.ToStackFrames( in LastUserFrame() local
174 if (last_frame.empty()) { in LastUserFrame()
177 DCHECK_EQ(last_frame.size(), 1); in LastUserFrame()
178 last_stack_frame_cache_ = last_frame[0]; in LastUserFrame()
/external/webrtc/modules/video_coding/
Dframe_buffer2.cc722 EncodedFrame* last_frame = frames.back(); in CombineAndDeleteFrames() local
736 first_frame->SetSpatialIndex(last_frame->id.spatial_layer); in CombineAndDeleteFrames()
737 first_frame->id.spatial_layer = last_frame->id.spatial_layer; in CombineAndDeleteFrames()
740 last_frame->video_timing().network2_timestamp_ms; in CombineAndDeleteFrames()
742 last_frame->video_timing().receive_finish_ms; in CombineAndDeleteFrames()
/external/libxaac/decoder/drc_src/
Dimpd_drc_main_td_process.c79 WORD32 last_frame = 0; in impd_process_time_domain() local
123 if (num_sample_to_process < p_obj_drc->str_config.frame_size) last_frame = 1; in impd_process_time_domain()
311 if (last_frame == 1) { in impd_process_time_domain()
/external/grpc-grpc/test/core/bad_client/
Dbad_client.cc286 grpc_slice last_frame = last_frame_buffer.slices[0]; in rst_stream_client_validator() local
288 const uint8_t* p = GRPC_SLICE_START_PTR(last_frame); in rst_stream_client_validator()
/external/llvm-project/lldb/source/Target/
DStackFrameList.cpp970 uint32_t last_frame; in GetStatus() local
974 last_frame = UINT32_MAX; in GetStatus()
976 last_frame = first_frame + num_frames; in GetStatus()
988 for (frame_idx = first_frame; frame_idx < last_frame; ++frame_idx) { in GetStatus()
/external/kernel-headers/original/uapi/drm/
Dr128_drm.h167 unsigned int last_frame; member
/external/igt-gpu-tools/include/drm-uapi/
Dr128_drm.h167 unsigned int last_frame; member
/external/libdrm/include/drm/
Dr128_drm.h167 unsigned int last_frame; member
/external/flac/src/libFLAC/
Dstream_decoder.c165 FLAC__Frame last_frame; /* holds the info of the last frame we seeked to */ member
2946 decoder->private_->last_frame = *frame; /* save the frame */ in write_audio_frame_to_client_()
2957 decoder->private_->last_frame.header.blocksize -= delta; in write_audio_frame_to_client_()
2958 decoder->private_->last_frame.header.number.sample_number += (FLAC__uint64)delta; in write_audio_frame_to_client_()
2960 …return decoder->private_->write_callback(decoder, &decoder->private_->last_frame, newbuffer, decod… in write_audio_frame_to_client_()
3162 …FLAC__ASSERT(decoder->private_->last_frame.header.number_type == FLAC__FRAME_NUMBER_TYPE_SAMPLE_NU… in seek_to_absolute_sample_()
3163 this_frame_sample = decoder->private_->last_frame.header.number.sample_number; in seek_to_absolute_sample_()
3165 …if (0 == decoder->private_->samples_decoded || (this_frame_sample + decoder->private_->last_frame.… in seek_to_absolute_sample_()
3186 upper_bound_sample = this_frame_sample + decoder->private_->last_frame.header.blocksize; in seek_to_absolute_sample_()
3195 lower_bound_sample = this_frame_sample + decoder->private_->last_frame.header.blocksize; in seek_to_absolute_sample_()
[all …]

12