Home
last modified time | relevance | path

Searched refs:prctype (Results 1 – 2 of 2) sorted by relevance

/dports/math/mathgl/mathgl-2.5/src/prc/
H A DoPRCFile.h499 #define ADD_ADDUNIQ( prctype ) \ argument
500 uint32_t add##prctype( PRC##prctype*& p##prctype ); \
501 uint32_t add##prctype##Unique( PRC##prctype*& p##prctype);
777 #define ADD_ADDUNIQ( prctype ) \ argument
778 uint32_t add##prctype(PRC##prctype*& p##prctype, uint32_t fileStructure=0) \
779 { return fileStructures[fileStructure]->add##prctype( p##prctype ); } \
780 uint32_t add##prctype##Unique(PRC##prctype*& p##prctype, uint32_t fileStructure=0) \
781 { return fileStructures[fileStructure]->add##prctype##Unique(p##prctype); }
H A DoPRCFile.cc2343 #define ADD_ADDUNIQ( prctype, prcmap, prclist) \ argument
2344 uint32_t PRCFileStructure::add##prctype(PRC##prctype *& p##prctype) \
2346 prclist.push_back(p##prctype); \
2347 p##prctype = NULL; \
2351 uint32_t PRCFileStructure::add##prctype##Unique(PRC##prctype*& p##prctype) \
2354 PRC##prctype##Map::const_iterator i##prctype = prcmap.find(p##prctype); \
2355 if(i##prctype!=prcmap.end()) \
2357 delete p##prctype; \
2358 prc_index = i##prctype->second; \
2363 prclist.push_back(p##prctype); \
[all …]