Home
last modified time | relevance | path

Searched refs:coord (Results 1 – 21 of 21) sorted by relevance

/openbsd-src/games/hack/
H A Dhack.track.c68 coord utrack[UTSZ];
89 coord *
93 coord tc; in gettrack()
H A Ddef.eshk.h77 coord shk; /* usual position shopkeeper */
78 coord shd; /* position shop door */
H A Dhack.Decl.c75 coord doors[DOORMAX];
101 coord bhitpos;
H A Dhack.h76 } coord; typedef
195 extern coord bhitpos; /* place where thrown weapon falls to the ground */
280 coord getpos(int, char *);
415 coord enexto(xchar, xchar);
431 coord mazexy(void);
456 int mfndpos(struct monst *, coord pos[9], int info[9], int);
644 coord *gettrack(int, int);
H A Dhack.mkmaze.c80 coord mm; in makemaz()
194 coord
197 coord mm; in mazexy()
H A Dhack.do_name.c74 coord
80 coord cc; in getpos()
118 coord cc; in do_mname()
H A Dhack.makemon.c152 coord mm; in makemon()
165 coord
169 coord foo[15], *tfoo; in enexto()
H A Dhack.mklev.c93 static coord finddpos(int, int, int, int);
358 static coord
361 coord ff; in finddpos()
538 coord cc,tt; in join()
695 coord dd; in makeniche()
776 coord mm; in mktrap()
798 extern coord mazexy(); in mktrap()
799 coord mm; in mktrap()
H A Ddef.mkroom.h74 extern coord doors[DOORMAX];
H A Ddef.monst.h72 coord mtrack[MTSZ]; /* monster track */
H A Dhack.mon.c308 coord poss[9]; in m_move()
389 coord *cp; in m_move()
543 mfndpos(struct monst *mon, coord poss[9],int info[9], int flag) in mfndpos()
897 coord mm; in mnexto()
H A Dhack.dog.c198 coord poss[9]; in dog_move()
335 coord *cp; in dog_move()
H A Dhack.trap.c363 coord cc; in tele()
H A Dhack.apply.c316 static coord dig_pos;
H A Dhack.pri.c189 static coord tc[COLNO]; /* but watch reflecting beams! */ in Tmp_at()
H A Dhack.shk.c944 coord poss[9]; in shk_move()
/openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVInstrInfo.td254 (ins TYPE:$resType, ID:$image, ID:$coord, ID:$sample),
255 "$res = OpImageTexelPointer $resType $image $coord $sample">;
304 (ins TYPE:$type, ID:$sampledImage, ID:$coord, variable_ops),
305 "$res = OpImageSampleImplicitLod $type $sampledImage $coord">;
311 (ins TYPE:$type, ID:$sampledImage, ID:$coord, ID:$dref, variable_ops),
312 "$res = OpImageSampleDrefImplicitLod $type $sampledImage $dref $coord">;
318 (ins TYPE:$type, ID:$sampledImage, ID:$coord, variable_ops),
319 "$res = OpImageSampleProjImplicitLod $type $sampledImage $coord">;
325 (ins TYPE:$type, ID:$sampledImage, ID:$coord, ID:$dref, variable_ops),
326 "$res = OpImageSampleProjDrefImplicitLod $type $sampledImage $dref $coord">;
[all …]
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandler.cpp626 COORD coord = screen_buffer_info.dwCursorPosition; in PrintAsync() local
627 coord.X -= strlen(prompt); in PrintAsync()
628 if (coord.X < 0) in PrintAsync()
629 coord.X = 0; in PrintAsync()
630 SetConsoleCursorPosition(console_handle, coord); in PrintAsync()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp440 bool ParseCoordinate(llvm::StringRef coord_s, RSCoordinate &coord) { in ParseCoordinate() argument
464 return get_index(0, coord.x) && get_index(1, coord.y) && in ParseCoordinate()
465 get_index(2, coord.z); in ParseCoordinate()
3577 bool RenderScriptRuntime::GetKernelCoordinate(RSCoordinate &coord, in GetKernelCoordinate() argument
3629 coord.x = (uint32_t)x; in GetKernelCoordinate()
3630 coord.y = (uint32_t)y; in GetKernelCoordinate()
3631 coord.z = (uint32_t)z; in GetKernelCoordinate()
3696 const RSCoordinate &coord) { in SetConditional() argument
3698 coord.x, coord.y, coord.z); in SetConditional()
3702 RSCoordinate *baton = new RSCoordinate(coord); in SetConditional()
[all …]
H A DRenderScriptRuntime.h416 static bool GetKernelCoordinate(lldb_renderscript::RSCoordinate &coord,
547 const lldb_renderscript::RSCoordinate &coord);
/openbsd-src/lib/libcurses/tinfo/
H A Dlib_win32con.c533 COORD coord; in _nc_console_set_scrollback() local
552 coord = info->dwSize; in _nc_console_set_scrollback()
577 coord.X = (SHORT) wide; in _nc_console_set_scrollback()
578 coord.Y = (SHORT) high; in _nc_console_set_scrollback()
590 T(("... coord %d,%d", coord.Y, coord.X)); in _nc_console_set_scrollback()
594 SetConsoleScreenBufferSize(WINCONSOLE.hdl, coord); /* dwSize */ in _nc_console_set_scrollback()