Searched refs:GETWORD (Results 1 – 1 of 1) sorted by relevance
211 #define GETWORD(v) (((v)[3] << 24) + ((v)[2] << 16) + ((v)[1] << 8) + (v)[0]) macro213 #define GETWORD(v) (((v)[0] << 24) + ((v)[1] << 16) + ((v)[2] << 8) + (v)[3]) macro3224 && ((GETWORD(val) ^ mval) & mask) == 0) { in memlocate()3225 printf("%.16x: %.16x\n", a, GETWORD(val)); in memlocate()