Home
last modified time | relevance | path

Searched refs:cdtype (Results 1 – 25 of 43) sorted by relevance

12

/dports/devel/upp/upp/bazaar/plugin/assimp/code/Blender/
H A DBlenderCustomData.cpp153 bool isValidCustomDataType(const int cdtype) { in isValidCustomDataType() argument
154 return cdtype >= 0 && cdtype < CD_NUMTYPES; in isValidCustomDataType()
157 …bool readCustomData(std::shared_ptr<ElemBase> &out, const int cdtype, const size_t cnt, const File… in readCustomData() argument
158 if (!isValidCustomDataType(cdtype)) { in readCustomData()
159 throw Error((Formatter::format(), "CustomData.type ", cdtype, " out of index")); in readCustomData()
162 const CustomDataTypeDescription cdtd = customDataTypeDescriptions[cdtype]; in readCustomData()
171 …r> getCustomDataLayer(const CustomData &customdata, const CustomDataType cdtype, const std::string… in getCustomDataLayer() argument
173 if (it->get()->type == cdtype && name == it->get()->name) { in getCustomDataLayer()
180 …etCustomDataLayerData(const CustomData &customdata, const CustomDataType cdtype, const std::string… in getCustomDataLayerData() argument
182 … const std::shared_ptr<CustomDataLayer> pLayer = getCustomDataLayer(customdata, cdtype, name); in getCustomDataLayerData()
H A DBlenderCustomData.h69 bool isValidCustomDataType(const int cdtype);
78 …taLayer> getCustomDataLayer(const CustomData &customdata, CustomDataType cdtype, const std::string…
87 …const ElemBase * getCustomDataLayerData(const CustomData &customdata, CustomDataType cdtype, const…
H A DBlenderDNA.h332 …bool ReadCustomDataPtr(std::shared_ptr<ElemBase>&out, int cdtype, const char* name, const FileData…
836 bool readCustomData(std::shared_ptr<ElemBase> &out, int cdtype, size_t cnt, const FileDatabase &db);
/dports/multimedia/assimp/assimp-5.1.3/code/AssetLib/Blender/
H A DBlenderCustomData.cpp146 bool isValidCustomDataType(const int cdtype) { in isValidCustomDataType() argument
147 return cdtype >= 0 && cdtype < CD_NUMTYPES; in isValidCustomDataType()
150 bool readCustomData(std::shared_ptr<ElemBase> &out, const int cdtype, const size_t cnt, const FileD… in readCustomData() argument
151 if (!isValidCustomDataType(cdtype)) { in readCustomData()
152 throw Error("CustomData.type ", cdtype, " out of index"); in readCustomData()
155 const CustomDataTypeDescription cdtd = customDataTypeDescriptions[cdtype]; in readCustomData()
164 …r> getCustomDataLayer(const CustomData &customdata, const CustomDataType cdtype, const std::string… in getCustomDataLayer() argument
166 if (it->get()->type == cdtype && name == it->get()->name) { in getCustomDataLayer()
173 const ElemBase *getCustomDataLayerData(const CustomData &customdata, const CustomDataType cdtype, c… in getCustomDataLayerData() argument
174 const std::shared_ptr<CustomDataLayer> pLayer = getCustomDataLayer(customdata, cdtype, name); in getCustomDataLayerData()
H A DBlenderCustomData.h69 bool isValidCustomDataType(const int cdtype);
78 …taLayer> getCustomDataLayer(const CustomData &customdata, CustomDataType cdtype, const std::string…
87 …const ElemBase * getCustomDataLayerData(const CustomData &customdata, CustomDataType cdtype, const…
H A DBlenderDNA.h334 …bool ReadCustomDataPtr(std::shared_ptr<ElemBase> &out, int cdtype, const char *name, const FileDat…
801 bool readCustomData(std::shared_ptr<ElemBase> &out, int cdtype, size_t cnt, const FileDatabase &db);
/dports/databases/dbow/dbow-0.7/src/
H A Dgencode.c165 if (active->cdtype == CDT_DBASE) in genprolog()
186 if (active->cdtype == CDT_DBASE) in gendefs()
215 if (active->cdtype == CDT_DBASE) in genmidsect()
234 if (active->cdtype == CDT_DBASE) { in genstr()
271 if (active->cdtype == CDT_DBASE) in gencode()
302 if (active->cdtype == CDT_DBASE) in genepilog()
H A Ddbowint.h171 int cdtype; member
/dports/astro/pykep/pykep-2.6/src/third_party/cspice/
H A Dzzsrfker.c47 char bdtype[1], cdtype[1]; in zzsrfker_() local
463 dtpool_("NAIF_SURFACE_CODE", &fndcde, &ncode, cdtype, (ftnlen)17, (ftnlen) in zzsrfker_()
513 if (*(unsigned char *)ndtype != 'C' || *(unsigned char *)cdtype != 'N' || in zzsrfker_()
521 errch_("#", cdtype, (ftnlen)1, (ftnlen)1); in zzsrfker_()
/dports/astro/py-pykep/pykep-2.6/src/third_party/cspice/
H A Dzzsrfker.c47 char bdtype[1], cdtype[1]; in zzsrfker_() local
463 dtpool_("NAIF_SURFACE_CODE", &fndcde, &ncode, cdtype, (ftnlen)17, (ftnlen) in zzsrfker_()
513 if (*(unsigned char *)ndtype != 'C' || *(unsigned char *)cdtype != 'N' || in zzsrfker_()
521 errch_("#", cdtype, (ftnlen)1, (ftnlen)1); in zzsrfker_()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/src/relay/transforms/
H A Dfold_constant.cc270 DLDataType cdtype = DataType::Int(32); in EvaluateShapeOf() local
272 value = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateShapeOf()
276 value = runtime::NDArray::Empty(cshape, cdtype, ctx); in EvaluateShapeOf()
291 auto ndarray = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateShapeOf()
317 DLDataType cdtype = DataType::Int(32); in EvaluateNdarraySize() local
318 value = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateNdarraySize()
/dports/misc/tvm/incubator-tvm-0.6.1/src/relay/pass/
H A Dfold_constant.cc230 auto cdtype = Type2TVMType(Int(32)); in EvaluateShapeOf() local
232 value = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateShapeOf()
236 value = runtime::NDArray::Empty(cshape, cdtype, ctx); in EvaluateShapeOf()
251 auto ndarray = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateShapeOf()
/dports/misc/py-tvm/incubator-tvm-0.6.1/src/relay/pass/
H A Dfold_constant.cc230 auto cdtype = Type2TVMType(Int(32)); in EvaluateShapeOf() local
232 value = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateShapeOf()
236 value = runtime::NDArray::Empty(cshape, cdtype, ctx); in EvaluateShapeOf()
251 auto ndarray = runtime::NDArray::Empty({}, cdtype, ctx); in EvaluateShapeOf()
/dports/lang/spidermonkey60/firefox-60.9.0/ipc/ipdl/ipdl/
H A Dtype.py37 if m.cdtype is not None:
38 m.cdtype.accept(self, *args)
189 ctor=False, dtor=False, cdtype=None, compress=False, argument
192 assert not (ctor or dtor) or cdtype is not None
203 self.cdtype = cdtype
210 def constructedType(self): return self.cdtype
866 cdtype = None
873 cdtype = decl.type
881 cdtype = self.currentProtocolDecl.type
888 ctor=isctor, dtor=isdtor, cdtype=cdtype,
/dports/www/firefox-esr/firefox-91.8.0/ipc/ipdl/ipdl/
H A Dtype.py42 if m.cdtype is not None:
43 m.cdtype.accept(self, *args)
302 cdtype=None, argument
307 assert not (ctor or dtor) or cdtype is not None
318 self.cdtype = cdtype
332 return self.cdtype
1265 cdtype = None
1272 cdtype = decl.type
1284 cdtype = self.currentProtocolDecl.type
1296 cdtype=cdtype,
/dports/lang/spidermonkey78/firefox-78.9.0/ipc/ipdl/ipdl/
H A Dtype.py41 if m.cdtype is not None:
42 m.cdtype.accept(self, *args)
268 ctor=False, dtor=False, cdtype=None, compress=False, argument
271 assert not (ctor or dtor) or cdtype is not None
282 self.cdtype = cdtype
293 def constructedType(self): return self.cdtype
1078 cdtype = None
1085 cdtype = decl.type
1093 cdtype = self.currentProtocolDecl.type
1099 ctor=isctor, dtor=isdtor, cdtype=cdtype,
/dports/mail/thunderbird/thunderbird-91.8.0/ipc/ipdl/ipdl/
H A Dtype.py42 if m.cdtype is not None:
43 m.cdtype.accept(self, *args)
302 cdtype=None, argument
307 assert not (ctor or dtor) or cdtype is not None
318 self.cdtype = cdtype
332 return self.cdtype
1265 cdtype = None
1272 cdtype = decl.type
1284 cdtype = self.currentProtocolDecl.type
1296 cdtype=cdtype,
/dports/www/firefox/firefox-99.0/ipc/ipdl/ipdl/
H A Dtype.py42 if m.cdtype is not None:
43 m.cdtype.accept(self, *args)
306 cdtype=None, argument
311 assert not (ctor or dtor) or cdtype is not None
322 self.cdtype = cdtype
336 return self.cdtype
1314 cdtype = None
1321 cdtype = decl.type
1333 cdtype = self.currentProtocolDecl.type
1345 cdtype=cdtype,
/dports/audio/mp3blaster/mp3blaster-3.2.6/src/
H A Dmp3tag.cc26 *cdtype = NULL, variable
136 free(cdtype); in main()
137 cdtype = strdup(optarg); in main()
/dports/math/py-numpy/numpy-1.20.3/numpy/lib/
H A Drecfunctions.py1298 _, cdtype = newdescr[nameidx]
1300 newdescr[nameidx] = (fname, max(fdtype, cdtype))
1301 elif fdtype != cdtype:
1303 (cdtype, fdtype))
1534 _, cdtype = ndtype[nameidx]
1537 ndtype[nameidx] = (fname, max(fdtype, cdtype))
1542 (fname + r1postfix, cdtype),
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/tutorials/dev/
H A Dbring_your_own_datatypes.py297 cdtype = ChangeDatatype(src_dtype, dst_dtype) variable
298 expr = cdtype.visit(module["main"])
/dports/www/firefox-legacy/firefox-52.8.0esr/ipc/ipdl/ipdl/
H A Dtype.py60 if m.cdtype is not None:
61 m.cdtype.accept(self, *args)
255 ctor=False, dtor=False, cdtype=None, compress=False, argument
269 self.cdtype = cdtype
276 def constructedType(self): return self.cdtype
1108 cdtype = None
1115 cdtype = decl.type
1123 cdtype = self.currentProtocolDecl.type
1130 ctor=isctor, dtor=isdtor, cdtype=cdtype,
/dports/science/py-scipy/scipy-1.7.1/scipy/fft/_pocketfft/tests/
H A Dtest_basic.py767 cdtype = None variable in TestIfftn
775 def test_definition(self, dtype, cdtype, maxnlp): argument
780 assert_equal(y.dtype, cdtype)
813 cdtype = None variable in TestRfftn
821 def test_definition(self, dtype, cdtype, maxnlp): argument
826 assert_equal(y.dtype, cdtype)
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/javax/management/mxbean/
H A DRecordsMXBeanTest.java489 var cdtype = cdtrick.getCompositeType(); in test() local
497 var cdtype2 = new CompositeType(cdtype.getTypeName(), in test()
498 cdtype.getDescription(), itemNames, itemDesc, itemTypes); in test()
/dports/japanese/epwutil/epwutil-1.1/
H A Dcatdump.c84 uchr cdtype[C_CDTYPELEN]; member
305 type = hdr->cdtype[1];
609 hdr->cdtype[1] = type;

12