Searched defs:frame (Results 201 - 225 of 542) sorted by relevance

1234567891011>>

/external/libunwind/src/x86_64/
H A DGtrace.c76 /* Initialise frame tracing for threaded use. */
99 /* Allocate and initialise hash table for frame cache lookups.
137 /* Expand the hash table in the frame cache if possible. This always
138 quadruples the hash size, and clears all previous frame entries. */
178 /* Get the frame cache for the current thread. Create it if there is none. */
205 /* Initialise frame properties for address cache slot F at address
225 /* Initialise frame properties: unknown, not last. */
254 common for the outermost frame (CRT stuff) on many systems.
260 Debug (3, "frame va %lx type %d last %d cfa %s+%d rbp @ cfa%+d rsp @ cfa%+d\n",
268 /* Look up and if necessary fill in frame attribute
288 unw_tdep_frame_t *frame; local
[all...]
/external/libvpx/libvpx/test/
H A Dsvc_test.cc144 const size_t frame_size = cx_pkt->data.frame.sz;
147 ASSERT_TRUE(cx_pkt->data.frame.buf != NULL);
151 EXPECT_EQ(1, !!(cx_pkt->data.frame.flags & VPX_FRAME_IS_KEY));
155 memcpy(outputs[*frame_received].buf, cx_pkt->data.frame.buf,
241 int frame; local
251 // There's no super frame but only a single frame.
254 // Found a super frame.
257 for (frame = 0; frame < frame_coun
[all...]
H A Dvideo_source.h111 // Advance the cursor to the next frame
114 // Get the current video frame, or NULL on End-Of-Stream.
117 // Get the presentation timestamp of the current frame.
120 // Get the current frame's duration
126 // Get the current frame counter, starting at 0.
127 virtual unsigned int frame() const = 0;
155 // Models a stream where Timebase = 1/FPS, so pts == frame.
165 virtual unsigned int frame() const { return frame_; } function in class:libvpx_test::DummyVideoSource
246 // Advance the cursor to the next frame
/external/libvpx/libvpx/vp9/common/
H A Dvp9_thread_common.c152 static void loop_filter_rows_mt(YV12_BUFFER_CONFIG *frame, VP9_COMMON *cm, argument
192 vp9_loop_filter_data_reset(lf_data, frame, cm, planes);
211 void vp9_loop_filter_frame_mt(YV12_BUFFER_CONFIG *frame, VP9_COMMON *cm, argument
230 loop_filter_rows_mt(frame, cm, planes, start_mi_row, end_mi_row, y_only,
312 // Accumulate frame counts.
349 // In the encoder, coef is only updated at frame
/external/libxcam/plugins/smart/dvs/libdvs/
H A Dstabilizer.cpp28 OnePassVideoStabilizer::nextStabilizedMotion(DvsData* frame, int& stablizedPos) argument
30 if (!(frame->data.empty()))
33 frame->data.getMat(ACCESS_READ).copyTo(image);
146 TwoPassVideoStabilizer::nextStabilizedMotion(DvsData* frame, int& stablizedPos) argument
148 if (!(frame->data.empty()))
151 frame->data.getMat(ACCESS_READ).copyTo(image);
390 VideoStabilizer::nextStabilizedMotion(DvsData* frame, int& stablizedPos) argument
396 HMatrix = stab->nextStabilizedMotion(frame, stablizedPos);
399 HMatrix = stab->nextStabilizedMotion(frame, stablizedPos);
416 VideoStabilizer::cropVideoFrame(Mat& frame) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_flush.c187 const struct debug_stack_frame *frame)
190 frame = debug_flush_capture_frame(start, depth);
194 if (frame) {
196 debug_backtrace_dump(frame, depth);
206 FREE((void *)frame);
183 debug_flush_alert(const char *s, const char *op, unsigned start, unsigned depth, boolean continued, boolean capture, const struct debug_stack_frame *frame) argument
/external/opencv/otherlibs/highgui/
H A Dcvcap_socket.cpp79 frame = 0;
101 IplImage* frame; member in class:CVCapture_Socket
177 if (frame)
179 cvReleaseImage( &frame );
180 frame = 0;
207 // Grabs a frame (image) from a socket.
239 if (frame)
241 cvReleaseImage( &frame );
242 frame = 0;
261 // If we read all of the data we expected, we will load the frame fro
[all...]
H A Dgrfmt_exr.cpp204 FrameBuffer frame; local
231 frame.insert( "BY", Slice( m_type,
238 frame.insert( "Y", Slice( m_type,
245 frame.insert( "RY", Slice( m_type,
254 frame.insert( "Y", Slice( m_type,
257 frame.insert( "Y", Slice( m_type,
260 frame.insert( "Y", Slice( m_type,
270 frame.insert( "Y", Slice( m_type,
280 frame.insert( "B", Slice( m_type,
287 frame
[all...]
/external/perfetto/src/ipc/
H A Dclient_impl.cc62 Frame frame; local
63 frame.set_request_id(request_id);
64 Frame::BindService* req = frame.mutable_msg_bind_service();
67 if (!SendFrame(frame)) {
91 Frame frame; local
92 frame.set_request_id(request_id);
93 Frame::InvokeMethod* req = frame.mutable_msg_invoke_method();
99 if (!did_serialize || !SendFrame(frame, fd)) {
100 PERFETTO_DLOG("BeginInvoke() failed while sending the frame");
114 bool ClientImpl::SendFrame(const Frame& frame, in argument
176 OnFrameReceived(const Frame& frame) argument
[all...]
H A Dhost_impl.cc117 std::unique_ptr<Frame> frame = frame_deserializer.PopNextFrame(); local
118 if (!frame)
120 OnReceivedFrame(client, *frame);
131 PERFETTO_DLOG("Received invalid RPC frame %u from client %" PRIu64,
232 void HostImpl::SendFrame(ClientConnection* client, const Frame& frame, int fd) { argument
233 std::string buf = BufferedFrameDeserializer::Serialize(frame);
H A Dhost_impl_unittest.cc97 Frame frame; local
100 frame.set_request_id(request_id);
101 frame.mutable_msg_bind_service()->set_service_name(service_name);
102 SendFrame(frame);
110 Frame frame; local
113 frame.set_request_id(request_id);
114 frame.mutable_msg_invoke_method()->set_service_id(service_id);
115 frame.mutable_msg_invoke_method()->set_method_id(method_id);
116 frame.mutable_msg_invoke_method()->set_drop_reply(drop_reply);
117 frame
153 SendFrame(const Frame& frame, int fd = -1) argument
[all...]
/external/python/cpython2/Include/
H A Dpystate.h62 struct _frame *frame; member in struct:_ts
181 thread id to that thread's current frame.
/external/python/cpython2/Python/
H A Dpystate.c153 return self->frame;
167 tstate->frame = NULL;
233 if (Py_VerboseFlag && tstate->frame != NULL)
235 "PyThreadState_Clear: warning: thread still has a frame\n");
237 Py_CLEAR(tstate->frame);
467 * if t's frame isn't NULL, map t's id to its frame
477 struct _frame *frame = t->frame; local
478 if (frame
[all...]
H A Dtraceback.c84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame) argument
88 frame == NULL || !PyFrame_Check(frame)) {
96 Py_XINCREF(frame);
97 tb->tb_frame = frame;
98 tb->tb_lasti = frame->f_lasti;
99 tb->tb_lineno = PyFrame_GetLineNumber(frame);
106 PyTraceBack_Here(PyFrameObject *frame) argument
110 PyTracebackObject *tb = newtracebackobject(oldtb, frame);
/external/skia/tests/
H A DCodecAnimTest.cpp30 // animated image with a frame that has alpha but then blends onto an opaque
31 // frame making the result opaque. Test that we can decode such a frame.
64 // One less than fFramecount, since the first frame is always
67 // Same, since the first frame should match getInfo
230 ERRORF(r, "'%s' expected frame count: %i\tactual: %i",
253 ERRORF(r, "%s frame %i's durations do not match! expected: %i\tactual: %i",
272 ERRORF(r, "%s's frame %i has wrong alpha type! expected: %s\tactual: %s",
279 ERRORF(r, "%s's frame %i has wrong dependency! expected: %i\tactual: %i",
292 // - Start from scratch for each frame
343 SkBitmap frame; local
[all...]
/external/skia/tools/fiddle/
H A Dfiddle_main.cpp21 DEFINE_double(frame, 1.0, "A double value in [0, 1] that specifies the point in animation to draw.");
43 double frame; // A value in [0, 1] of where we are in the animation. variable
247 frame = FLAGS_frame;
/external/skqp/tests/
H A DCodecAnimTest.cpp30 // animated image with a frame that has alpha but then blends onto an opaque
31 // frame making the result opaque. Test that we can decode such a frame.
64 // One less than fFramecount, since the first frame is always
67 // Same, since the first frame should match getInfo
230 ERRORF(r, "'%s' expected frame count: %i\tactual: %i",
253 ERRORF(r, "%s frame %i's durations do not match! expected: %i\tactual: %i",
272 ERRORF(r, "%s's frame %i has wrong alpha type! expected: %s\tactual: %s",
279 ERRORF(r, "%s's frame %i has wrong dependency! expected: %i\tactual: %i",
292 // - Start from scratch for each frame
343 SkBitmap frame; local
[all...]
/external/skqp/tools/fiddle/
H A Dfiddle_main.cpp21 DEFINE_double(frame, 1.0, "A double value in [0, 1] that specifies the point in animation to draw.");
43 double frame; // A value in [0, 1] of where we are in the animation. variable
247 frame = FLAGS_frame;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_wtengine.h64 S_WT_FRAME frame; member in struct:s_wt_int_frame_tag
/external/speex/libspeex/
H A Dscal.c226 float frame[N]; local
229 frame[i] = buff[i];
242 frame[2*i-1] = gain*x1;
243 frame[2*i] = gain*x2;
245 frame[0] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[0]);
246 frame[2*st->frame_size-1] = coef*uni_rand(&st->seed)*sqrt(.1+st->curve[st->frame_size-1]);
247 spx_drft_backward(&st->lookup,frame);
249 frame[i] *= st->vorbis_win[i];
255 float tmp = st->y[i] + frame[i] + st->wola_mem[i];
256 st->wola_mem[i] = frame[
[all...]
/external/swiftshader/src/D3D9/
H A DDirect3DSwapChain9.cpp93 static int64_t frame = sw::Timer::ticks(); local
95 int64_t frameTime = sw::Timer::ticks() - frame;
96 frame = sw::Timer::ticks();
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
H A DMultiBoxTracker.java158 final List<Recognition> results, final byte[] frame, final long timestamp) {
160 processResults(timestamp, results, frame);
203 final byte[] frame,
228 objectTracker.nextFrame(frame, null, timestamp, null, true);
157 trackResults( final List<Recognition> results, final byte[] frame, final long timestamp) argument
198 onFrame( final int w, final int h, final int rowStride, final int sensorOrientation, final byte[] frame, final long timestamp) argument
/external/v8/src/compiler/
H A Dframe.h17 // Collects the spill slot and other frame slot requirements for a compiled
21 // instantiated and the basic information about the frame has been collected
22 // into them. Mutable state associated with the frame is stored separately in
31 // stack and asks the frame for more space.
37 // The frame region immediately below the fixed header contains spill slots
38 // starting at slot 4 for JSFunctions. The callee-saved frame region below that
42 // Every slot of a caller or callee frame is accessible by the register
46 // Below an example JSFunction Frame with slot ids, frame regions and contents:
48 // slot JS frame
53 // ... | ... | frame slot
185 FrameAccessState(const Frame* const frame) argument
191 const Frame* frame() const { return frame_; } function in class:v8::internal::compiler::FrameAccessState
[all...]
H A Dosr.cc12 #include "src/compiler/frame.h"
356 void OsrHelper::SetupFrame(Frame* frame) { argument
357 // The optimized frame will subsume the unoptimized frame. Do so by reserving
359 frame->ReserveSpillSlots(UnoptimizedFrameSlots());
/external/v8/src/debug/
H A Ddebug-evaluate.cc55 // Get the frame where the debugging is performed.
58 JavaScriptFrame* frame = it.javascript_frame();
61 // selected frame.
63 DebugFrameHelper::FindSavedContextForFrame(isolate, frame);
73 ContextBuilder context_builder(isolate, frame, inlined_jsframe_index);
120 JavaScriptFrame* frame,
123 frame_(frame),
125 FrameInspector frame_inspector(frame, inlined_jsframe_index, isolate);
119 ContextBuilder(Isolate* isolate, JavaScriptFrame* frame, int inlined_jsframe_index) argument

Completed in 676 milliseconds

1234567891011>>