Searched refs:frame (Results 76 - 100 of 954) sorted by relevance

1234567891011>>

/haiku/src/system/kernel/arch/arm/
H A Darch_int.cpp103 print_iframe(const char *event, struct iframe *frame) argument
110 frame->r0, frame->r1, frame->r2, frame->r3,
111 frame->r4, frame->r5, frame->r6, frame->r7);
114 frame
349 arch_arm_page_fault(struct iframe *frame, addr_t far, uint32 fsr, bool isWrite, bool isExec) argument
446 arch_arm_data_abort(struct iframe *frame) argument
457 arch_arm_prefetch_abort(struct iframe *frame) argument
[all...]
/haiku/src/tests/kits/interface/bshelf/
H A DShelfTest.cpp39 TWindow(BRect frame, const char *title, BPositionIO *stream);
56 BRect frame; local
73 err = stream->Read(&frame, sizeof(frame));
77 err = stream->Read(&frame, sizeof(frame));
78 swap_data(B_RECT_TYPE, &frame, sizeof(BRect), B_SWAP_ALWAYS);
84 frame = BRect(100, 50, 300, 400);
86 w = new TWindow(frame, "Container", stream);
126 TWindow::TWindow(BRect frame, cons argument
185 BRect frame = Frame(); local
[all...]
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_util.cpp270 dump_ffframe_audio(AVFrame* frame, const char* name) argument
275 frame->pkt_dts,
276 frame->nb_samples,
277 av_get_sample_fmt_name(static_cast<AVSampleFormat>(frame->format)));
282 dump_ffframe_video(AVFrame* frame, const char* name) argument
288 frame->pkt_dts,
289 (frame->flags & AV_FRAME_FLAG_CORRUPT) ? "corrupt, " : "",
290 (frame->flags & AV_FRAME_FLAG_KEY) ? "keyframe, " : "",
291 (frame->flags & AV_FRAME_FLAG_DISCARD) ? "discard, " : "",
292 (frame
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A Darch_int.cpp166 static void WriteRegisters(iframe* frame) argument
168 uint64* regs = &frame->ra;
208 WriteTrapInfo(iframe* frame) argument
211 dprintf("STrap("); WriteCause(frame->cause); dprintf(")\n");
212 dprintf(" sstatus: "); WriteSstatus(frame->status); dprintf("\n");
216 dprintf(" stval: 0x%" B_PRIx64 "\n", frame->tval);
220 WriteRegisters(frame);
243 // DumpMemory((uint64*)frame->sp, thread_get_current_thread()->kernel_stack_top - frame->sp);
353 STrap(iframe* frame) argument
[all...]
/haiku/src/apps/mediaplayer/interface/
H A DSeekSlider.cpp57 BRect frame = BSlider::ThumbFrame(); local
59 float center = (frame.left + frame.right) / 2.0f;
60 float height = ceilf(frame.Height() * fScale);
61 float width = ceilf(frame.Width() * fScale);
63 frame.left = floorf(center - width / 2) + 1;
64 frame.right = frame.left + width;
65 frame.bottom = frame
[all...]
/haiku/src/tests/kits/interface/
H A DClippingPlusRedraw.cpp11 ClippingView(BRect frame);
24 ClippingWindow(BRect frame);
48 ClippingWindow::ClippingWindow(BRect frame) argument
49 : BWindow(frame, "Window", B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE)
51 fView = new ClippingView(frame.OffsetToSelf(0, 0));
57 ClippingView::ClippingView(BRect frame) argument
58 : BView(frame, "View", B_FOLLOW_ALL, B_WILL_DRAW),
H A DTruncateString.cpp12 TruncateView(BRect frame) argument
13 : BView(frame, "TruncateView", B_FOLLOW_ALL, B_WILL_DRAW)
54 BRect frame(100, 200, 1200, 300);
55 BWindow *window = new BWindow(frame, "TruncateString", B_TITLED_WINDOW,
58 TruncateView *view = new TruncateView(frame.OffsetToSelf(0, 0));
/haiku/src/bin/screen_blanker/
H A DPasswordWindow.cpp64 BRect frame = fPassword->Frame(); local
65 button->MoveTo(frame.right - button->Bounds().Width(), frame.bottom + 10.0);
66 customBox->ResizeTo(frame.right + 10.0, button->Frame().bottom + 10.0);
68 frame = customBox->Frame();
69 ResizeTo(frame.right + 10.0, frame.bottom + 10.0);
/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport_ui.cpp136 make_sure_frame_is_on_screen(BRect& frame, BWindow* window) argument
138 if (!frame.IsValid())
153 if (!screenFrame.Contains(frame)) {
154 // make sure frame fits in the screen
155 if (frame.Width() > screenFrame.Width())
156 frame.right -= frame.Width() - screenFrame.Width() + 10.0;
157 if (frame.Height() > screenFrame.Height())
158 frame.bottom -= frame
[all...]
/haiku/src/apps/mediaplayer/media_node_framework/
H A DPlaybackManager.h93 void SetCurrentFrame(int64 frame);
110 int64 StartFrameAtFrame(int64 frame);
112 int64 EndFrameAtFrame(int64 frame);
114 int64 FrameCountAtFrame(int64 frame);
116 int32 PlayModeAtFrame(int64 frame);
118 int32 LoopModeAtFrame(int64 frame);
122 // playing frame/time/interval info
123 int64 PlaylistFrameAtFrame(int64 frame,
126 int64 PlaylistFrameAtFrame(int64 frame,
128 int64 PlaylistFrameAtFrame(int64 frame) cons
[all...]
/haiku/src/system/kernel/arch/m68k/
H A Darch_int.cpp107 print_iframe(struct iframe *frame) argument
109 dprintf("iframe at %p:\n", frame);
111 frame->d[0], frame->d[1], frame->d[2], frame->d[3]);
113 frame->d[4], frame->d[5], frame->d[6], frame
[all...]
/haiku/src/kits/interface/
H A DMenuWindow.cpp27 BMenuScroller(BRect frame);
54 UpperScroller(BRect frame);
62 LowerScroller(BRect frame);
77 BMenuScroller::BMenuScroller(BRect frame) argument
79 BView(frame, "menu scroller", 0, B_WILL_DRAW | B_FRAME_EVENTS
104 UpperScroller::UpperScroller(BRect frame) argument
106 BMenuScroller(frame)
136 LowerScroller::LowerScroller(BRect frame) argument
138 BMenuScroller(frame)
148 BRect frame local
301 BRect frame = Bounds(); local
356 BRect frame = Bounds(); local
[all...]
/haiku/src/system/kernel/arch/arm64/
H A Darch_thread.cpp31 arm64_push_iframe(struct iframe_stack *stack, struct iframe *frame) argument
34 stack->frames[stack->index++] = frame;
110 extern "C" void _eret_with_iframe(iframe *frame);
129 iframe frame; local
130 memset(&frame, 0, sizeof(frame));
132 frame.spsr = 0;
133 frame.elr = entry;
134 frame.x[0] = (uint64_t)arg1;
135 frame
[all...]
/haiku/src/tests/add-ons/media/plugins/musepack/
H A Dmain.cpp118 int64 frame; local
124 B_MEDIA_SEEK_TO_TIME | B_MEDIA_SEEK_CLOSEST_FORWARD, &frame, &time);
125 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
127 frame = 1000;
128 TRACE("main: calling Seek(stream = %d, frame %lld forward)\n", i, frame);
130 B_MEDIA_SEEK_TO_FRAME | B_MEDIA_SEEK_CLOSEST_FORWARD, &frame, &time);
131 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
[all...]
/haiku/src/tests/kits/media/mp3_reader_test/
H A Dmain.cpp101 int64 frame; local
106 s = reader->Seek(cookies[i], B_MEDIA_SEEK_TO_TIME | B_MEDIA_SEEK_CLOSEST_FORWARD, &frame, &time);
107 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
109 frame = 1000;
110 TRACE("main: calling Seek(stream = %d, frame %lld forward)\n", i, frame);
111 s = reader->Seek(cookies[i], B_MEDIA_SEEK_TO_FRAME | B_MEDIA_SEEK_CLOSEST_FORWARD, &frame, &time);
112 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
[all...]
/haiku/src/tests/kits/media/wav_reader_test/
H A Dmain.cpp101 int64 frame; local
106 s = reader->Seek(cookies[i], B_MEDIA_SEEK_TO_TIME | B_MEDIA_SEEK_CLOSEST_FORWARD, &frame, &time);
107 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
109 frame = 1000;
110 TRACE("main: calling Seek(stream = %d, frame %lld forward)\n", i, frame);
111 s = reader->Seek(cookies[i], B_MEDIA_SEEK_TO_FRAME | B_MEDIA_SEEK_CLOSEST_FORWARD, &frame, &time);
112 TRACE("main: Seek result: time %.6f, frame %lld\n", time / 1000000.0, frame);
[all...]
/haiku/src/system/boot/platform/riscv/
H A Dtraps.cpp82 MTrap(iframe* frame) argument
98 frame->epc += 4;
99 uint64 op = frame->a0;
104 frame->a0 = B_NOT_ALLOWED;
118 frame->a0 = B_OK;
122 bool enable = frame->a1 != 0;
125 enable, frame->a2);
132 gClintRegs->mtimecmp[0] = frame->a2;
135 frame->a0 = B_OK;
139 frame
[all...]
/haiku/src/tests/kits/interface/flatten_picture/
H A DPictureTest.h15 typedef void (draw_func)(BView *view, BRect frame);
25 bool Test(draw_func* func, BRect frame);
41 BPicture *RecordPicture(draw_func* func, BRect frame);
43 BBitmap *CreateBitmap(draw_func* func, BRect frame);
44 BBitmap *CreateBitmap(BPicture *picture, BRect frame);
/haiku/src/apps/mediaplayer/supplier/
H A DProxyVideoSupplier.cpp59 int64 frame = startFrame; local
60 ret = fSupplier->SeekToFrame(&frame);
63 // Read frames until we reach the frame before the one we want to read.
67 if (!forceGeneration && startFrame - frame > 5)
69 while (frame < startFrame) {
74 frame++;
/haiku/src/apps/webpositive/tabview/
H A DTabView.cpp73 BRect frame(fLayoutItem->Frame());
74 frame.right++;
75 frame.bottom++;
82 frame.right -= 2;
84 DrawBackground(fContainerView, frame, updateRect);
88 frame.top += 3.0f;
90 frame.top += 6.0f;
93 frame.InsetBy(spacing, spacing / 2);
94 DrawContents(fContainerView, frame, updateRect);
99 TabView::DrawBackground(BView* owner, BRect frame, cons argument
122 DrawContents(BView* owner, BRect frame, const BRect& updateRect) argument
250 SetFrame(BRect frame) argument
309 InvalidateContainer(BRect frame) argument
[all...]
/haiku/src/tests/servers/app/newerClipping/
H A DWindowLayer.cpp29 WindowLayer::WindowLayer(BRect frame, const char* name, argument
32 fFrame(frame),
190 // start from the frame, extend to include decorator border
735 BRect frame(fFrame);
736 frame.InsetBy(-1, -1);
737 fDrawingEngine->StrokeLine(BPoint(frame.left, frame.bottom),
738 BPoint(frame.left, frame.top), shadow);
739 fDrawingEngine->StrokeLine(BPoint(frame
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/
H A DGroup.cpp14 Group::Group(BRect frame, const char* name, orientation direction) argument
15 : BView(frame, name, B_FOLLOW_ALL, B_FRAME_EVENTS),
123 Group::_LayoutControl(BView* view, BRect frame, argument
128 frame.top = (frame.top + frame.bottom) / 2.0 - view->Bounds().Height() / 2.0;
131 frame.left = (frame.left + frame.right) / 2.0 - view->Bounds().Width() / 2.0;
132 view->MoveTo(frame
[all...]
/haiku/src/apps/icon-o-matic/gui/
H A DIconView.cpp18 IconView::IconView(BRect frame, const char* name) argument
19 : BView(frame, name, B_FOLLOW_LEFT | B_FOLLOW_TOP, B_WILL_DRAW),
20 fBitmap(new BBitmap(frame.OffsetToCopy(B_ORIGIN), 0, B_RGB32)),
25 fScale((frame.Width() + 1.0) / 64.0)
29 BSize size(frame.Width(), frame.Height());
/haiku/headers/libs/print/libprint/
H A DDialogWindow.h14 DialogWindow(BRect frame,
20 DialogWindow(BRect frame,
H A DHalftoneView.h15 HalftonePreviewView(BRect frame, const char* name,
25 HalftoneView(BRect frame, const char* name, uint32 resizeMask,

Completed in 123 milliseconds

1234567891011>>