OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FromHex
(Results
1 - 2
of
2
) sorted by null
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
avifmt.h
52
#define
FromHex
(n) (((n) >= 'A') ? ((n) + 10 - 'A') : ((n) - '0'))
53
#define StreamFromFOURCC(fcc) ((WORD) ((
FromHex
(LOBYTE(LOWORD(fcc))) << 4) + (
FromHex
(HIBYTE(LOWORD(fcc))))))
vfw.h
671
#define
FromHex
(n) (((n) >= 'A') ? ((n) + 10 - 'A') : ((n) - '0'))
672
#define StreamFromFOURCC(fcc) ((WORD) ((
FromHex
(LOBYTE(LOWORD(fcc))) << 4) + (
FromHex
(HIBYTE(LOWORD(fcc))))))
[
all
...]
Completed in 572 milliseconds