m 267 gtags-cscope/mouse.c static MOUSE m; m 352 gtags-cscope/mouse.c m.button = 1; m 361 gtags-cscope/mouse.c m.x1 = x/uw_hs; /* pixel/horizontal_spacing */ m 362 gtags-cscope/mouse.c m.y1 = y/uw_vs; /* pixel/vertical_spacing */ m 365 gtags-cscope/mouse.c m.percent = m.x2 = m.y2 = -1; m 374 gtags-cscope/mouse.c if ((m.button = mygetch()) == '0') { /* if scrollbar */ m 375 gtags-cscope/mouse.c m.percent = getpercent(); m 378 gtags-cscope/mouse.c m.x1 = getcoordinate(); m 379 gtags-cscope/mouse.c m.y1 = getcoordinate(); m 380 gtags-cscope/mouse.c m.x2 = m.y2 = -1; m 385 gtags-cscope/mouse.c m.button = mygetch(); m 386 gtags-cscope/mouse.c m.x1 = getcoordinate(); m 387 gtags-cscope/mouse.c m.y1 = getcoordinate(); m 388 gtags-cscope/mouse.c m.x2 = getcoordinate(); m 389 gtags-cscope/mouse.c m.y2 = getcoordinate(); m 397 gtags-cscope/mouse.c return(&m); m 144 htags-refkit/htags_path2url.c struct map *m; m 154 htags-refkit/htags_path2url.c if ((m = (struct map *)malloc(sizeof(struct map) * n)) == NULL) m 162 htags-refkit/htags_path2url.c m[i].name = p; m 168 htags-refkit/htags_path2url.c m[i].path = p; m 178 htags-refkit/htags_path2url.c qsort(m, n, sizeof(struct map), cmp); m 179 htags-refkit/htags_path2url.c *map = m; m 183 htags-refkit/htags_path2url.c free(m); m 172 libdb/bt_close.c BTMETA m; m 179 libdb/bt_close.c m.magic = BTREEMAGIC; m 180 libdb/bt_close.c m.version = BTREEVERSION; m 181 libdb/bt_close.c m.psize = t->bt_psize; m 182 libdb/bt_close.c m.free = t->bt_free; m 183 libdb/bt_close.c m.nrecs = t->bt_nrecs; m 184 libdb/bt_close.c m.flags = F_ISSET(t, SAVEMETA); m 186 libdb/bt_close.c memmove(p, &m, sizeof(BTMETA)); m 105 libdb/bt_debug.c BTMETA *m; m 108 libdb/bt_debug.c m = (BTMETA *)h; m 109 libdb/bt_debug.c (void)fprintf(stderr, "magic %lx\n", (long unsigned int)m->magic); m 110 libdb/bt_debug.c (void)fprintf(stderr, "version %lu\n", (long unsigned int)m->version); m 111 libdb/bt_debug.c (void)fprintf(stderr, "psize %lu\n", (long unsigned int)m->psize); m 112 libdb/bt_debug.c (void)fprintf(stderr, "free %lu\n", (long unsigned int)m->free); m 113 libdb/bt_debug.c (void)fprintf(stderr, "nrecs %lu\n", (long unsigned int)m->nrecs); m 114 libdb/bt_debug.c (void)fprintf(stderr, "flags %lu", (long unsigned int)m->flags); m 117 libdb/bt_debug.c if (m->flags & flag) { \ m 121 libdb/bt_debug.c if (m->flags) { m 109 libdb/bt_open.c BTMETA m; m 236 libdb/bt_open.c if ((nr = read(t->bt_fd, &m, sizeof(BTMETA))) < 0) m 249 libdb/bt_open.c if (m.magic == BTREEMAGIC) m 253 libdb/bt_open.c M_32_SWAP(m.magic); m 254 libdb/bt_open.c M_32_SWAP(m.version); m 255 libdb/bt_open.c M_32_SWAP(m.psize); m 256 libdb/bt_open.c M_32_SWAP(m.free); m 257 libdb/bt_open.c M_32_SWAP(m.nrecs); m 258 libdb/bt_open.c M_32_SWAP(m.flags); m 260 libdb/bt_open.c if (m.magic != BTREEMAGIC || m.version != BTREEVERSION) m 262 libdb/bt_open.c if (m.psize < MINPSIZE || m.psize > MAX_PAGE_OFFSET + 1 || m 263 libdb/bt_open.c m.psize & (sizeof(indx_t) - 1)) m 265 libdb/bt_open.c if (m.flags & ~SAVEMETA) m 267 libdb/bt_open.c b.psize = m.psize; m 268 libdb/bt_open.c F_SET(t, m.flags); m 269 libdb/bt_open.c t->bt_free = m.free; m 270 libdb/bt_open.c t->bt_nrecs = m.nrecs; m 213 libdb/compat.h #define S_ISDIR(m) ((m & 0170000) == 0040000) m 215 libdb/compat.h #define S_ISCHR(m) ((m & 0170000) == 0020000) m 217 libdb/compat.h #define S_ISBLK(m) ((m & 0170000) == 0060000) m 219 libdb/compat.h #define S_ISREG(m) ((m & 0170000) == 0100000) m 221 libdb/compat.h #define S_ISFIFO(m) ((m & 0170000) == 0010000)