Home
last modified time | relevance | path

Searched refs:MGL_PUSH (Results 1 – 4 of 4) sorted by relevance

/dports/math/mathgl/mathgl-2.5/src/
H A Dcanvas.cpp53 MGL_PUSH(DrwDat,d,mutexDrw); in PushDrwDat()
207 MGL_PUSH(Prm,a,mutexPrm); in add_prim()
529 {k1=Pnt.size(); MGL_PUSH(Pnt,pt,mutexPnt);} in text_plot()
533 {k2=Pnt.size(); MGL_PUSH(Pnt,pt,mutexPnt);} in text_plot()
537 {k3=Pnt.size(); MGL_PUSH(Pnt,pt,mutexPnt);} in text_plot()
541 {k4=Pnt.size(); MGL_PUSH(Pnt,pt,mutexPnt);} in text_plot()
592 {pk=Pnt.size(); MGL_PUSH(Pnt,q,mutexPnt);} in smbl_plot()
644 MGL_PUSH(Sub,p,mutexSub); in InPlot()
677 MGL_PUSH(Sub,p,mutexSub); in InPlot()
1183 { MGL_PUSH(Grp,mglGroup(lbl,ObjId),mutexGrp);} in StartAutoGroup()
[all …]
H A Dbase.cpp168 MGL_PUSH(Txt,t1,mutexTxt); in mglBase()
169 MGL_PUSH(Txt,t2,mutexTxt); in mglBase()
227 MGL_PUSH(Act,p,mutexAct); in AddActive()
428 {k=Glf.size(); MGL_PUSH(Glf,g,mutexGlf);} return k; in AddGlyph()
444 {k=Glf.size(); MGL_PUSH(Glf,g,mutexGlf);} return k; in AddGlyph()
505 {k=Pnt.size(); MGL_PUSH(Pnt,q,mutexPnt);} return k; in AddPnt()
568 {k=Pnt.size(); MGL_PUSH(Pnt,q,mutexPnt);} return k; in CopyNtoC()
586 {k=Pnt.size(); MGL_PUSH(Pnt,q,mutexPnt);} return k; in CopyProj()
1515 n1=Pnt.size(); MGL_PUSH(Pnt,s1,mutexPnt); in vect_plot()
1516 n2=Pnt.size(); MGL_PUSH(Pnt,s2,mutexPnt); in vect_plot()
[all …]
H A Dpixel.cpp1348 {k=Pnt.size(); MGL_PUSH(Pnt,q,mutexPnt);} in setPp()
/dports/math/mathgl/mathgl-2.5/include/mgl2/
H A Dbase.h32 #define MGL_PUSH(a,v,m) {pthread_mutex_lock(&m); a.push_back(v); pthread_mutex_unlock(&m);} macro
34 #define MGL_PUSH(a,v,m) a.push_back(v); macro