Searched defs:uY (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Runtime/common/checksum/
H A Dalt-sha1.cpp198 DECL_FORCE_INLINE(uint32_t) rtSha1Ch(uint32_t uX, uint32_t uY, uint32_t uZ) argument
202 uint32_t uResult = uY;
209 uint32_t uResult = uX & uY;
217 DECL_FORCE_INLINE(uint32_t) rtSha1Parity(uint32_t uX, uint32_t uY, uint32_t uZ) argument
220 uResult ^= uY;
227 DECL_FORCE_INLINE(uint32_t) rtSha1Maj(uint32_t uX, uint32_t uY, uint32_t uZ) argument
231 uint32_t uResult = uY;
234 uResult ^= uY & uZ;
238 uint32_t uResult = (uX & uY);
240 uResult |= (uY
[all...]
H A Dalt-sha256.cpp114 DECL_FORCE_INLINE(uint32_t) rtSha256Ch(uint32_t uX, uint32_t uY, uint32_t uZ) argument
118 uint32_t uResult = uY;
125 uint32_t uResult = uX & uY;
133 DECL_FORCE_INLINE(uint32_t) rtSha256Maj(uint32_t uX, uint32_t uY, uint32_t uZ) argument
137 uint32_t uResult = uY;
140 uResult ^= uY & uZ;
144 uint32_t uResult = uX & uY;
146 uResult ^= uY & uZ;
H A Dalt-sha512.cpp119 DECL_FORCE_INLINE(uint64_t) rtSha512Ch(uint64_t uX, uint64_t uY, uint64_t uZ) argument
123 uint64_t uResult = uY;
130 uint64_t uResult = uX & uY;
138 DECL_FORCE_INLINE(uint64_t) rtSha512Maj(uint64_t uX, uint64_t uY, uint64_t uZ) argument
142 uint64_t uResult = uY;
145 uResult ^= uY & uZ;
149 uint64_t uResult = uX & uY;
151 uResult ^= uY & uZ;
/vbox/include/VBox/HostServices/
H A DDragAndDropSvc.h199 HGCMFunctionParameter uY; /* OUT uint32_t */ member in struct:DragAndDropSvc::VBOXDNDHGACTIONMSG
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIFrameBuffer.cpp197 * @param uY Vertical origin of the update rectangle, in pixels.
202 STDMETHOD(NotifyChange)(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight);
206 * @param uY Vertical origin of the update rectangle, in pixels.
211 STDMETHOD(NotifyUpdate)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight);
215 * @param uY Vertical origin of the update rectangle, in pixels.
221 STDMETHOD(NotifyUpdateImage)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight, ComSafeArrayIn(BYTE, image));
731 STDMETHODIMP UIFrameBufferPrivate::NotifyChange(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight) argument
745 (unsigned long)uX, (unsigned long)uY,
772 (unsigned long)uX, (unsigned long)uY,
786 STDMETHODIMP UIFrameBufferPrivate::NotifyUpdate(ULONG uX, ULONG uY, ULON argument
822 NotifyUpdateImage(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight, ComSafeArrayIn(BYTE, image)) argument
[all...]

Completed in 99 milliseconds