HomeSort by relevance Sort by last modified time
    Searched refs:frame_info (Results 1 - 25 of 50) sorted by null

1 2

  /external/lldb/examples/python/
stacks.py 19 frame_info = {}
37 if name not in frame_info:
38 frame_info[name] = first_frame_size
40 frame_info[name] += first_frame_size
47 if name not in frame_info:
48 frame_info[name] = frame_size
50 frame_info[name] += frame_size
52 print frame_info
  /art/runtime/arch/arm/
context_arm.cc 46 const QuickMethodFrameInfo frame_info = method->GetQuickFrameInfo(); local
47 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
48 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
53 if (((frame_info.CoreSpillMask() >> i) & 1) != 0) {
54 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
63 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
65 frame_info.FrameSizeInBytes());
  /art/runtime/arch/mips/
context_mips.cc 45 const QuickMethodFrameInfo frame_info = method->GetQuickFrameInfo(); local
46 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
47 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
52 if (((frame_info.CoreSpillMask() >> i) & 1) != 0) {
53 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
62 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
64 frame_info.FrameSizeInBytes());
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 48 QuickMethodFrameInfo frame_info = save_method->GetQuickFrameInfo(); variable
49 EXPECT_EQ(frame_info.FrameSizeInBytes(), save_size) << "Expected and real size differs for "
50 << type << " core spills=" << std::hex << frame_info.CoreSpillMask() << " fp spills="
51 << frame_info.FpSpillMask() << std::dec << " ISA " << isa;
57 QuickMethodFrameInfo frame_info = save_method->GetQuickFrameInfo(); variable
59 " differs for " << type << " core spills=" << std::hex << frame_info.CoreSpillMask() <<
60 " fp spills=" << frame_info.FpSpillMask() << std::dec << " ISA " << isa;
  /art/runtime/arch/x86/
context_x86.cc 41 const QuickMethodFrameInfo frame_info = method->GetQuickFrameInfo(); local
42 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
43 DCHECK_EQ(frame_info.FpSpillMask(), 0u);
48 if (((frame_info.CoreSpillMask() >> i) & 1) != 0) {
49 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
mp4_utils.cpp 305 OMX_QCOM_EXTRADATA_FRAMEINFO *frame_info)
309 frame_info->aspectRatio.aspectRatioX = 1;
310 frame_info->aspectRatio.aspectRatioY = 1;
314 frame_info->aspectRatio.aspectRatioX = 12;
315 frame_info->aspectRatio.aspectRatioY = 11;
319 frame_info->aspectRatio.aspectRatioX = 10;
320 frame_info->aspectRatio.aspectRatioY = 11;
324 frame_info->aspectRatio.aspectRatioX = 16;
325 frame_info->aspectRatio.aspectRatioY = 11;
329 frame_info->aspectRatio.aspectRatioX = 40
    [all...]
  /art/runtime/arch/arm64/
context_arm64.cc 49 const QuickMethodFrameInfo frame_info = method->GetQuickFrameInfo(); local
50 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
51 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
56 if (((frame_info.CoreSpillMask() >> i) & 1) != 0) {
57 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
67 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
69 frame_info.FrameSizeInBytes());
  /art/runtime/arch/x86_64/
context_x86_64.cc 44 const QuickMethodFrameInfo frame_info = method->GetQuickFrameInfo(); local
45 size_t spill_count = POPCOUNT(frame_info.CoreSpillMask());
46 size_t fp_spill_count = POPCOUNT(frame_info.FpSpillMask());
51 if (((frame_info.CoreSpillMask() >> i) & 1) != 0) {
52 gprs_[i] = fr.CalleeSaveAddress(spill_count - j, frame_info.FrameSizeInBytes());
61 if (((frame_info.FpSpillMask() >> i) & 1) != 0) {
63 fr.CalleeSaveAddress(spill_count + fp_spill_count - j, frame_info.FrameSizeInBytes()));
  /external/aac/libSBRenc/src/
env_est.cpp 571 const SBR_FRAME_INFO *frame_info, /*! frame info vector */
591 INT nEnvelopes = frame_info->nEnvelopes;
592 INT short_env = frame_info->shortEnv - 1;
627 start_pos = timeStep * frame_info->borders[i];
628 stop_pos = timeStep * frame_info->borders[i + 1];
629 freq_res = frame_info->freqRes[i];
    [all...]
nf_est.h 116 const SBR_FRAME_INFO *frame_info, /*!< Time frequency grid of the current frame. */
env_est.h 178 const SBR_FRAME_INFO *frame_info; member in struct:__anon4863
  /external/libunwind/src/x86_64/
Gstep.c 129 c->frame_info.cfa_reg_offset = 8;
130 c->frame_info.cfa_reg_rsp = -1;
131 c->frame_info.frame_type = UNW_X86_64_FRAME_STANDARD;
183 c->frame_info.frame_type = UNW_X86_64_FRAME_GUESSED;
184 c->frame_info.cfa_reg_rsp = 0;
185 c->frame_info.cfa_reg_offset = 16;
186 c->frame_info.rbp_cfa_offset = -16;
Gos-linux.c 67 c->frame_info.frame_type = UNW_X86_64_FRAME_SIGRETURN;
69 c->frame_info.cfa_reg_offset = 0;
78 ? c->frame_info.cfa_reg_offset : 0));
Gstash_frame.c 32 unw_tdep_frame_t *f = &c->frame_info;
Gtrace.c 243 c->frame_info = *f;
249 *f = c->frame_info;
  /art/runtime/
