Home
last modified time | relevance | path

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

/linux-5.19.10/arch/powerpc/xmon/
Dxmon.c211 #define GETWORD(v) (((v)[3] << 24) + ((v)[2] << 16) + ((v)[1] << 8) + (v)[0]) macro
213 #define GETWORD(v) (((v)[0] << 24) + ((v)[1] << 16) + ((v)[2] << 8) + (v)[3]) macro
3224 && ((GETWORD(val) ^ mval) & mask) == 0) { in memlocate()
3225 printf("%.16x: %.16x\n", a, GETWORD(val)); in memlocate()