Home
last modified time | relevance | path

Searched refs:obox (Results 1 – 25 of 165) sorted by relevance

1234567

/dports/security/keybase/client-v5.7.1/go/chat/storage/
H A Doutbox.go152 obox = diskOutbox{
191 obox.Records = append(obox.Records, rec)
267 obox = diskOutbox{
302 obox.Records = recs
331 obox.Records = recs
369 obox.Records = recs
403 obox.Records = recs
442 obox.Records = recs
472 obox.Records = recs
501 obox.Records = recs
[all …]
H A Dreadoutbox.go89 if ierr := o.writeDiskBox(ctx, o.dbKey(), obox); ierr != nil {
92 readOutboxMemCache.Put(o.uid, &obox)
99 obox := o.readStorage(ctx)
104 obox.Records = append(obox.Records, ReadOutboxRecord{
109 return o.writeStorage(ctx, obox)
115 obox := o.readStorage(ctx)
116 return obox.Records, nil
122 obox := o.readStorage(ctx)
124 for _, rec := range obox.Records {
129 obox.Records = newrecs
[all …]
H A Dreadoutbox_memcache.go25 if obox, ok := o.datMap[uid.String()]; ok {
26 return obox
31 func (o *readOutboxMemCacheImpl) Put(uid gregor1.UID, obox *diskReadOutbox) {
34 o.datMap[uid.String()] = obox
H A Doutbox_memcache.go25 if obox, ok := o.datMap[uid.String()]; ok {
26 return obox
31 func (o *outboxMemCacheImpl) Put(uid gregor1.UID, obox *diskOutbox) {
34 o.datMap[uid.String()] = obox
/dports/games/golly/golly-3.3-src/Scripts/Lua/
H A Dmove-object.lua172 local obox = getminbox(object)
175 local xshift = 2 * (obox.left + int(obox.wd/2))
180 local yshift = 2 * (obox.top + int(obox.ht/2))
193 local obox = getminbox(object)
194 local midx = obox.left + int(obox.wd/2)
195 local midy = obox.top + int(obox.ht/2)
198 local rotrect = { newleft, newtop, obox.ht, obox.wd }
213 obox = getminbox(object)
214 object = g.transform(object, newleft - obox.left, newtop - obox.top)
286 if obox.left < gridl then
[all …]
/dports/games/golly/golly-3.3-src/Scripts/Python/
H A Dmove-object.py151 obox = getminbox(object)
154 xshift = 2 * (obox.left + int(obox.wd/2))
159 yshift = 2 * (obox.top + int(obox.ht/2))
170 obox = getminbox(object)
171 midx = obox.left + int(obox.wd/2)
172 midy = obox.top + int(obox.ht/2)
175 rotrect = [ newleft, newtop, obox.ht, obox.wd ]
188 obox = getminbox(object)
189 object = g.transform(object, newleft - obox.left, newtop - obox.top)
253 if obox.left < gridl:
[all …]
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/class/libraries/vendor/smottt/wideimage/lib/WideImage/Font/
H A DTTF.php62 $obox = array(
68 $obox['width'] = abs($obox['left']) + abs($obox['right']);
69 $obox['height'] = abs($obox['top']) + abs($obox['bottom']);
71 $x = Coordinate::fix($x, $image->getWidth(), $obox['width']);
72 $y = Coordinate::fix($y, $image->getHeight(), $obox['height']);
74 $fixed_x = $x - $obox['left'];
75 $fixed_y = $y - $obox['top'];
/dports/misc/vxl/vxl-3.3.2/core/vgl/algo/tests/
H A Dtest_orient_box_3d.cxx27 vgl_orient_box_3d<double> obox(abox, q); in test_contains() local
28 std::cout << "oriented box\n " << obox << '\n' << "Corners\n"; in test_contains()
29 std::vector<vgl_point_3d<double>> c = obox.corners(); in test_contains()
33 bool inside = obox.contains(tp); in test_contains()
34 bool outside = !(obox.contains(1.0, 1.0, 1.0)); in test_contains()
43 vgl_orient_box_3d<double> obox(p0, px, py, pz); in test_construct() local
44 TEST_NEAR("width", obox.width(), 5, 1e-12); in test_construct()
45 TEST_NEAR("height", obox.height(), 5, 1e-12); in test_construct()
46 TEST_NEAR("depth", obox.depth(), 7, 1e-12); in test_construct()
48 std::vector<vgl_point_3d<double>> c = obox.corners(); in test_construct()
H A Dtest_convex_hull_2d.cxx45 vgl_oriented_box_2d<double> obox = ch.min_area_enclosing_rectangle(); in test_4_point_hull() local
46 std::cout << obox << std::endl; in test_4_point_hull()
47 vgl_point_2d<double> c = obox.centroid(); in test_4_point_hull()
48 double a = vgl_area(obox); in test_4_point_hull()
70 vgl_oriented_box_2d<double> obox = ch.min_area_enclosing_rectangle(); in test_5_point_hull() local
71 vgl_point_2d<double> c = obox.centroid(); in test_5_point_hull()
72 double h = obox.height(); in test_5_point_hull()
75 std::cout << obox << std::endl; in test_5_point_hull()
146 vgl_oriented_box_2d<double> obox = ch.min_area_enclosing_rectangle(); in test_obox_large_hull() local
148 good = good && obox.contains(pts[i]); in test_obox_large_hull()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/betr/
H A Dbetr_site.cxx35 betr_geo_box_3d obox = go->bounding_box(); in add_geo_object() local
36 vgl_point_3d<double> min_pt = obox.min_point(); in add_geo_object()
37 vgl_point_3d<double> max_pt = obox.max_point(); in add_geo_object()
38 vgl_point_3d<double> aux_pt = obox.aux_point(); in add_geo_object()
52 betr_geo_box_3d obox = (roit->second)->bounding_box(); in add_event_trigger() local
53 vgl_point_3d<double> min_pt = obox.min_point(); in add_event_trigger()
54 vgl_point_3d<double> max_pt = obox.max_point(); in add_event_trigger()
55 vgl_point_3d<double> aux_pt = obox.aux_point(); in add_event_trigger()
62 vgl_point_3d<double> min_pt = obox.min_point(); in add_event_trigger()
63 vgl_point_3d<double> max_pt = obox.max_point(); in add_event_trigger()
[all …]
/dports/science/siesta/siesta-4.1.5/Util/Contrib/APostnikov/
H A Dwraxsf1.f5 . obox,rbox,rinv)
19 . obox(3),rbox(3,3),rinv(3,3),b2ang
49 call fillbox(is1,obox,rbox,rinv,cc_bohr*b2ang,nat,
53 call fillbox(is1,obox,rbox,rinv,cc_ang,nat,
62 write (io1,201) nz(iat), (coort(jj)-obox(jj),jj=1,3)
88 call fillbox(is1,obox,rbox,rinv,cc_md,nat,coord,nbox)
96 write (io1,201) nz(iat), (coort(jj)-obox(jj),jj=1,3)
118 call fillbox(is1,obox,rbox,rinv,cc_ang,nat,coord,nbox)
125 write (io1,201) nz(iat), (coort(jj)-obox(jj),jj=1,3)
H A Dmakebox.f2 subroutine makebox(obox,rbox)
13 double precision obox(3),rbox(3,3),b2ang
32 read (5,*) (obox(ii),ii=1,3)
41 obox=obox*b2ang
H A Dhit.f3 logical function hit(coort,obox,rinv)
17 double precision coort(3),obox(3),rinv(3,3),rela
27 rela = rela + rinv(ii,jj)*(coort(jj)-obox(jj))
H A Dfillbox.f3 subroutine fillbox(is1,obox,rbox,rinv,cc_ang,nat,coor_ang,nbox) argument
24 double precision obox(3),rbox(3,3),rinv(3,3),coort(3),
50 if (hit(coort,obox,rinv)) then
/dports/games/odamex/odamex-src-0.7.0/ag-odalaunch/src/
H A Dagol_settings.cpp82 ODA_SrvOptionsBox *obox = new ODA_SrvOptionsBox; in CreateSrvOptionsBox() local
84 obox->optionsBox = AG_BoxNewVert(parent, AG_BOX_FRAME); in CreateSrvOptionsBox()
85 AG_LabelNewS(obox->optionsBox, 0, "Masters and Servers"); in CreateSrvOptionsBox()
86 obox->optionsBox = AG_BoxNewVert(obox->optionsBox, AG_BOX_EXPAND); in CreateSrvOptionsBox()
87 AG_BoxSetPadding(obox->optionsBox, 5); in CreateSrvOptionsBox()
88 AG_BoxSetSpacing(obox->optionsBox, 5); in CreateSrvOptionsBox()
90 obox->masterOnStartCheck = AG_CheckboxNewInt(obox->optionsBox, 0, in CreateSrvOptionsBox()
93 obox->showBlockedCheck = AG_CheckboxNewInt(obox->optionsBox, 0, in CreateSrvOptionsBox()
106 obox->masterTimeoutSpin = AG_NumericalNewUintR(obox->optionsBox, 0, NULL, in CreateSrvOptionsBox()
109 obox->serverTimeoutSpin = AG_NumericalNewUintR(obox->optionsBox, 0, NULL, in CreateSrvOptionsBox()
[all …]
/dports/science/simbody/simbody-Simbody-3.7/SimTKmath/tests/
H A DTestGeo.cpp331 SimTK_TEST(box.intersectsOrientedBox(obox)); in testBox()
334 SimTK_TEST(!box.mayIntersectOrientedBox(obox)); in testBox()
335 SimTK_TEST(!box.intersectsOrientedBox(obox)); in testBox()
338 SimTK_TEST(box.mayIntersectOrientedBox(obox)); in testBox()
339 SimTK_TEST(box.intersectsOrientedBox(obox)); in testBox()
343 obox.setTransform(Transform( in testBox()
346 SimTK_TEST(box.mayIntersectOrientedBox(obox)); in testBox()
347 SimTK_TEST(!box.intersectsOrientedBox(obox)); in testBox()
350 obox.setTransform(Transform( in testBox()
353 SimTK_TEST(box.mayIntersectOrientedBox(obox)); in testBox()
[all …]
/dports/math/octave-forge-matgeom/matgeom-1.2.3/inst/geom2d/
H A DorientedBoxToPolygon.m28 function [tx, ty] = orientedBoxToPolygon(obox)
66 x = obox(1);
67 y = obox(2);
68 w = obox(3) / 2; % easier to compute with w and h divided by 2
69 h = obox(4) / 2;
70 if length(obox) > 4
71 theta = obox(5);
/dports/science/gramps/gramps-5.1.4/gramps/gui/
H A Dconfigure.py1220 obox.set_active(active)
1263 obox.set_active(0)
1264 obox.connect(
1280 obox.set_active(active)
1292 obox.connect('changed',
1305 obox.connect('changed',
1327 obox.set_active(0)
1329 obox.set_active(1)
1798 obox = Gtk.ComboBox()
1814 obox.set_model(model)
[all …]
/dports/x11-fm/rodent/rodent-5.3.16.3/apps/rodent-pkg/src/
H A Dpkg-module.i742 gtk_widget_show_all(obox); in create_option_entry()
765 gtk_widget_show(obox); in content_add_actions()
771 obox = rfm_hbox_new(FALSE, 1); in content_add_actions()
778 gtk_widget_show(obox); in content_add_actions()
783 gtk_widget_realize(obox); in content_add_actions()
786 obox = rfm_hbox_new(FALSE, 1); in content_add_actions()
798 obox = rfm_hbox_new(FALSE, 1); in content_add_actions()
855 gtk_widget_show(obox); in content_add_options()
861 obox = rfm_hbox_new(FALSE, 1); in content_add_options()
868 gtk_widget_show(obox); in content_add_options()
[all …]
/dports/net/binkd/binkd-1.0.4/
H A Dftnnode.c250 char obox_flvr, char *obox, char *ibox, int NR_flag, int ND_flag, in add_node_nolock() argument
342 if (obox) in add_node_nolock()
344 xfree (pn->obox); in add_node_nolock()
345 pn->obox = xstrdup (obox); in add_node_nolock()
358 char obox_flvr, char *obox, char *ibox, int NR_flag, int ND_flag, in add_node() argument
369 pn = add_node_nolock(fa, hosts, pwd, pkt_pwd, out_pwd, obox_flvr, obox, ibox, in add_node()
442 add_node_nolock(fa, np->hosts, NULL, NULL, NULL, np->obox_flvr, np->obox, in get_defnode_info()
565 xfree(node->obox); in free_nodes()
/dports/graphics/ogre3d/ogre-1.11.6/PlugIns/OctreeZone/src/
H A DOgreOctreeZoneOctree.cpp391 AxisAlignedBox obox; in _findNodes() local
392 _getCullBounds( &obox ); in _findNodes()
394 Intersection isect = intersect( t, obox ); in _findNodes()
468 AxisAlignedBox obox; in _findNodes() local
469 _getCullBounds( &obox ); in _findNodes()
471 Intersection isect = intersect( t, obox ); in _findNodes()
545 AxisAlignedBox obox; in _findNodes() local
546 _getCullBounds( &obox ); in _findNodes()
548 Intersection isect = intersect( t, obox ); in _findNodes()
623 AxisAlignedBox obox; in _findNodes() local
[all …]
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/PlugIns/OctreeZone/src/
H A DOgreOctreeZoneOctree.cpp388 AxisAlignedBox obox; in _findNodes() local
389 _getCullBounds( &obox ); in _findNodes()
391 Intersection isect = intersect( t, obox ); in _findNodes()
465 AxisAlignedBox obox; in _findNodes() local
466 _getCullBounds( &obox ); in _findNodes()
468 Intersection isect = intersect( t, obox ); in _findNodes()
542 AxisAlignedBox obox; in _findNodes() local
543 _getCullBounds( &obox ); in _findNodes()
545 Intersection isect = intersect( t, obox ); in _findNodes()
620 AxisAlignedBox obox; in _findNodes() local
[all …]
/dports/cad/netgen-lvs/netgen-1.5.211/python/
H A Dtksimpledialog.py20 self.obox = ttk.Frame(self)
21 self.obox.pack(side = 'left', fill = 'both', expand = 'true')
25 body = ttk.Frame(self.obox)
52 box = ttk.Frame(self.obox)
/dports/cad/qflow/qflow-1.4.98/scripts/
H A Dtksimpledialog.py.in20 self.obox = ttk.Frame(self)
21 self.obox.pack(side = 'left', fill = 'both', expand = 'true')
25 body = ttk.Frame(self.obox)
52 box = ttk.Frame(self.obox)
/dports/www/firefox-esr/firefox-91.8.0/gfx/graphite2/src/
H A DPosition.cpp62 …nstrainedAvoid(Position &offset, Rect &box, Rect &sdbox, Position &other, Rect &obox, Rect &osdbox)
70 float ax = boundmin(obox.tr.x + other.x - box.bl.x - offset.x + 1, tr.x - offset.x, INF, &eax);
71 float ay = boundmin(obox.tr.y + other.y - box.bl.y - offset.y + 1, tr.y - offset.y, INF, &eay);
72 float ix = boundmin(obox.bl.x + other.x - box.tr.x - offset.x + 1, bl.x - offset.x, INF, &eix);
73 float iy = boundmin(obox.bl.y + other.y - box.tr.y - offset.y + 1, bl.y - offset.y, INF, &eiy);

1234567