Home
last modified time | relevance | path

Searched refs:BaseGDL (Results 126 – 150 of 215) sorted by relevance

123456789

/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A Dsorting.cpp1651 BaseGDL* gdl_sort_fun( EnvT* e) in gdl_sort_fun()
1655 BaseGDL* p0 = e->GetParDefined(0); in gdl_sort_fun()
1682 DLongGDL* res = new DLongGDL(dimension(nEl), BaseGDL::NOALLOC); in gdl_sort_fun()
1735 DLongGDL* res = new DLongGDL(dimension(nEl), BaseGDL::INDGEN); in gdl_sort_fun()
1752 DLongGDL* res = new DLongGDL(dimension(nEl), BaseGDL::INDGEN); in gdl_sort_fun()
1769 DLongGDL* res = new DLongGDL(dimension(nEl), BaseGDL::INDGEN); in gdl_sort_fun()
1785 DLongGDL* res = new DLongGDL(dimension(nEl), BaseGDL::INDGEN); in gdl_sort_fun()
1801 DLongGDL* res = new DLongGDL(dimension(nEl), BaseGDL::INDGEN); in gdl_sort_fun()
1927 inline BaseGDL* do_sort_fun(BaseGDL* p0) in do_sort_fun()
2096 BaseGDL* sort_fun( EnvT* e) in sort_fun()
[all …]
H A Dsorting.hpp22 BaseGDL* sort_fun( EnvT* e);
23 BaseGDL* gdl_sort_fun( EnvT* e);
H A Dmath_fun_ng.hpp24 BaseGDL* rk4_fun( EnvT* e);
25 BaseGDL* voigt_fun( EnvT* e);
H A Dgdlhelp.cpp275 BaseGDL* var= v->Data(); in help_sysvar()
300 *outputKW = new DStringGDL(dim, BaseGDL::NOZERO); in help_Output()
503 BaseGDL* hV = BaseGDL::interpreter->GetObjHeap(h); in help_mix_heap_and_obj()
509 BaseGDL* hV = BaseGDL::interpreter->GetHeap(h); in help_mix_heap_and_obj()
523 BaseGDL** outputKW = NULL; in help_lastmsg()
569 BaseGDL* recall_commands( EnvT* e) in recall_commands()
578 BaseGDL* par, DString parString, in help_item()
810 BaseGDL** outputKW = NULL; in help_pro()
938 BaseGDL*& par = e->GetPar(i); in help_pro()
1259 BaseGDL*& par = e->GetPar(i); in help_pro()
[all …]
H A Dplotting_contour.cpp60 Guard<BaseGDL> xval_guard, yval_guard, zval_guard, p0_guard;
62 Guard<BaseGDL> xval_temp_guard, yval_temp_guard;
70 Guard<BaseGDL> colors_guard,thick_guard,labels_guard,style_guard;
72 Guard<BaseGDL> spacing_guard,orientation_guard;
116 xVal=new DDoubleGDL ( dimension ( xEl ), BaseGDL::INDGEN ); in handle_args()
118 yVal=new DDoubleGDL ( dimension ( yEl ), BaseGDL::INDGEN ); in handle_args()
494 BaseGDL* b_levels=e->GetKW ( levelsix ); in old_body()
723 colors=new DLongGDL( 1, BaseGDL::NOZERO ); in old_body()
738 thick=new DFloatGDL( 1, BaseGDL::NOZERO ); in old_body()
749 labels=new DLongGDL ( dimension (nlevel), BaseGDL::ZERO ); in old_body()
[all …]
H A Dnewprognode.cpp364 BaseGDL* cData = newNode->Eval(); in NewProgNode()
378 BaseGDL* cData = newUnary->Eval(); in NewProgNode()
545 BaseGDL* cData = newNode->Eval(); in NewProgNode()
559 BaseGDL* cData = newUnary->Eval(); in NewProgNode()
586 BaseGDL* cData = c->Eval(); in NewProgNode()
603 BaseGDL* cData = c->Eval(); in NewProgNode()
620 BaseGDL* cData = c->Eval(); in NewProgNode()
708 BaseGDL* cData = c->Eval(); in NewProgNode()
724 BaseGDL* cData = c->Eval(); in NewProgNode()
749 BaseGDL* cData = c->Eval(); in NewProgNode()
H A Dimage.hpp27 BaseGDL* tvrd( EnvT* e);
28 BaseGDL* GetImage( EnvT* e);
H A Dsemshm.hpp26 BaseGDL* sem_create(EnvT*);
28 BaseGDL* sem_lock(EnvT*);
H A Dplotting_shade_surf.cpp31 Guard<BaseGDL> xval_guard, yval_guard, zval_guard, p0_guard;
41 Guard<BaseGDL> shades_guard;
92 BaseGDL* p0=e->GetNumericArrayParDefined ( 0 )->Transpose ( NULL ); in handle_args()
95 zVal=static_cast<DDoubleGDL*>( p0->Convert2 ( GDL_DOUBLE, BaseGDL::COPY ) ); in handle_args()
101 xVal=new DDoubleGDL ( dimension ( xEl ), BaseGDL::INDGEN ); in handle_args()
104 yVal=new DDoubleGDL ( dimension ( yEl ), BaseGDL::INDGEN ); in handle_args()
110 BaseGDL* p0 = e->GetNumericArrayParDefined(0)->Transpose(NULL); in handle_args()
113 zVal = static_cast<DDoubleGDL*> (p0->Convert2(GDL_DOUBLE, BaseGDL::COPY)); in handle_args()
206 shades=new DLongGDL( 1, BaseGDL::NOZERO ); in handle_args()
H A Dplotting_oplot.cpp40 Guard<BaseGDL> xval_guard, yval_guard, xtemp_guard;
78 xTemp = new DDoubleGDL( dimension( xEl), BaseGDL::INDGEN); in handle_args()
108 xVal = new DDoubleGDL(dimension(xEl), BaseGDL::NOZERO); in handle_args()
110 yVal = new DDoubleGDL(dimension(yEl), BaseGDL::NOZERO); in handle_args()
126 xVal = new DDoubleGDL(size, BaseGDL::ZERO); //SHOULD BE ZERO, IS NOT! in handle_args()
128 yVal = new DDoubleGDL(size, BaseGDL::ZERO); //IDEM in handle_args()
H A Dmatrix_cholesky.hpp33 BaseGDL* cholsol_fun( EnvT* e);
34 BaseGDL* la_cholsol_fun( EnvT* e);
H A DFMTIn.hpp25 BaseGDL* prompt_) in FMTIn()
60 BaseGDL** par = &e->GetPar( nextParIx); in NextPar()
190 BaseGDL* prompt;
199 BaseGDL* actPar;
H A Dmpi.cpp23 BaseGDL* mpi_comm_rank_fun( EnvT* e) in mpi_comm_rank_fun()
35 BaseGDL* mpi_comm_size_fun( EnvT* e) in mpi_comm_size_fun()
98 BaseGDL* mpi_recv_fun( EnvT* e) in mpi_recv_fun()
153 BaseGDL* mpi_allreduce_fun( EnvT* e) in mpi_allreduce_fun()
H A Dterminfo.hpp34 BaseGDL* terminal_size_fun( EnvT* e );
35 BaseGDL* get_kbrd( EnvT* e);
H A Ddcommon.hpp34 virtual int Find(const BaseGDL*)=0;
63 int Find(const BaseGDL*);
96 int Find(const BaseGDL*);
H A Dgdlpython.hpp28 BaseGDL* FromPython( PyObject* pyObj);
32 BaseGDL* gdlpython_fun( EnvT* e);
H A Dgdlwidget.hpp405 static BaseGDL * getSystemColours();
656 static BaseGDL* GetWidgetsList();
1249 void SetValue(BaseGDL *value);
1251 BaseGDL* GetSelectedEntry();
1270 void SetValue(BaseGDL *value);
1272 BaseGDL* GetSelectedEntry();
1287 void SetValue(BaseGDL *value);
1289 BaseGDL* GetSelectedEntries();
1513 BaseGDL* GetTabNumber();
1514 BaseGDL* GetTabCurrent();
[all …]
H A Dtriangulation.hpp30 BaseGDL* trigrid_fun( EnvT* e);
34 BaseGDL* qgrid3_fun ( EnvT* e);
H A Dbasic_pro.hpp50 BaseGDL* par, DString parString, bool doIndentation);
51 void help_struct( std::ostream& os, BaseGDL* par, int indent , bool debug );
103 BaseGDL* julday(EnvT* e);
H A Ddpro.hpp444 BaseGDL* GetCommonVarNameList();
445 bool GetCommonVarName(const BaseGDL* p, std::string& varName);
446 bool GetCommonVarName4Help(const BaseGDL* p, std::string& varName);
448 BaseGDL** GetCommonVarPtr(const BaseGDL* p) in GetCommonVarPtr()
463 BaseGDL** GetCommonVarPtr(std::string& s) in GetCommonVarPtr()
474 bool ReplaceExistingCommonVar(std::string& s, BaseGDL* val) in ReplaceExistingCommonVar()
H A Dprint.cpp49 BaseGDL* par = e->GetParDefined(*parOffset); in print_vmsCompat()
166 BaseGDL* par; in print_os()
223 BaseGDL* par; in print_os()
225 BaseGDL* parOffsetPar = e->GetPar(parOffset); in print_os()
263 BaseGDL* par; in pm()
H A Ddstructdesc.hpp39 std::vector<BaseGDL*> tags; // Data_<Sp> for data, 'Sp' for structList elements
40 void Add( BaseGDL* t) in Add()
101 BaseGDL*& operator[] (const SizeT d1) in operator []()
103 const BaseGDL* operator[] (const SizeT d1) const in operator []()
144 void AddTag( const std::string& tagName, const BaseGDL* data);
H A Dplotting_surface.cpp33 Guard<BaseGDL> xval_guard, yval_guard, zval_guard, p0_guard;
90 BaseGDL* p0 = e->GetNumericArrayParDefined(0)->Transpose(NULL); in handle_args()
93 zVal = static_cast<DDoubleGDL*> (p0->Convert2(GDL_DOUBLE, BaseGDL::COPY)); in handle_args()
99 xVal = new DDoubleGDL(dimension(xEl), BaseGDL::INDGEN); in handle_args()
102 yVal = new DDoubleGDL(dimension(yEl), BaseGDL::INDGEN); in handle_args()
106 BaseGDL* p0 = e->GetNumericArrayParDefined(0)->Transpose(NULL); in handle_args()
109 zVal = static_cast<DDoubleGDL*> (p0->Convert2(GDL_DOUBLE, BaseGDL::COPY)); in handle_args()
216 BaseGDL* shadevalues=e->GetKW ( shadesIx ); in old_body()
H A Dassocdata.cpp94 Parent_( assoc_->Dim(), BaseGDL::NOZERO), in Assoc_()
130 void Assoc_<Parent_>::AssignAt( BaseGDL* srcIn, in AssignAt()
178 void Assoc_<Parent_>::AssignAt( BaseGDL* srcIn, in AssignAt()
228 void Assoc_<Parent_>::AssignAt( BaseGDL* srcIn) in AssignAt()
250 BaseGDL* srcIn, in InsertAt()
H A Dncdf_cl.cpp147 BaseGDL* v=e->GetParDefined(2); in ncdf_handle_error()
148 DIntGDL* dim_in=static_cast<DIntGDL*>(v->Convert2(GDL_INT, BaseGDL::COPY)); in ncdf_handle_error()
276 BaseGDL * ncdf_open(EnvT * e) in ncdf_open()
344 BaseGDL* ncdf_inquire(EnvT* e) in ncdf_inquire()
378 BaseGDL * ncdf_create(EnvT * e) in ncdf_create()

123456789