HomeSort by: relevance | last modified time | path
    Searched refs:typ (Results 1 - 25 of 213) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/games/hack/
def.rm.h 84 #define IS_WALL(typ) ((typ) <= VWALL)
85 #define IS_ROCK(typ) ((typ) < POOL) /* absolutely nonaccessible */
86 #define ACCESSIBLE(typ) ((typ) >= DOOR) /* good position */
87 #define IS_ROOM(typ) ((typ) >= ROOM) /* ROOM or STAIRS */
88 #define ZAP_POS(typ) ((typ) > DOOR
109 unsigned typ:5; member in struct:rm
    [all...]
hack.search.c 83 for (lx = u.ux; (num = levl[lx - 1][u.uy].typ) && num != CORR; lx--);
84 for (hx = u.ux; (num = levl[hx + 1][u.uy].typ) && num != CORR; hx++);
85 for (ly = u.uy; (num = levl[u.ux][ly - 1].typ) && num != CORR; ly--);
86 for (hy = u.uy; (num = levl[u.ux][hy + 1].typ) && num != CORR; hy++);
90 if (levl[zx][zy].typ == SDOOR) {
91 levl[zx][zy].typ = DOOR;
94 } else if (levl[zx][zy].typ == SCORR) {
95 levl[zx][zy].typ = CORR;
131 if (levl[x][y].typ == SDOOR) {
134 levl[x][y].typ = DOOR
    [all...]
hack.vault.c 137 crm->typ = egd->fakecorr[fcbeg].ftyp;
138 if (!crm->typ)
196 if (levl[x][y].typ == CORR)
211 while (levl[x][y].typ == ROOM) {
260 egd->fakecorr[0].ftyp = levl[x][y].typ;
261 levl[x][y].typ = DOOR;
269 int x, y, dx, dy, gx, gy, nx, ny, typ; local
291 if (!IS_WALL(typ = (crm = &levl[nx][ny])->typ) && typ != POOL)
    [all...]
hack.mklev.c 146 levl[xdnstair][ydnstair].typ = STAIRS;
156 levl[xupstair][yupstair].typ = STAIRS;
396 if (levl[x][y].typ == DOOR || levl[x][y].typ == SDOOR)
411 if (levl[x - 1][y].typ == DOOR || levl[x + 1][y].typ == DOOR ||
412 levl[x][y + 1].typ == DOOR || levl[x][y - 1].typ == DOOR ||
413 levl[x - 1][y].typ == SDOOR || levl[x + 1][y].typ == SDOOR |
    [all...]
hack.mkmaze.c 90 levl[x][y].typ = (x % 2 && y % 2) ? 0 : HWALL;
98 levl[x][y].typ =
124 switch (levl[x][y].typ) {
155 levl[xupstair][yupstair].typ = STAIRS;
164 levl[x][y].typ = ROOM;
174 levl[x][y].typ = ROOM;
204 if (x < 3 || y < 3 || x > COLNO - 3 || y > ROWNO - 3 || levl[x][y].typ != 0)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
pretty-print-call-by-hand.py 29 typ = val.type
30 if typ.code == gdb.TYPE_CODE_REF:
31 typ = typ.target()
32 if str(typ) == "struct mytype":
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
pretty-print-call-by-hand.py 29 typ = val.type
30 if typ.code == gdb.TYPE_CODE_REF:
31 typ = typ.target()
32 if str(typ) == "struct mytype":
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 68 static const char *conv(ReportType typ) {
69 if (typ == ReportTypeRace)
71 else if (typ == ReportTypeVptrRace)
73 else if (typ == ReportTypeUseAfterFree)
75 else if (typ == ReportTypeVptrUseAfterFree)
77 else if (typ == ReportTypeExternalRace)
79 else if (typ == ReportTypeThreadLeak)
81 else if (typ == ReportTypeMutexDestroyLocked)
83 else if (typ == ReportTypeMutexDoubleLock)
85 else if (typ == ReportTypeMutexInvalidAccess
    [all...]
tsan_suppressions.h 33 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
34 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
tsan_debugging.cc 22 static const char *ReportTypeDescription(ReportType typ) {
23 if (typ == ReportTypeRace) return "data-race";
24 if (typ == ReportTypeVptrRace) return "data-race-vptr";
25 if (typ == ReportTypeUseAfterFree) return "heap-use-after-free";
26 if (typ == ReportTypeVptrUseAfterFree) return "heap-use-after-free-vptr";
27 if (typ == ReportTypeExternalRace) return "external-race";
28 if (typ == ReportTypeThreadLeak) return "thread-leak";
29 if (typ == ReportTypeMutexDestroyLocked) return "locked-mutex-destroy";
30 if (typ == ReportTypeMutexDoubleLock) return "mutex-double-lock";
31 if (typ == ReportTypeMutexInvalidAccess) return "mutex-invalid-access"
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_suppressions.h 32 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
33 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
tsan_rtl_access.cpp 20 AccessType typ) {
32 ev->is_read = !!(typ & kAccessRead);
33 ev->is_atomic = !!(typ & kAccessAtomic);
45 evex->is_read = !!(typ & kAccessRead);
46 evex->is_atomic = !!(typ & kAccessAtomic);
58 AccessType typ) {
68 ev->is_read = !!(typ & kAccessRead);
69 ev->is_free = !!(typ & kAccessFree);
79 AccessType typ) {
80 if (LIKELY(TryTraceMemoryAccessRange(thr, pc, addr, size, typ)))
395 AccessType typ; local
605 const AccessType typ = kAccessWrite | kAccessFree | kAccessSlotLocked | local
667 const AccessType typ = local
    [all...]
tsan_shadow.h 61 Shadow(FastState state, u32 addr, u32 size, AccessType typ) {
67 raw_ |= (!!(typ & kAccessAtomic) << kIsAtomicShift) |
68 (!!(typ & kAccessRead) << kIsReadShift) |
72 DCHECK_EQ(part_.is_read_, !!(typ & kAccessRead));
84 void GetAccess(uptr *addr, uptr *size, AccessType *typ) const {
91 if (typ) {
92 *typ = part_.is_read_ ? kAccessRead : kAccessWrite;
94 *typ |= kAccessAtomic;
96 *typ |= kAccessFree;
101 bool IsBothReadsOrAtomic(AccessType typ) const
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_suppressions.h 32 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
33 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
  /src/sys/external/gpl2/dts/dist/include/dt-bindings/pinctrl/
sppctl.h 28 * pin# (8bit), typ (8bit), function (8bit), flag (8bit)
30 #define SPPCTL_IOPAD(pin, typ, fun, flg) (((pin) << 24) | ((typ) << 16) | \
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.dap/
children.py 35 typ = val.type
36 if typ.code == gdb.TYPE_CODE_PTR:
lazy-string.py 31 typ = val.type
32 if typ.code == gdb.TYPE_CODE_PTR:
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
children.py 35 typ = val.type
36 if typ.code == gdb.TYPE_CODE_PTR:
lazy-string.py 31 typ = val.type
32 if typ.code == gdb.TYPE_CODE_PTR:
  /src/games/warp/
object.c 21 make_object(char typ, char img, int px, int py, int vx, int vy, long energ,
37 obj->type = typ;
50 if (typ != Torp && typ != Web) {
  /src/external/mpl/bind/dist/lib/dns/include/dns/
dsdigest.h 66 dns_dsdigest_format(dns_dsdigest_t typ, char *cp, unsigned int size);
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
dsdigest.h 67 dns_dsdigest_format(dns_dsdigest_t typ, char *cp, unsigned int size);
  /src/sys/arch/amigappc/include/
bus_defs.h 78 #define bsr(what, typ) \
79 typ (what)(bus_space_handle_t, bus_addr_t)
81 #define bsw(what, typ) \
84 #define bsrm(what, typ) \
85 void (what)(bus_space_handle_t, bus_size_t, typ *, bus_size_t)
87 #define bswm(what, typ) \
88 void (what)(bus_space_handle_t, bus_size_t, const typ *, bus_size_t)
90 #define bssr(what, typ) \
93 #define bscr(what, typ) \
  /src/external/gpl3/binutils/dist/gas/config/
xtensa-relax.h 119 OpType typ; /* CONSTANT: op_data is a constant. member in struct:precondition
131 OpType typ; member in struct:build_op
153 InstrType typ; member in struct:build_instr
  /src/external/gpl3/binutils.old/dist/gas/config/
xtensa-relax.h 119 OpType typ; /* CONSTANT: op_data is a constant. member in struct:precondition
131 OpType typ; member in struct:build_op
153 InstrType typ; member in struct:build_instr

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 9