Searched refs:pt (Results 26 - 50 of 60) sorted by relevance

123

/haiku/headers/private/print/
H A DPictureIterator.h71 virtual void SetOrigin(BPoint pt) { } argument
72 virtual void SetPenLocation(BPoint pt) { } argument
H A DPicturePrinter.h70 virtual void SetOrigin(BPoint pt);
71 virtual void SetPenLocation(BPoint pt);
/haiku/src/servers/app/
H A DServerCursor.h38 void SetHotSpot(BPoint pt);
H A DPictureBoundingBoxPlayer.cpp522 set_origin(void* _state, const BPoint& pt) argument
524 TRACE_BB("%p set origin %.2f %.2f\n", _state, pt.x, pt.y);
527 state->GetDrawState()->SetOrigin(pt);
532 set_pen_location(void* _state, const BPoint& pt) argument
534 TRACE_BB("%p set pen location %.2f %.2f\n", _state, pt.x, pt.y);
537 state->GetDrawState()->SetPenLocation(pt);
/haiku/src/system/libroot/posix/glibc/arch/sparc/
H A Dlshift.S54 bne,pt %xcc,.Loop0
86 bne,pt %xcc,.Loop
H A Drshift.S51 bne,pt %xcc,.Loop0
83 bne,pt %xcc,.Loop
H A Dadd_n.S51 brnz,pt %g5,1b
H A Dsub_n.S48 brnz,pt %g5,1b
H A Daddmul_1.S77 bne,pt %xcc,1b
H A Dmul_1.S76 bne,pt %xcc,.Loop
H A Dsubmul_1.S76 bne,pt %xcc,1b
/haiku/src/kits/print/
H A DPictureIterator.cpp62 static void _SetOrigin(void *p, BPoint pt) { return ((PictureIterator *) p)->SetOrigin(pt); } argument
63 static void _SetPenLocation(void *p, BPoint pt) { return ((PictureIterator *) p)->SetPenLocation(pt); } argument
115 (void *)_ClipToPicture, // 21 ClipToPicture(void *user, BPicture *picture, BPoint pt, bool clip_to_inverse_picture)
122 (void *)_SetOrigin, // 28 SetOrigin(void *user, BPoint pt)
123 (void *)_SetPenLocation, // 29 SetPenLocation(void *user, BPoint pt)
H A DPicturePrinter.cpp252 void PicturePrinter::SetOrigin(BPoint pt) { argument
253 Indent(); Print("SetOrigin"); Print(&pt); Cr();
257 void PicturePrinter::SetPenLocation(BPoint pt) { argument
258 Indent(); Print("SetPenLocation"); Print(&pt); Cr();
/haiku/src/preferences/appearance/
H A DCurView.h53 BitmapView(const BPoint &pt,BMessage *message,
H A DCurView.cpp410 BitmapView::BitmapView(const BPoint &pt,BMessage *message, const BHandler *handler, const BLooper *looper=NULL) argument
411 : BBox(BRect(0,0,75,75).OffsetToCopy(pt),"bitmapview",B_FOLLOW_NONE,B_WILL_DRAW, B_PLAIN_BORDER),
/haiku/src/servers/app/drawing/
H A DPatternHandler.h114 rgb_color ColorAt(const BPoint& pt) const;
118 bool IsHighColor(const BPoint& pt) const;
157 \param pt Coordinates to get the value for
H A DDrawingEngine.cpp866 DrawingEngine::StrokePoint(const BPoint& pt, const rgb_color& color) argument
868 StrokeLine(pt, pt, color);
1338 const BPoint& pt, escapement_delta* delta)
1342 BPoint penLocation = pt;
1350 if (pt.x - fontSize > clippingFrame.right
1351 || pt.y + fontSize < clippingFrame.top
1352 || pt.y - fontSize > clippingFrame.bottom) {
1370 BRect b = fPainter->BoundingBox(string, length, pt, &penLocation, delta,
1378 fPainter->DrawString(string, length, pt, delt
1337 DrawString(const char* string, int32 length, const BPoint& pt, escapement_delta* delta) argument
1430 DrawStringDry(const char* string, int32 length, const BPoint& pt, escapement_delta* delta) argument
[all...]
H A DDrawingEngine.h175 const BPoint& pt,
190 const BPoint& pt,
/haiku/src/apps/resedit/
H A DBitmapView.h28 virtual void MouseDown(BPoint pt);
/haiku/src/system/kernel/arch/arm64/
H A Darch_vm_translation_map.cpp21 phys_addr_t pt = 0; local
23 pt = READ_SPECIALREG(TTBR1_EL1);
28 *_map = new (std::nothrow) VMSAv8TranslationMap(kernel, pt, 12, 48, 1);
/haiku/src/tests/kits/game/chart/
H A DChartWindow.cpp2551 TPoint axis, pt, vect; local
2562 pt = fComet[i+2];
2569 pt = fKeyPoints[i];
2574 if (pt.x < fCut.x)
2575 pt.x += 1.0;
2576 if (pt.y < fCut.y)
2577 pt.y += 1.0;
2578 if (pt.z < fCut.z)
2579 pt.z += 1.0;
2580 pt
2608 TPoint pt; local
[all...]
/haiku/src/tests/servers/app/newClipping/
H A DMyView.cpp188 BPoint pt; local
191 GetMouse(&pt, &buttons, false);
192 if ((lay = FindLayer(topLayer, pt)))
/haiku/src/apps/haikudepot/ui/
H A DFeaturedPackagesView.cpp461 BPoint pt(HEIGHT_PACKAGE, y + (HEIGHT_PACKAGE * Y_PROPORTION_TITLE));
462 DrawString(pkg->Title(), pt);
469 float offsetX = pt.x + stringWidth + PADDING;
470 BRect targetRect(offsetX, pt.y - 16,
471 offsetX + 16, pt.y);
/haiku/src/libs/compat/freebsd_wlan/crypto/rijndael/
H A Drijndael-alg-fst.c727 #define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ ((u32)(pt)[2] << 8) ^ ((u32)(pt)[3]))
863 void rijndaelEncrypt(const u32 rk[/*4*(Nr + 1)*/], int Nr, const u8 pt[16], u8 ct[16]) { argument
873 s0 = GETU32(pt ) ^ rk[0];
874 s1 = GETU32(pt + 4) ^ rk[1];
875 s2 = GETU32(pt + 8) ^ rk[2];
876 s3 = GETU32(pt
1044 rijndaelDecrypt(const u32 rk[ ], int Nr, const u8 ct[16], u8 pt[16]) argument
[all...]
/haiku/headers/os/interface/
H A DView.h341 void MovePenTo(BPoint pt);
722 void _ConvertToScreen(BPoint* pt,
724 void _ConvertFromScreen(BPoint* pt,
727 void _ConvertToParent(BPoint* pt,
729 void _ConvertFromParent(BPoint* pt,

Completed in 196 milliseconds

123