stack.cc 162 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); local
167 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
191 *val = *GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask(),
192 frame_info.FpSpillMask(), frame_info.FrameSizeInBytes(), vreg);
216 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); local
222 uint32_t spill_mask = is_float ? frame_info.FpSpillMask() : frame_info.CoreSpillMask();
244 uint32_t* addr = GetVRegAddr(cur_quick_frame_, code_item, frame_info.CoreSpillMask()
263 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); local
327 QuickMethodFrameInfo frame_info = m->GetQuickFrameInfo(code_pointer); local
    [all...]
  /external/chromium_org/content/renderer/pepper/
content_decryptor_delegate.cc     [all...]
  /art/runtime/arch/
arch_test.cc 37 QuickMethodFrameInfo frame_info = save_method->GetQuickFrameInfo(); variable
38 EXPECT_EQ(frame_info.FrameSizeInBytes(), save_size) << "Expected and real size differs for "
39 << type << " core spills=" << std::hex << frame_info.CoreSpillMask() << " fp spills="
40 << frame_info.FpSpillMask() << std::dec;
  /external/chromium_org/content/browser/android/in_process/
synchronous_compositor_impl.h 97 void UpdateFrameMetaData(const cc::CompositorFrameMetadata& frame_info);
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 151 OMX_QCOM_EXTRADATA_FRAMEINFO *frame_info);
  /external/chromium_org/media/cast/logging/
stats_event_subscriber.cc 394 const FrameInfo& frame_info) {
402 recent_frame_infos_.insert(std::make_pair(rtp_timestamp, frame_info));
414 FrameInfo frame_info; local
415 frame_info.capture_time = frame_event.timestamp;
416 MaybeInsertFrameInfo(frame_event.rtp_timestamp, frame_info);
438 FrameInfo frame_info; local
439 frame_info.encode_time = frame_event.timestamp;
440 MaybeInsertFrameInfo(frame_event.rtp_timestamp, frame_info);
stats_event_subscriber.h 193 const FrameInfo& frame_info);
  /external/chromium_org/media/cast/net/rtp/
framer.cc 65 linked_ptr<FrameBuffer> frame_info(new FrameBuffer);
67 frames_.insert(std::make_pair(frame_id, frame_info));
  /external/opencv/cv/src/
cvcontours.cpp 165 _CvContourInfo frame_info; /* information about frame */ member in struct:_CvContourScanner
245 scanner->frame_info.contour = &(scanner->frame);
246 scanner->frame_info.is_hole = 1;
247 scanner->frame_info.next = 0;
248 scanner->frame_info.parent = 0;
249 scanner->frame_info.rect = cvRect( 0, 0, size.width, size.height );
907 par_info = &(scanner->frame_info);
947 par_info = &(scanner->frame_info);
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg.c 539 QOMX_YUV_FRAME_INFO frame_info; local
547 memset(&frame_info, 0x0, sizeof(QOMX_YUV_FRAME_INFO));
549 frame_info.cbcrStartOffset[0] = p_src_buf->offset.mp[0].len;
550 frame_info.cbcrStartOffset[1] = p_src_buf->offset.mp[1].len;
551 frame_info.yOffset = p_src_buf->offset.mp[0].offset;
552 frame_info.cbcrOffset[0] = p_src_buf->offset.mp[1].offset;
553 frame_info.cbcrOffset[1] = p_src_buf->offset.mp[2].offset;
565 (int)frame_info.yOffset,
566 (int)frame_info.cbcrOffset[0],
567 (int)frame_info.cbcrOffset[1]
    [all...]

Completed in 828 milliseconds

1 2