Home
last modified time | relevance | path

Searched refs:uMod (Results 1 – 5 of 5) sorted by relevance

/dports/security/keepass/KeePass-2.49-Source/KeePass/Util/
H A DHotKeyManager.cs71 uint uMod = 0; in RegisterHotKey()
72 if((kKey & Keys.Shift) != Keys.None) uMod |= NativeMethods.MOD_SHIFT; in RegisterHotKey()
73 if((kKey & Keys.Alt) != Keys.None) uMod |= NativeMethods.MOD_ALT; in RegisterHotKey()
74 if((kKey & Keys.Control) != Keys.None) uMod |= NativeMethods.MOD_CONTROL; in RegisterHotKey()
83 if(NativeMethods.RegisterHotKey(m_fRecvWnd.Handle, nId, uMod, vkCode)) in RegisterHotKey()
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthUtil/
H A DFractalElevationLayer.cpp293 double uMod = fmod(uScaled, 1.0);
296 n += noise1(uMod, vMod).r() - 0.5;
305 double uMod = fmod(uScaled, 1.0);
307 n += noise2(uMod, vMod).r() - 0.5;
/dports/misc/gpsim/gpsim-0.31.0/cli/
H A Dcmd_dump.cc115 unsigned int uMod = uToDisplayCount % uColumns; in dump_sfrs() local
121 auTopRowIndex[i] = auTopRowIndex[i - 1] + uRowsPerColumn + (uMod > i ? 1 : 0); in dump_sfrs()
124 uRowsPerColumn += (uMod == 0 ? 0 : 1); in dump_sfrs()
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/pipegen/
H A Dfetchpatternpart.cpp226 pc->uMod(f->y, f->ry); // f->y %= f->ry; in _initPart()
317 pc->uMod(f->xOrigin.r32(), f->w); in _initPart()
395 pc->uMod(f->xOrigin, f->rx); in _initPart()
697 pc->uMod(f->x.r32(), f->w); // f->x %= f->w; in repeatOrReflectX()
710 pc->uMod(f->x, f->rx); // f->x %= f->rx; in repeatOrReflectX()
H A Dpipecompiler_p.h761 BL_NOINLINE void uMod(const DstT& dst, const SrcT& src) noexcept { in uMod() function