Home
last modified time | relevance | path

Searched refs:frame_index (Results 1 – 22 of 22) sorted by relevance

/external/v8/src/
Ddeoptimizer.cc123 int frame_index = 0; in ConvertJSFrameIndexToFrameIndex() local
125 FrameDescription* frame = output_[frame_index]; in ConvertJSFrameIndexToFrameIndex()
129 frame_index++; in ConvertJSFrameIndexToFrameIndex()
132 return frame_index - 1; in ConvertJSFrameIndexToFrameIndex()
177 int frame_index = deoptimizer->ConvertJSFrameIndexToFrameIndex(jsframe_index); in DebuggerInspectableFrame() local
180 frame_index > 0 && in DebuggerInspectableFrame()
181 deoptimizer->output_[frame_index - 1]->GetFrameType() == in DebuggerInspectableFrame()
186 frame_index >= construct_offset && in DebuggerInspectableFrame()
187 deoptimizer->output_[frame_index - construct_offset]->GetFrameType() == in DebuggerInspectableFrame()
191 frame_index, in DebuggerInspectableFrame()
[all …]
Ddeoptimizer.h310 void DoComputeJSFrame(TranslationIterator* iterator, int frame_index);
312 int frame_index);
314 int frame_index);
316 int frame_index,
319 int frame_index);
329 int frame_index,
919 int frame_index,
Dliveedit.cc1769 int frame_index = 0; in DropActivationsInActiveThreadImpl() local
1770 for (; frame_index < frames.length(); frame_index++) { in DropActivationsInActiveThreadImpl()
1771 StackFrame* frame = frames[frame_index]; in DropActivationsInActiveThreadImpl()
1773 top_frame_index = frame_index; in DropActivationsInActiveThreadImpl()
1794 for (; frame_index < frames.length(); frame_index++) { in DropActivationsInActiveThreadImpl()
1795 StackFrame* frame = frames[frame_index]; in DropActivationsInActiveThreadImpl()
1810 bottom_js_frame_index = frame_index; in DropActivationsInActiveThreadImpl()
1818 for (; frame_index < frames.length(); frame_index++) { in DropActivationsInActiveThreadImpl()
1819 StackFrame* frame = frames[frame_index]; in DropActivationsInActiveThreadImpl()
Ddebug-debugger.js1888 frame_index = scope_description.frameNumber;
1889 if (frame_index < 0 || this.exec_state_.frameCount() <= frame_index) {
1892 return this.exec_state_.frame(frame_index);
/external/v8/test/mjsunit/
Ddebug-step-4-in-frame.js56 function TestCase(frame_index, step_count, expected_final_state) { argument
57 print("Test case, parameters " + frame_index + "/" + step_count);
72 if (frame_index !== undefined) {
73 context_frame = exec_state.frame(frame_index);
/external/google-breakpad/src/processor/
Dstackwalker_address_list.cc78 size_t frame_index = stack->frames()->size(); in GetCallerFrame() local
81 if (frame_index >= frame_count_) in GetCallerFrame()
87 frame->instruction = frames_[frame_index]; in GetCallerFrame()
Dstackwalker_selftest.cc352 for (unsigned int frame_index = 0; in CountCallerFrames() local
353 frame_index < stack.frames()->size(); in CountCallerFrames()
354 ++frame_index) { in CountCallerFrames()
355 StackFrame *frame = stack.frames()->at(frame_index); in CountCallerFrames()
357 frame_index, frame->instruction); in CountCallerFrames()
Dstackwalk_common.cc262 for (int frame_index = 0; frame_index < frame_count; ++frame_index) { in PrintStack() local
263 const StackFrame *frame = stack->frames()->at(frame_index); in PrintStack()
264 printf("%2d ", frame_index); in PrintStack()
609 if (output_stack_contents && frame_index + 1 < frame_count) { in PrintStack()
611 PrintStackContents(indent, frame, stack->frames()->at(frame_index + 1), in PrintStack()
626 for (int frame_index = 0; frame_index < frame_count; ++frame_index) { in PrintStackMachineReadable() local
627 const StackFrame *frame = stack->frames()->at(frame_index); in PrintStackMachineReadable()
628 printf("%d%c%d%c", thread_num, kOutputSeparator, frame_index, in PrintStackMachineReadable()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c1379 int frame_index = 1; in allocate_gf_group_bits() local
1424 twopass->gf_group.update_type[frame_index] = ARF_UPDATE; in allocate_gf_group_bits()
1425 twopass->gf_group.rf_level[frame_index] = GF_ARF_STD; in allocate_gf_group_bits()
1426 twopass->gf_group.bit_allocation[frame_index] = gf_arf_bits; in allocate_gf_group_bits()
1427 twopass->gf_group.arf_src_offset[frame_index] = in allocate_gf_group_bits()
1429 twopass->gf_group.arf_update_idx[frame_index] = arf_buffer_indices[0]; in allocate_gf_group_bits()
1430 twopass->gf_group.arf_ref_idx[frame_index] = in allocate_gf_group_bits()
1433 ++frame_index; in allocate_gf_group_bits()
1437 twopass->gf_group.update_type[frame_index] = ARF_UPDATE; in allocate_gf_group_bits()
1438 twopass->gf_group.rf_level[frame_index] = GF_ARF_LOW; in allocate_gf_group_bits()
[all …]
Dvp9_encoder.h556 static INLINE int get_chessboard_index(const int frame_index) { in get_chessboard_index() argument
557 return frame_index & 0x1; in get_chessboard_index()
/external/libgsm/src/
Dgsm_option.c52 result = r->frame_index;
53 if (val) r->frame_index = *val;
Dgsm_encode.c109 s->frame_index = !s->frame_index;
110 if (s->frame_index) {
Dgsm_decode.c23 s->frame_index = !s->frame_index;
24 if (s->frame_index) {
Dgsm_implode.c119 if (s->frame_index) {
Dgsm_explode.c27 if (s->frame_index == 1) {
/external/libvpx/libvpx/examples/
Dvp8cx_set_ref.c70 int frame_index, in encode_frame() argument
74 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, 0, in encode_frame()
Dsimple_encoder.c123 int frame_index, in encode_frame() argument
129 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, in encode_frame()
Dset_maps.c130 int frame_index, in encode_frame() argument
134 const vpx_codec_err_t res = vpx_codec_encode(codec, img, frame_index, 1, 0, in encode_frame()
/external/google-breakpad/src/tools/mac/crash_report/
Dcrash_report.mm93 for (size_t frame_index = 0; frame_index < frame_count; ++frame_index) {
94 const StackFrame *frame = stack->frames()->at(frame_index);
96 printf("%2zu ", frame_index);
115 if (cpu == "ppc" && frame_index)
/external/libgsm/inc/
Dprivate.h40 unsigned char frame_index; /* odd/even chaining */ member
/external/libvpx/libwebm/
Dmkvparser.hpp100 const Frame& GetFrame(int frame_index) const;
/external/libvpx/libvpx/third_party/libwebm/
Dmkvparser.hpp100 const Frame& GetFrame(int frame_index) const;