Searched defs:frame (Results 26 - 50 of 542) sorted by relevance

1234567891011>>

/external/compiler-rt/test/asan/TestCases/
H A Dstack-oob-frames.cc12 NOINLINE static void Frame0(int frame, char *a, char *b, char *c) { argument
16 switch (frame) {
23 NOINLINE static void Frame1(int frame, char *a, char *b) { argument
24 char c[4] = {0}; Frame0(frame, a, b, c);
27 NOINLINE static void Frame2(int frame, char *a) { argument
28 char b[4] = {0}; Frame1(frame, a, b);
31 NOINLINE static void Frame3(int frame) { argument
32 char a[4] = {0}; Frame2(frame, a);
/external/google-breakpad/src/processor/
H A Dstack_frame_symbolizer.cc32 // line information in a stack frame, and also looks up WindowsFrameInfo or
33 // CFIFrameInfo for a stack frame.
59 StackFrame* frame) {
60 assert(frame);
63 const CodeModule* module = modules->GetModuleForAddress(frame->instruction);
65 frame->module = module;
75 if (resolver_->HasModule(frame->module)) {
76 resolver_->FillSourceLineInfo(frame);
77 return resolver_->IsModuleCorrupt(frame->module) ?
96 frame
56 FillSourceLineInfo( const CodeModules* modules, const SystemInfo* system_info, StackFrame* frame) argument
128 FindWindowsFrameInfo( const StackFrame* frame) argument
133 FindCFIFrameInfo( const StackFrame* frame) argument
[all...]
H A Dstackwalker_ppc.cc67 BPLOG(ERROR) << "Can't get context frame without context";
71 StackFramePPC* frame = new StackFramePPC(); local
75 frame->context = *context_;
76 frame->context_validity = StackFramePPC::CONTEXT_VALID_ALL;
77 frame->trust = StackFrame::FRAME_TRUST_CONTEXT;
78 frame->instruction = frame->context.srr0;
80 return frame;
87 BPLOG(ERROR) << "Can't get caller frame without memory or stack";
93 // its return address in the calling procedure's stack frame a
124 StackFramePPC* frame = new StackFramePPC(); local
[all...]
H A Dstackwalker_ppc64.cc58 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 a
115 StackFramePPC64* frame = new StackFramePPC64(); local
[all...]
H A Dstackwalker_sparc.cc58 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 mus
114 StackFrameSPARC* frame = new StackFrameSPARC(); local
[all...]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DDemoApplet.java35 Demo frame = null; field in class:DemoApplet
47 if (frame == null) {
48 frame = new Demo(600, 200);
49 frame.addWindowListener(new WindowAdapter() {
51 frame = null;
55 frame.setVisible(true);
56 frame.toFront();
70 if (frame != null) {
71 frame.dispose();
73 frame
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFramePrinter.java32 * A utility class for printing a merged view of the frame state and the
75 * Prints the instructions and the frame states of the given method.
106 Frame frame = frames[pos];
107 if (frame == null) {
111 printStack(frame);
114 printLocals(frame);
119 private void printStack(Frame frame) { argument
121 int top = frame.getTopIndex();
125 Type type = frame.getStack(i);
131 private void printLocals(Frame frame) { argument
[all...]
/external/libchrome/base/trace_event/
H A Dheap_profiler_event_filter.cc46 AllocationContextTracker::PseudoStackFrame frame = {category->name(), local
50 GetThreadLocalTracker()->PushPseudoStackFrame(frame);
53 GetThreadLocalTracker()->PopPseudoStackFrame(frame);
H A Dheap_profiler_stack_frame_deduplicator.h33 FrameNode(StackFrame frame, int parent_frame_index);
39 StackFrame frame; member in struct:base::trace_event::StackFrameDeduplicator::FrameNode
41 // The index of the parent stack frame in |frames_|, or -1 if there is no
42 // parent frame (when it is at the bottom of the call stack).
45 // Indices into |frames_| of frames called from the current frame.
54 // Inserts a backtrace where |beginFrame| is a pointer to the bottom frame
55 // (e.g. main) and |endFrame| is a pointer past the top frame (most recently
60 // Iterators over the frame nodes in the call tree.
/external/libmicrohttpd/src/microspdy/
H A Dstream.c40 struct SPDYF_Control_Frame *frame; local
48 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls;
60 //ignore frame
67 //we MUST ignore the frame
103 stream->is_in_closed = (frame->flags & SPDY_SYN_STREAM_FLAG_FIN) != 0;
104 stream->flag_unidirectional = (frame->flags & SPDY_SYN_STREAM_FLAG_UNIDIRECTIONAL) != 0;
/external/libvpx/libvpx/examples/
H A Dsimple_decoder.c22 // followed by a variable number of frames. Each frame consists of a frame
24 // is specified in the first four bytes of the frame header. The payload is
47 // Once the frame has been read into memory, it is decoded using the
49 // (`frame`) and the length of the data (`frame_size`). No application data
50 // is associated with the frame in this example, so the `user_priv`
127 const unsigned char *frame = local
129 if (vpx_codec_decode(&codec, frame, (unsigned int)frame_size, NULL, 0))
130 die_codec(&codec, "Failed to decode frame.");
/external/libvpx/libvpx/vp8/common/
H A Ddebugmodes.c15 int frame) {
23 fprintf(mvs, "Mb Modes for Frame %d\n", frame);
39 fprintf(mvs, "Mb mv ref for Frame %d\n", frame);
56 fprintf(mvs, "UV Modes for Frame %d\n", frame);
72 fprintf(mvs, "Mbs for Frame %d\n", frame);
97 fprintf(mvs, "MVs for Frame %d\n", frame);
114 fprintf(mvs, "MVs for Frame %d\n", frame);
14 vp8_print_modes_and_motion_vectors(MODE_INFO *mi, int rows, int cols, int frame) argument
/external/opencv/cvaux/src/
H A Dcvvideo.cpp51 CvMat frame_stub, *frame = (CvMat*)framearr; local
57 CV_CALL( frame = cvGetMat( frame, &frame_stub ));
61 if( !CV_ARE_TYPES_EQ( frame, even ) || !CV_ARE_TYPES_EQ( frame, odd ))
64 if( frame->cols != even->cols || frame->cols != odd->cols ||
65 frame->rows != even->rows*2 || odd->rows != even->rows )
74 frame->data.ptr + frame
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimationDrawable.java18 public void addFrame(Drawable frame, int duration) { argument
19 frames.add(frame);
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dretval_op.cc42 auto frame = ctx->call_frame(); variable
43 if (frame) {
44 // If 'frame' is non-null, this is an inner function call inside a JIT
46 OP_REQUIRES_OK(ctx, frame->SetRetval(index_, input));
/external/tensorflow/tensorflow/contrib/signal/
H A D__init__.py19 @@frame
43 from tensorflow.contrib.signal.python.ops.shape_ops import frame namespace
44 # `frame` used to be named `frames`, which is a noun and not a verb.
46 from tensorflow.contrib.signal.python.ops.shape_ops import frame as frames
/external/tensorflow/tensorflow/core/framework/
H A Dcontrol_flow.h31 // in the frame with frame_id at the iteration of iter_id.
38 FrameAndIter(uint64 frame, int64 iter) { argument
39 frame_id = frame;
/external/tensorflow/tensorflow/core/grappler/utils/
H A Dframe_test.cc16 #include "tensorflow/core/grappler/utils/frame.h"
37 const string& frame,
44 if (!frame.empty()) {
46 frame_name.set_s(frame);
91 std::cout << "Number of frame: " << num_frames << std::endl;
118 std::cout << "Number of frame: " << num_frames << std::endl;
146 std::cout << "Number of frame: " << num_frames << std::endl;
161 string frame = "map/while/while_context"; local
162 *graph.add_node() = CreateNode("1", "Enter", frame, {"0"});
165 *graph.add_node() = CreateNode("4", "Enter", frame, {"
36 CreateNode(const string& name, const string& op, const string& frame, const std::vector<string>& inputs) argument
[all...]
/external/v8/src/builtins/
H A Dbuiltins-callsite.cc78 StackFrameBase* frame = it.Frame(); local
79 if (frame->IsStrict()) return isolate->heap()->undefined_value();
80 return *frame->GetFunction();
129 StackFrameBase* frame = it.Frame(); local
130 if (frame->IsStrict()) return isolate->heap()->undefined_value();
131 return *frame->GetReceiver();
/external/v8/src/compiler/
H A Djs-frame-specialization.h23 JSFrameSpecialization(Editor* editor, JavaScriptFrame const* frame, argument
25 : AdvancedReducer(editor), frame_(frame), jsgraph_(jsgraph) {}
36 JavaScriptFrame const* frame() const { return frame_; } function in class:v8::internal::compiler::final
/external/webrtc/talk/app/webrtc/
H A Dvideotrackrenderers.cc57 bool VideoTrackRenderers::RenderFrame(const cricket::VideoFrame* frame) { argument
63 renderer->RenderFrame(frame);
/external/webrtc/webrtc/modules/desktop_capture/
H A Dscreen_capturer_mac_unittest.cc34 void CaptureDoneCallback1(DesktopFrame* frame);
38 void CaptureDoneCallback2(DesktopFrame* frame);
48 DesktopFrame* frame) {
49 rtc::scoped_ptr<DesktopFrame> owned_frame(frame);
54 // Verify that the region contains full frame.
55 DesktopRegion::Iterator it(frame->updated_region());
60 DesktopFrame* frame) {
61 rtc::scoped_ptr<DesktopFrame> owned_frame(frame);
68 EXPECT_EQ(width, frame->size().width());
69 EXPECT_EQ(height, frame
47 CaptureDoneCallback1( DesktopFrame* frame) argument
59 CaptureDoneCallback2( DesktopFrame* frame) argument
[all...]
H A Dscreen_capturer_unittest.cc76 DesktopFrame* frame = NULL; local
78 .WillOnce(SaveArg<0>(&frame));
87 ASSERT_TRUE(frame);
88 EXPECT_GT(frame->size().width(), 0);
89 EXPECT_GT(frame->size().height(), 0);
90 EXPECT_GE(frame->stride(),
91 frame->size().width() * DesktopFrame::kBytesPerPixel);
92 EXPECT_TRUE(frame->shared_memory() == NULL);
95 EXPECT_FALSE(frame->updated_region().is_empty());
96 DesktopRegion::Iterator it(frame
108 DesktopFrame* frame = NULL; local
131 DesktopFrame* frame = NULL; local
[all...]
/external/webrtc/webrtc/modules/utility/source/
H A Daudio_frame_operations.cc25 int AudioFrameOperations::MonoToStereo(AudioFrame* frame) { argument
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) { argument
52 if (frame
62 SwapStereoChannels(AudioFrame* frame) argument
72 Mute(AudioFrame& frame) argument
77 Scale(float left, float right, AudioFrame& frame) argument
91 ScaleWithSat(float scale, AudioFrame& frame) argument
[all...]
/external/webrtc/webrtc/modules/video_processing/test/
H A Dbrightness_detection_test.cc59 uint8_t* frame = video_frame_.buffer(kYPlane); local
62 yTmp = frame[yIdx] << 1;
66 frame[yIdx] = static_cast<uint8_t>(yTmp);

Completed in 5688 milliseconds

1234567891011>>