HomeSort by: relevance | last modified time | path
    Searched defs:room (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
allocsa.c 48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
allocsa.c 48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
  /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
allocsa.c 48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
  /src/external/gpl2/xcvs/dist/lib/
allocsa.c 53 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
57 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
glob.c 1158 char room [offsetof (struct dirent64, d_name[0])
1157 char room [offsetof (struct dirent64, d_name[0]) member in union:__anon9590
  /src/games/hack/
hack.zap.c 267 * until we pierce a wall from ROOM: piece wall and
273 struct rm *room; local
307 room = &levl[zx][zy];
313 if (room->typ == HWALL ||
314 room->typ == VWALL) {
315 room->typ = ROOM;
318 } else if (room->typ == HWALL || room->typ == VWALL ||
319 room->typ == SDOOR || room->typ == LDOOR)
    [all...]
hack.pri.c 275 struct rm *room; local
306 if ((room = &levl[x][y])->new) {
307 room->new = 0;
308 at(x, y, room->scrsym);
309 } else if (room->seen)
310 at(x, y, room->scrsym);
322 struct rm *room; local
342 if ((room = &levl[x][y])->new) {
343 room->new = 0;
344 at(x, y, room->scrsym)
392 struct rm *room; local
435 struct rm *room; local
501 struct rm *room; local
517 struct rm *room; local
686 struct rm *room; local
    [all...]
  /src/external/bsd/wpa/dist/src/utils/
edit.c 431 int room, plen, add_space; local
469 room = sizeof(cmdbuf) - 1 - cmdbuf_len;
470 if (room < len)
471 len = room;
472 add_space = count == 1 && len < room;
  /src/games/battlestar/
extern.h 210 /* Number of times room description shown. */
241 struct room { struct
255 extern struct room dayfile[];
256 extern struct room nightfile[];
257 extern struct room *location;
324 short room; member in struct:objs
383 void whichway(struct room);
  /src/external/gpl3/gcc/dist/gcc/
opts.cc 1544 unsigned int remaining, room, len; local
1550 room = columns - 3 - MAX (col_width, item_width);
1551 if (room > columns)
1552 room = 0;
1555 if (room < len)
1561 if (i >= room && len != remaining)
  /src/external/gpl3/gcc/dist/libcpp/
files.cc 1786 size_t len, count = 0, room = 9; local
1796 dir->name_map = XNEWVEC (const char *, room);
1810 if (count + 2 > room)
1812 room += 8;
1813 dir->name_map = XRESIZEVEC (const char *, dir->name_map, room);
lex.cc 2470 /* There is insufficient room in the buffer. Copy what we can,
2472 size_t room = BUFF_ROOM (last); local
2473 memcpy (BUFF_FRONT (last), base, room);
2474 BUFF_FRONT (last) += room;
2475 base += room;
2476 len -= room;
2477 accum += room;
4726 /* Include room for a possible space and the terminating nul. */
2471 size_t room = BUFF_ROOM (last); local
  /src/external/gpl3/gcc.old/dist/gcc/
opts.cc 1474 unsigned int remaining, room, len; local
1480 room = columns - 3 - MAX (col_width, item_width);
1481 if (room > columns)
1482 room = 0;
1485 if (room < len)
1491 if (i >= room && len != remaining)
  /src/external/gpl3/gcc.old/dist/libcpp/
files.cc 1764 size_t len, count = 0, room = 9; local
1774 dir->name_map = XNEWVEC (const char *, room);
1788 if (count + 2 > room)
1790 room += 8;
1791 dir->name_map = XRESIZEVEC (const char *, dir->name_map, room);
lex.cc 2207 /* There is insufficient room in the buffer. Copy what we can,
2209 size_t room = BUFF_ROOM (last); local
2210 memcpy (BUFF_FRONT (last), base, room);
2211 BUFF_FRONT (last) += room;
2212 base += room;
2213 len -= room;
2214 accum += room;
4406 /* Include room for a possible space and the terminating nul. */
2208 size_t room = BUFF_ROOM (last); local
  /src/games/rogue/
rogue.h 233 short d_enchant; /* room char when detect_monster */
291 typedef struct rm room; typedef in typeref:struct:rm
340 extern room rooms[];
  /src/external/zlib/pigz/dist/
pigz.c 1394 size_t room; local
1397 room = out->size - out->len;
1398 if (room == 0) {
1400 room = out->size - out->len;
1403 strm->avail_out = room < UINT_MAX ? (unsigned)room : UINT_MAX;
  /src/external/gpl3/binutils/dist/bfd/
vms-alpha.c 408 /* Be sure there is room for a new element. */
412 /* Allocate room for a new element and return its address. */
3366 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE);
3369 if (PRIV (file_pos) < VMS_BLOCK_SIZE && room > 2)
3370 room -= 2;
3371 if (room < eisd->u.eisd.eisdsize + EISD__K_LENEND)
3958 /* Not enough room in this record. Close it and open a new one. */
3361 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE); local
  /src/external/gpl3/binutils.old/dist/bfd/
vms-alpha.c 408 /* Be sure there is room for a new element. */
412 /* Allocate room for a new element and return its address. */
3353 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE);
3356 if (PRIV (file_pos) < VMS_BLOCK_SIZE && room > 2)
3357 room -= 2;
3358 if (room < eisd->u.eisd.eisdsize + EISD__K_LENEND)
3945 /* Not enough room in this record. Close it and open a new one. */
3348 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE); local
  /src/external/gpl3/gdb/dist/bfd/
vms-alpha.c 408 /* Be sure there is room for a new element. */
412 /* Allocate room for a new element and return its address. */
3353 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE);
3356 if (PRIV (file_pos) < VMS_BLOCK_SIZE && room > 2)
3357 room -= 2;
3358 if (room < eisd->u.eisd.eisdsize + EISD__K_LENEND)
3945 /* Not enough room in this record. Close it and open a new one. */
3348 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE); local
  /src/external/gpl3/gdb.old/dist/bfd/
vms-alpha.c 408 /* Be sure there is room for a new element. */
412 /* Allocate room for a new element and return its address. */
3359 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE);
3362 if (PRIV (file_pos) < VMS_BLOCK_SIZE && room > 2)
3363 room -= 2;
3364 if (room < eisd->u.eisd.eisdsize + EISD__K_LENEND)
3951 /* Not enough room in this record. Close it and open a new one. */
3354 file_ptr room = VMS_BLOCK_SIZE - (PRIV (file_pos) % VMS_BLOCK_SIZE); local
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb.c 1197 /** #dirty_list room: Array size - \#dirty pages visible to this txn.
1199 * dirty/spilled pages. Thus commit(nested txn) has room to merge
3317 /* Room for loose pages + temp IDL with same */
4127 * instead unmap existing pages to make room for the new map.
4257 * @param[out] fname Resulting filename, with room for a suffix if necessary.
6714 /* Cursor is positioned, check for room in the dirty list */
7030 nflags &= ~MDB_APPEND; /* sub-page may need room to grow */
7035 /* There is room already in this leaf page. */
7372 * <li>MDB_PAGE_FULL - there is insufficient room in the page. This error
7383 ssize_t room; local
    [all...]

Completed in 91 milliseconds