y 68 kern/arch/mips/include/spinlock.h spinlock_data_t y;
y 81 kern/arch/mips/include/spinlock.h y = 1;
y 89 kern/arch/mips/include/spinlock.h : "=r" (x), "+r" (y) : "r" (sd));
y 90 kern/arch/mips/include/spinlock.h if (y == 0) {
y 60 kern/dev/lamebus/lscreen.c splitxy(uint32_t xy, unsigned *x, unsigned *y)
y 63 kern/dev/lamebus/lscreen.c *y = xy & 0xffff;
y 70 kern/dev/lamebus/lscreen.c mergexy(unsigned x, unsigned y)
y 74 kern/dev/lamebus/lscreen.c return (val << 16) | y;
y 290 user/sbin/sfsck/sfsck.c uint8_t x, y;
y 293 user/sbin/sfsck/sfsck.c for (x=1, y=0; x; x<<=1, y++) {
y 295 user/sbin/sfsck/sfsck.c blocknum = bitblock*SFS_BLOCKBITS + byte*CHAR_BIT + y;
y 391 user/testbin/malloctest/malloctest.c void *x, *y, *z;
y 406 user/testbin/malloctest/malloctest.c y = malloc(MEDIUMSIZE);
y 407 user/testbin/malloctest/malloctest.c if (y==NULL) {
y 419 user/testbin/malloctest/malloctest.c ly = (unsigned long)y;
y 479 user/testbin/malloctest/malloctest.c free(y);
y 60 user/testbin/tictac/tictac.c bool is_win(int x, int y);
y 64 user/testbin/tictac/tictac.c bool win_column(int y, int marker);
y 65 user/testbin/tictac/tictac.c bool win_diag_left(int x, int y, int marker);
y 66 user/testbin/tictac/tictac.c bool win_diag_right(int x, int y, int marker);
y 215 user/testbin/tictac/tictac.c int x, y;
y 238 user/testbin/tictac/tictac.c y = cx - '0';
y 239 user/testbin/tictac/tictac.c if (y < 0 || y >= DIM) {
y 245 user/testbin/tictac/tictac.c if (board[x][y] != EMPTY) {
y 251 user/testbin/tictac/tictac.c board[x][y] = player == X_PLAYER ? X_MARKER : O_MARKER;
y 253 user/testbin/tictac/tictac.c return(is_win(x, y));
y 280 user/testbin/tictac/tictac.c is_win(int x, int y)
y 284 user/testbin/tictac/tictac.c marker = board[x][y];
y 292 user/testbin/tictac/tictac.c return(win_row(x, marker) || win_column(y, marker) ||
y 293 user/testbin/tictac/tictac.c win_diag_left(x, y, marker) || win_diag_right(x, y, marker));
y 300 user/testbin/tictac/tictac.c win_column(int y, int marker)
y 304 user/testbin/tictac/tictac.c if (board[i][y] != marker)
y 320 user/testbin/tictac/tictac.c win_diag_left(int x, int y, int marker)
y 325 user/testbin/tictac/tictac.c if (x != y)
y 335 user/testbin/tictac/tictac.c win_diag_right(int x, int y, int marker)
y 340 user/testbin/tictac/tictac.c if (x + y != DIM - 1)