HomeSort by relevance Sort by last modified time
    Searched defs:frame_index (Results 1 - 13 of 13) sorted by null

  /external/google-breakpad/src/processor/
stackwalker_address_list.cc 78 size_t frame_index = stack->frames()->size(); local
81 if (frame_index >= frame_count_)
87 frame->instruction = frames_[frame_index];
  /external/libchrome/base/trace_event/
heap_profiler_stack_frame_deduplicator.cc 31 int frame_index = -1; local
42 FrameNode frame_node(frame, frame_index);
46 frame_index = static_cast<int>(frames_.size());
49 nodes->insert(std::make_pair(frame, frame_index));
56 frame_index = node->second;
59 nodes = &frames_[frame_index].children;
62 return frame_index;
  /external/libgsm/inc/
private.h 40 unsigned char frame_index; /* odd/even chaining */ member in struct:gsm_state
  /external/webrtc/webrtc/modules/video_coding/
decoding_state.cc 78 uint16_t frame_index = picture_id_ % kFrameDecodedLength; local
80 frame_decoded_cleared_to_ = frame_index;
83 frame_decoded_cleared_to_ = frame_index;
85 if (AheadOfFramesDecodedClearedTo(frame_index)) {
86 while (frame_decoded_cleared_to_ != frame_index) {
93 frame_decoded_[frame_index] = true;
253 uint16_t frame_index = frame_ref % kFrameDecodedLength; local
254 if (AheadOfFramesDecodedClearedTo(frame_index) ||
255 !frame_decoded_[frame_index]) {
  /frameworks/av/media/libstagefright/codec2/include/
C2Work.h 74 uint64_t frame_index; // submission ordinal on the initial component member in struct:android::C2WorkOrdinalStruct
79 C2FIELD(frame_index, "frame-index")
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_unittest.cc 298 static void PopulateRtpInfo(int frame_index,
301 static void PopulateCng(int frame_index,
494 void NetEqDecodingTest::PopulateRtpInfo(int frame_index,
497 rtp_info->header.sequenceNumber = frame_index;
504 void NetEqDecodingTest::PopulateCng(int frame_index,
509 rtp_info->header.sequenceNumber = frame_index;
639 int frame_index = 0; local
642 while (frame_index < kNumFrames) {
645 int num_packets = (frame_index % 10 == 0 ? 2 : 1);
649 PopulateRtpInfo(frame_index, frame_index * kSamples, &rtp_info)
670 int frame_index = 0; local
    [all...]
  /device/google/marlin/camera/QCamera2/HAL/
QCamera2HWI.h 139 uint32_t frame_index; // frame index for the buffer member in struct:qcamera::__anon3445
  /external/v8/src/debug/
liveedit.cc 1273 int frame_index = 0; local
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL/
QCamera2HWI.h 152 uint32_t frame_index; // frame index for the buffer member in struct:qcamera::__anon43683
    [all...]
  /external/vulkan-validation-layers/demos/
cube.c 359 int frame_index; member in struct:demo
780 vkWaitForFences(demo->device, 1, &demo->fences[demo->frame_index], VK_TRUE, UINT64_MAX);
781 vkResetFences(demo->device, 1, &demo->fences[demo->frame_index]);
785 demo->image_acquired_semaphores[demo->frame_index], demo->fences[demo->frame_index],
791 demo->frame_index += 1;
792 demo->frame_index %= FRAME_LAG;
815 submit_info.pWaitSemaphores = &demo->image_acquired_semaphores[demo->frame_index];
819 submit_info.pSignalSemaphores = &demo->draw_complete_semaphores[demo->frame_index];
829 submit_info.pWaitSemaphores = &demo->draw_complete_semaphores[demo->frame_index];
    [all...]
cube.cpp 228 height{0}, swapchainImageCount{0}, frame_index{0}, spin_angle{0.0f},
403 if (fencesInited[frame_index]) {
405 device.waitForFences(1, &fences[frame_index], VK_TRUE, UINT64_MAX);
406 device.resetFences(1, &fences[frame_index]);
411 swapchain, UINT64_MAX, image_acquired_semaphores[frame_index],
412 fences[frame_index], &current_buffer);
413 fencesInited[frame_index] = true;
417 frame_index += 1;
418 frame_index %= FRAME_LAG;
440 .setPWaitSemaphores(&image_acquired_semaphores[frame_index])
2652 uint32_t frame_index; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_firstpass.c 2143 int frame_index = 1; local
    [all...]
  /external/v8/src/
deoptimizer.cc 739 int frame_index = 0; // output_frame_index local
740 for (size_t i = 0; i < count; ++i, ++frame_index) {
745 DoComputeJSFrame(translated_frame, frame_index,
750 DoComputeInterpretedFrame(translated_frame, frame_index,
755 DoComputeArgumentsAdaptorFrame(translated_frame, frame_index);
758 DoComputeTailCallerFrame(translated_frame, frame_index);
760 frame_index--;
764 DoComputeConstructStubFrame(translated_frame, frame_index);
767 DoComputeAccessorStubFrame(translated_frame, frame_index, false);
770 DoComputeAccessorStubFrame(translated_frame, frame_index, true)
1249 frame_index, output_offset, "accumulator "); local
2165 DebugPrintOutputSlot(reinterpret_cast<intptr_t>(value), frame_index, local
    [all...]

Completed in 219 milliseconds