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

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/video_coding/utility/
qp_parser.cc 18 bool QpParser::GetQp(const VCMEncodedFrame& frame, int* qp) {
19 switch (frame.CodecSpecific()->codecType) {
22 return vp8::GetQp(frame.Buffer(), frame.Length(), qp);
  /external/clang/test/CodeGen/
2003-08-21-BinOp-Type-Mismatch.c 7 unsigned int frame, focus; local
8 (struct bar *) focus == (focus ? ((struct bar *) frame) : 0);
  /frameworks/native/libs/vr/libdvr/
dvr_hardware_composer_client.cpp 12 android::dvr::ComposerView::Frame frame; member in struct:DvrHwcFrame
28 const android::dvr::ParcelableComposerFrame& frame,
44 const android::dvr::ParcelableComposerFrame& frame,
47 dvr_frame->frame = frame.frame();
83 void dvrHwcFrameDestroy(DvrHwcFrame* frame) {
84 delete frame;
87 DvrHwcDisplay dvrHwcFrameGetDisplayId(DvrHwcFrame* frame) {
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
cropped_desktop_frame.cc 18 CroppedDesktopFrame(DesktopFrame* frame, const DesktopRect& rect);
27 CreateCroppedDesktopFrame(DesktopFrame* frame, const DesktopRect& rect) {
28 if (!DesktopRect::MakeSize(frame->size()).ContainsRect(rect)) {
29 delete frame;
33 return new CroppedDesktopFrame(frame, rect);
36 CroppedDesktopFrame::CroppedDesktopFrame(DesktopFrame* frame,
39 frame->stride(),
40 frame->GetFrameDataAtPos(rect.top_left()),
41 frame->shared_memory()),
42 frame_(frame) {
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
audio_frame_operations.cc 25 int AudioFrameOperations::MonoToStereo(AudioFrame* frame) {
26 if (frame->num_channels_ != 1) {
29 if ((frame->samples_per_channel_ * 2) >= AudioFrame::kMaxDataSizeSamples) {
35 memcpy(data_copy, frame->data_,
36 sizeof(int16_t) * frame->samples_per_channel_);
37 MonoToStereo(data_copy, frame->samples_per_channel_, frame->data_);
38 frame->num_channels_ = 2;
51 int AudioFrameOperations::StereoToMono(AudioFrame* frame) {
52 if (frame->num_channels_ != 2)
    [all...]
  /external/webrtc/webrtc/modules/utility/include/
audio_frame_operations.h 31 // |frame.num_channels_| will be updated. This version checks for sufficient
33 static int MonoToStereo(AudioFrame* frame);
40 // |frame.num_channels_| will be updated. This version checks that
42 static int StereoToMono(AudioFrame* frame);
44 // Swap the left and right channels of |frame|. Fails silently if |frame| is
46 static void SwapStereoChannels(AudioFrame* frame);
48 // Zeros out the audio and sets |frame.energy| to zero.
49 static void Mute(AudioFrame& frame);
51 static int Scale(float left, float right, AudioFrame& frame);
    [all...]
  /frameworks/native/libs/vr/libdvr/include/dvr/
dvr_hardware_composer_client.h 15 // Called when a new frame has arrived.
18 // @param frame New frame. Owned by the client.
19 // @return fence FD for the release of the last frame.
20 typedef int(*DvrHwcOnFrameCallback)(void* client_state, DvrHwcFrame* frame);
22 // @param callback Called when a new frame is available.
29 // Called to free the frame information.
30 void dvrHwcFrameDestroy(DvrHwcFrame* frame);
32 DvrHwcDisplay dvrHwcFrameGetDisplayId(DvrHwcFrame* frame);
34 int32_t dvrHwcFrameGetDisplayWidth(DvrHwcFrame* frame);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemContext.java 24 * This class is a stack frame that consists of
36 * A stack frame will be pushed for "A" at depth 1,
38 * Then "B1" stackframe is popped. When the stack frame for "B2" is
94 /** The next element "stack frame". This value will only be
99 * because very few stack frame objects are ever created, they are
103 * as they are re-used. Only the reference to the current stack frame, which
108 /** The previous element "stack frame". */
130 * Constructor to create the "stack frame" for a given element depth.
136 * @param previous The "stack frame" corresponding to the new
146 * Pop the current "stack frame"
167 ElemContext frame = this.m_next; local
201 ElemContext frame = this.m_next; local
    [all...]
  /external/google-breakpad/src/processor/
stackwalker_ppc64.cc 58 BPLOG(ERROR) << "Can't get context frame without context";
62 StackFramePPC64* frame = new StackFramePPC64(); local
66 frame->context = *context_;
67 frame->context_validity = StackFramePPC64::CONTEXT_VALID_ALL;
68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
69 frame->instruction = frame->context.srr0;
71 return frame;
78 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
84 // its return address in the calling procedure's stack frame at 8(%r1)
115 StackFramePPC64* frame = new StackFramePPC64(); local
    [all...]
stackwalker_sparc.cc 58 BPLOG(ERROR) << "Can't get context frame without context";
62 StackFrameSPARC* frame = new StackFrameSPARC(); local
66 frame->context = *context_;
67 frame->context_validity = StackFrameSPARC::CONTEXT_VALID_ALL;
68 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
69 frame->instruction = frame->context.pc;
71 return frame;
78 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
94 // A caller frame must reside higher in memory than its callee frames
114 StackFrameSPARC* frame = new StackFrameSPARC(); local
    [all...]
stackwalker_arm.cc 63 BPLOG(ERROR) << "Can't get context frame without context";
67 StackFrameARM* frame = new StackFrameARM(); local
71 frame->context = *context_;
72 frame->context_validity = context_frame_validity_;
73 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
74 frame->instruction = frame->context.iregs[MD_CONTEXT_ARM_REG_PC];
76 return frame;
104 // Construct a new stack frame given the values the CFI recovered.
105 scoped_ptr<StackFrameARM> frame(new StackFrameARM())
182 StackFrameARM* frame = new StackFrameARM(); local
224 StackFrameARM* frame = new StackFrameARM(); local
249 scoped_ptr<StackFrameARM> frame; local
    [all...]
stackwalker_address_list.cc 65 StackFrame* frame = new StackFrame();
66 frame->instruction = frames_[0];
67 frame->trust = StackFrame::FRAME_TRUST_PREWALKED;
68 return frame;
74 BPLOG(ERROR) << "Can't get caller frame without stack";
86 StackFrame* frame = new StackFrame();
87 frame->instruction = frames_[frame_index];
88 frame->trust = StackFrame::FRAME_TRUST_PREWALKED;
89 return frame;
  /external/strace/linux/i386/
arch_sigreturn.c 15 } frame; local
17 if (umove(tcp, *i386_esp_ptr, &frame) < 0) {
20 uint32_t mask[2] = { frame.oldmask, frame.extramask };
  /external/webrtc/webrtc/tools/agc/
test_utils.h 19 void ApplyGainLinear(float gain, float last_gain, AudioFrame* frame);
20 void ApplyGain(float gain_db, float last_gain_db, AudioFrame* frame);
22 AudioFrame* frame);
24 AudioFrame* frame);
  /external/wpa_supplicant_8/src/utils/
crc32.h 12 u32 crc32(const u8 *frame, size_t frame_len);
  /frameworks/av/cmds/stagefright/
jpeg.h 4 int writeJpegFile(const char *filename, uint8_t *frame, int width, int height);
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 28 * Executor is responsible for modeling the effects of a JVM instruction on a frame.
55 * Execute the instruction, modeling the effects on the specified frame and subroutine.
62 * @param frame the frame to modify to represent the result of the instruction
66 public void execute(MethodInfo method, int pos, CodeIterator iter, Frame frame, Subroutine subroutine) throws BadBytecode {
76 frame.push(Type.UNINIT);
85 frame.push(Type.INTEGER);
89 frame.push(Type.LONG);
90 frame.push(Type.TOP)
729 simplePush(zeroExtend(returnType), frame); local
747 simplePush(zeroExtend(returnType), frame); local
844 simplePush(getType(name), frame); local
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 20 import android.filterfw.core.Frame;
33 private SortedMap<Integer, Frame> mAvailableFrames;
40 mAvailableFrames = new TreeMap<Integer, Frame>();
44 public Frame newFrame(FrameFormat format) {
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
49 result.setTimestamp(Frame.TIMESTAMP_NOT_SET);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) {
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
59 result.setTimestamp(Frame.TIMESTAMP_NOT_SET)
124 Frame frame = mAvailableFrames.get(oldest); local
134 Frame frame = entry.getValue(); local
    [all...]
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
ProgressListenerImpl.java 40 final MigratorFrame frame; field in class:ProgressListenerImpl
46 public ProgressListenerImpl(File projectFolder, MigratorFrame frame) {
47 this.frame = frame;
52 frame.disableInput();
70 frame.otherLabel.setText("<html><p>Searching folder [" + abbreviatedName + "]<p>Found " + addFileCount + " java files to scan.</html>");
74 frame.progressBar.setVisible(false);
75 frame.otherLabel.setText("<html><font color='BLUE'>Scanned " + addFileCount + " java files, " + inplaceConversionCount
78 frame.migrateButton.setActionCommand(MigratorFrame.EXIT_COMMAND);
79 frame.migrateButton.setText("Exit")
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/
audio_processing_impl_unittest.cc 44 AudioFrame frame; local
46 frame.num_channels_ = 1;
47 SetFrameSampleRate(&frame, 16000);
50 EXPECT_NOERR(mock.ProcessStream(&frame));
51 EXPECT_NOERR(mock.AnalyzeReverseStream(&frame));
54 SetFrameSampleRate(&frame, 32000);
57 EXPECT_NOERR(mock.ProcessStream(&frame));
60 frame.num_channels_ = 2;
63 EXPECT_NOERR(mock.ProcessStream(&frame));
65 frame.num_channels_ = 2
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
decoding_state.cc 53 bool VCMDecodingState::IsOldFrame(const VCMFrameBuffer* frame) const {
54 assert(frame != NULL);
57 return !IsNewerTimestamp(frame->TimeStamp(), time_stamp_);
67 void VCMDecodingState::SetState(const VCMFrameBuffer* frame) {
68 assert(frame != NULL && frame->GetHighSeqNum() >= 0);
69 if (!UsingFlexibleMode(frame))
70 UpdateSyncState(frame);
71 sequence_num_ = static_cast<uint16_t>(frame->GetHighSeqNum());
72 time_stamp_ = frame->TimeStamp()
    [all...]
decoding_state.h 25 // to a previous frame when using flexible mode.
31 // Check for old frame
32 bool IsOldFrame(const VCMFrameBuffer* frame) const;
35 // Check for frame continuity based on current decoded state. Use best method
37 bool ContinuousFrame(const VCMFrameBuffer* frame) const;
38 void SetState(const VCMFrameBuffer* frame);
40 bool UpdateEmptyFrame(const VCMFrameBuffer* frame);
55 void UpdateSyncState(const VCMFrameBuffer* frame);
60 bool ContinuousFrameRefs(const VCMFrameBuffer* frame) const;
61 bool UsingPictureId(const VCMFrameBuffer* frame) const
    [all...]
  /external/compiler-rt/test/asan/TestCases/
stack-oob-frames.cc 12 NOINLINE static void Frame0(int frame, char *a, char *b, char *c) {
16 switch (frame) {
23 NOINLINE static void Frame1(int frame, char *a, char *b) {
24 char c[4] = {0}; Frame0(frame, a, b, c);
27 NOINLINE static void Frame2(int frame, char *a) {
28 char b[4] = {0}; Frame1(frame, a, b);
31 NOINLINE static void Frame3(int frame) {
32 char a[4] = {0}; Frame2(frame, a);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cfi/
cfi-alpha-2.s 4 .frame $30, 0, $26, 0
11 .frame $30, 0, $26, 0
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mips16e-save-err.l 3 .*:3: Error: missing frame size `save \$4'
4 .*:4: Error: frame size specified twice `save \$4,100,200'
6 .*:7: Error: invalid frame size `save \$4,1'
7 .*:8: Error: invalid frame size `save \$4,7'
8 .*:10: Error: invalid frame size `save \$4,12'
9 .*:11: Error: invalid frame size `save \$4,2048'
10 .*:12: Error: invalid frame size `save \$4,2052'

Completed in 798 milliseconds

1 2 3 4 5 6 7 8 91011>>