/dports/dns/dq/dq-20181021/sysdep/ |
H A D | trynum.h | 3 static int tryint(void) \ 23 if (tryint() != 0) return 100; \
|
/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/util/ |
H A D | sautils.py | 48 def tryint(s): function 53 return tuple(map(tryint, sa.__version__.split('.')))
|
/dports/audio/picard/picard-release-2.6.2/resources/ |
H A D | makeqrc.py | 39 def tryint(s): function 47 return [ tryint(c) for c in re.split(r'(\d+)', s) ]
|
/dports/audio/py-hsaudiotag3k/hsaudiotag3k-1.1.3.post1/hsaudiotag/ |
H A D | wma.py | 13 from .util import FileOrPath, tryint 173 self.track = tryint(track, 0) 177 self.track = tryint(track, -1) + 1
|
H A D | mpeg.py | 14 from .util import tryint, FileOrPath 164 self.position = tryint(self.fp.tell()) 271 self.size = tryint(fp.tell())
|
H A D | util.py | 48 def tryint(value, default=0): function
|
H A D | mp4.py | 12 from .util import open_if_filename, tryint 341 return tryint(self._get_attr('moov.udta.meta.ilst.trkn'))
|
H A D | id3v2.py | 13 from .util import cond, tryint, FileOrPath 299 return tryint(s) // 1000
|
/dports/devel/py-lxml/lxml-4.7.1/ |
H A D | buildlibxml.py | 206 def tryint(s): function 263 versions.append((tuple(map(tryint, version_string.split('.'))), 291 version_tuple = tuple(map(tryint, match.group(1).split('.'))) 444 if tuple(map(tryint, libxml2_version.split('-', 1)[0].split('.'))) >= (2, 9, 5): 448 if tuple(map(tryint, libxml2_version.split('-', 1)[0].split('.'))) >= (2, 7, 3):
|
/dports/math/maxima/maxima-5.43.2/src/ |
H A D | laplac.lisp | 331 (let ((tryint (and (not ($unknown f)) 342 (if tryint 343 (car tryint) 529 (prog (tryint mult) 536 (setq tryint 542 (and tryint (not (eq (and (listp (car tryint)) 543 (caaar tryint)) 545 (return (car tryint)))
|
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/scripts/ |
H A D | polsel_params.sage | 175 def tryint(c): 182 return [tryint(c) for c in re.split('([0-9]+)', s)]
|
/dports/games/redeclipse/base-2.0.0/src/engine/ |
H A D | material.cpp | 111 int findmaterial(const char *name, bool tryint) in findmaterial() argument 114 return tryint && isnumeric(*name) ? atoi(name) : -1; in findmaterial()
|
H A D | engine.h | 262 extern int findslottex(char *name, bool tryint = true); 647 extern int findmaterial(const char *name, bool tryint = false);
|
/dports/games/redeclipse16/base-1.6.0/src/engine/ |
H A D | material.cpp | 160 int findmaterial(const char *name, bool tryint) in findmaterial() argument 163 return tryint && isnumeric(*name) ? atoi(name) : -1; in findmaterial()
|
H A D | engine.h | 435 extern int findmaterial(const char *name, bool tryint = false);
|
H A D | texture.h | 831 extern int findtexturetype(char *name, bool tryint = false);
|
H A D | texture.cpp | 2088 int findtexturetype(char *name, bool tryint) in findtexturetype() argument 2091 return tryint && isnumeric(*name) ? atoi(name) : -1; in findtexturetype()
|
/dports/games/bloodfrontier/bloodfrontier/src/engine/ |
H A D | material.cpp | 137 int findmaterial(const char *name, bool tryint) in findmaterial() argument 140 return tryint && isnumeric(*name) ? atoi(name) : -1; in findmaterial()
|
H A D | texture.h | 446 extern int findtexturetype(char *name, bool tryint = false);
|
H A D | engine.h | 414 extern int findmaterial(const char *name, bool tryint = false);
|
H A D | texture.cpp | 1062 int findtexturetype(char *name, bool tryint) in findtexturetype() argument 1065 return tryint && isnumeric(*name) ? atoi(name) : -1; in findtexturetype()
|
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/web_tests/port/ |
H A D | base.py | 917 def tryint(val): function 923 return [tryint(chunk) for chunk in re.split(r'(\d+)', string_to_split)]
|
/dports/math/SCIP/scip-7.0.3/interfaces/gams/src/ |
H A D | reader_gmo.c | 2054 double tryint = 0.0; in SCIPcreateProblemReaderGmo() local 2058 tryint = gevGetDblOpt(gev, gevTryInt); in SCIPcreateProblemReaderGmo() 2078 if( fabs(round(val)-val) <= tryint ) in SCIPcreateProblemReaderGmo()
|
/dports/cad/gmsh/gmsh-4.9.2-source/api/ |
H A D | GenApi.py | 1895 def tryint(s): function 1902 return [tryint(c) for c in re.split('([0-9]+)', s)]
|
/dports/math/py-cdecimal/cdecimal-2.3/ |
H A D | cdecimal2.c | 3436 _dec_as_integral(int tryint, PyObject *dec, PyObject *context, int round) 3469 if (tryint) {
|