Home
last modified time | relevance | path

Searched refs:imgBase (Results 1 – 11 of 11) sorted by relevance

/dports/science/madness/madness-ebb3fd7/src/madness/external/elemental/include/elemental/lapack-like/props/Pseudospectrum/Util/
H A DSnapshot.hpp25 std::string imgBase, numBase; member
33 imgBase("ps"), numBase("ps"), imgFormat(PNG), numFormat(ASCII_MATLAB), in SnapshotCtrl()
105 os << snapCtrl.imgBase << "-" << numIts; in Snapshot()
118 os << snapCtrl.imgBase << "-" << numIts; in Snapshot()
164 std::string base = snapCtrl.imgBase; in FinalSnapshot()
175 std::string base = snapCtrl.imgBase; in FinalSnapshot()
242 os << snapCtrl.imgBase << "-" << numIts; in Snapshot()
255 os << snapCtrl.imgBase << "-" << numIts; in Snapshot()
302 std::string base = snapCtrl.imgBase; in FinalSnapshot()
313 std::string base = snapCtrl.imgBase; in FinalSnapshot()
/dports/games/zdoom/zdoom-2.8.1/src/g_strife/
H A Dstrife_sbar.cpp766 void DrINumber (signed int val, int x, int y, int imgBase) const in DrINumber()
772 DrawImage (Images[imgBase], x, y); in DrINumber()
778 DrawImage (Images[imgBase+val%10], x, y); in DrINumber()
785 void DrINumber2 (signed int val, int x, int y, int width, int imgBase) const in DrINumber2()
791 screen->DrawTexture (Images[imgBase], x, y, DTA_CleanNoMove, true, TAG_DONE); in DrINumber2()
797 screen->DrawTexture (Images[imgBase+val%10], x, y, DTA_CleanNoMove, true, TAG_DONE); in DrINumber2()
/dports/science/madness/madness-ebb3fd7/src/madness/external/elemental/examples/lapack-like/
H A DTriangularPseudospectrum.cpp73 const std::string imgBase = in main() local
186 psCtrl.snapCtrl.imgBase = matName+"-"+imgBase; in main()
H A DPseudospectrum.cpp113 const std::string imgBase = in main() local
255 psCtrl.snapCtrl.imgBase = matName+"-"+imgBase; in main()
H A DChunkedTriangularPseudospectrum.cpp76 const std::string imgBase = in main() local
269 psCtrl.snapCtrl.imgBase = matName+"-"+imgBase+chunkTag; in main()
H A DChunkedPseudospectrum.cpp109 const std::string imgBase = in main() local
381 psCtrl.snapCtrl.imgBase = matName+"-"+imgBase+chunkTag; in main()
/dports/x11-toolkits/pangolin/Pangolin-0.6/src/image/
H A Dimage_io_exr.cpp112 …char *imgBase = (char *) img.ptr - (dw.min.x + dw.min.y * width) * sizeof(float) * format.channels; in LoadExr() local
119 Imf::FLOAT, imgBase + sizeof(float) * c++, in LoadExr()
/dports/games/zdoom/zdoom-2.8.1/src/g_shared/
H A Dshared_sbar.cpp621 void DBaseStatusBar::DrINumber (signed int val, int x, int y, int imgBase) const in DrINumber()
636 DrawImage (Images[imgBase+val], x+18, y); in DrINumber()
642 DrawImage (Images[imgBase+val/100], x, y); in DrINumber()
647 DrawImage (Images[imgBase+val/10], x+9, y); in DrINumber()
650 DrawImage (Images[imgBase+val], x+18, y); in DrINumber()
H A Dsbar.h386 void DrINumber (signed int val, int x, int y, int imgBase=imgINumbers) const;
/dports/www/serendipity/Serendipity-2.3.5/include/
H A Dfunctions_images.inc.php2202 …$imgBase = serendipity_dirSlash('end', $serendipity['serendipityPath'] . $serendipity['uploadPath'…
2226 if (! file_exists("${imgBase}${newDir}")) {
2227 rename("${imgBase}${oldDir}", "${imgBase}${newDir}");
2268 $imgBase = $serendipity['serendipityPath'] . $serendipity['uploadPath'];
2270 …$newPath = $imgBase . $path . $newName . (empty($file['extension']) ? '' : '.' . $file['extension'…
2280 if (rename("{$imgBase}{$file['path']}{$file['realname']}", $newPath)) {
/dports/security/keepass/KeePass-2.49-Source/KeePass/UI/
H A DUIUtil.cs3335 public static Image CreateDropDownImage(Image imgBase) in CreateDropDownImage() argument
3337 if(imgBase == null) { Debug.Assert(false); return null; } in CreateDropDownImage()
3344 int dx = imgBase.Width, dy = imgBase.Height; in CreateDropDownImage()
3346 return new Bitmap(imgBase); in CreateDropDownImage()
3355 g.DrawImageUnscaled(imgBase, 0, 0); in CreateDropDownImage()