Searched refs:FLIPWORD (Results 1 – 1 of 1) sorted by relevance
623 #define FLIPWORD(a) (((a & 0xff000000) >> 24) | ((a & 0x00ff0000) >> 8) | ((a & 0x0000ff00) << 8) |… macro686 font->w = FLIPWORD(font->w); in PHP_FUNCTION()687 font->h = FLIPWORD(font->h); in PHP_FUNCTION()688 font->nchars = FLIPWORD(font->nchars); in PHP_FUNCTION()
Completed in 13 milliseconds