Home
last modified time | relevance | path

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

/freebsd/contrib/tzcode/
H A Dtzselect.ksh50 coord=
142 coord=$OPTARG;;
258 coord = substr(ARGV[1], 2)
280 function convert_coord(coord, deg, minute, ilen, sign, sec) {
281 if (coord ~ /^[-+]?[0-9]?[0-9][0-9][0-9][0-9][0-9][0-9]([^0-9]|$)/) {
282 degminsec = coord
288 } else if (coord ~ /^[-+]?[0-9]?[0-9][0-9][0-9][0-9]([^0-9]|$)/) {
289 degmin = coord
294 deg = coord
297 function convert_latitude(coord) {
[all...]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_mesh.c1168 if (node->coord[j] > 0) in reorder_node_links()
1227 s->node->coord = calloc(dimension, sizeof(int)); in make_coord()
1228 if (!s->node->coord) { in make_coord()
1236 s->node->coord[i] = (sw == seed) ? 0 : LARGE; in make_coord()
1254 if (s->node->coord[0] == LARGE) in make_coord()
1264 int coord = s->node->coord[k]; in make_coord() local
1268 coord += (axis & 1)? -1 : +1; in make_coord()
1270 if (ltmag(coord, s1->node->coord[k])) { in make_coord()
1271 s1->node->coord[k] = coord; in make_coord()
1319 if (s->node->coord[i] == LARGE) in measure_geometry()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVInstrInfo.td278 (ins TYPE:$resType, ID:$image, ID:$coord, ID:$sample),
279 "$res = OpImageTexelPointer $resType $image $coord $sample">;
337 (ins TYPE:$type, ID:$sampledImage, ID:$coord, variable_ops),
338 "$res = OpImageSampleImplicitLod $type $sampledImage $coord">;
344 (ins TYPE:$type, ID:$sampledImage, ID:$coord, ID:$dref, variable_ops),
345 "$res = OpImageSampleDrefImplicitLod $type $sampledImage $dref $coord">;
351 (ins TYPE:$type, ID:$sampledImage, ID:$coord, variable_ops),
352 "$res = OpImageSampleProjImplicitLod $type $sampledImage $coord">;
358 (ins TYPE:$type, ID:$sampledImage, ID:$coord, ID:$dref, variable_ops),
359 "$res = OpImageSampleProjDrefImplicitLod $type $sampledImage $dref $coord">;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp650 COORD coord = screen_buffer_info.dwCursorPosition;
651 coord.X -= strlen(prompt);
652 if (coord.X < 0)
653 coord.X = 0;
654 SetConsoleCursorPosition(console_handle, coord);
626 COORD coord = screen_buffer_info.dwCursorPosition; PrintAsync() local
/freebsd/contrib/ncurses/ncurses/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()
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_mesh.h62 int *coord; /* mesh coordinates of switch */ member
/freebsd/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c943 COORD coord; in set_scrollback() local
962 coord = info->dwSize; in set_scrollback()
987 coord.X = (SHORT) wide; in set_scrollback()
988 coord.Y = (SHORT) high; in set_scrollback()
1000 T(("... coord %d,%d", coord.Y, coord.X)); in set_scrollback()
1004 SetConsoleScreenBufferSize(CON.hdl, coord); /* dwSize */ in set_scrollback()
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppkey_ecc.txt3297 Title=zero x-coord regression tests
/freebsd/contrib/sqlite3/
H A Dsqlite3.c210635 # define DCOORD(coord) ((RtreeDValue)coord.i)
210637 # define DCOORD(coord) ( \
210639 ((double)coord.f) : \
210640 ((double)coord.i) \