HomeSort by relevance Sort by last modified time
    Searched refs:_W_INT (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/StdLib/Include/sys/
wait.h 48 #define _W_INT(w) (*(int *)(void *)&(w)) /* convert union wait to int */
50 #define _WSTATUS(x) (_W_INT(x) & 0177)
53 #define WSTOPSIG(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff)
57 #define WEXITSTATUS(x) ((int)(((unsigned int)_W_INT(x)) >> 8) & 0xff)
59 #define WCOREDUMP(x) (_W_INT(x) & WCOREFLAG)
  /external/python/cpython2/Lib/plat-irix6/
WAIT.py 7 def _W_INT(i): return (i)
12 def WIFEXITED(stat): return ((_W_INT(stat)&0377)==0)
14 def WEXITSTATUS(stat): return ((_W_INT(stat)>>8)&0377)
16 def WTERMSIG(stat): return (_W_INT(stat)&0177)
18 def WSTOPSIG(stat): return ((_W_INT(stat)>>8)&0377)
30 def WWORD(stat): return (_W_INT(stat)&0177777)
34 def WCOREDUMP(stat): return (_W_INT(stat) & WCOREFLAG)

Completed in 490 milliseconds