Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/ofed/opensm/opensm/
H A Dosm_mesh.c1168 if (node->coord[j] > 0) in reorder_node_links()
1228 if (!s->node->coord) { in make_coord()
1264 int coord = s->node->coord[k]; in make_coord() local
1270 if (ltmag(coord, s1->node->coord[k])) { in make_coord()
1271 s1->node->coord[k] = coord; in make_coord()
1322 max[i] = s->node->coord[i]; in measure_geometry()
1324 min[i] = s->node->coord[i]; in measure_geometry()
1390 ret = s1->node->coord[j] - s2->node->coord[j]; in compare_switches()
1527 if (node->coord) in osm_mesh_node_delete()
1528 free(node->coord); in osm_mesh_node_delete()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp627 COORD coord = screen_buffer_info.dwCursorPosition; in PrintAsync() local
628 coord.X -= strlen(prompt); in PrintAsync()
629 if (coord.X < 0) in PrintAsync()
630 coord.X = 0; in PrintAsync()
631 SetConsoleCursorPosition(console_handle, coord); in PrintAsync()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp464 return get_index(0, coord.x) && get_index(1, coord.y) && in ParseCoordinate()
3642 coord.x = (uint32_t)x; in GetKernelCoordinate()
3643 coord.y = (uint32_t)y; in GetKernelCoordinate()
3644 coord.z = (uint32_t)z; in GetKernelCoordinate()
3712 coord.x, coord.y, coord.z); in SetConditional()
3747 if (coord) in PlaceBreakpointOnKernel()
3809 if (coord) in PlaceBreakpointOnReduction()
4113 m_coord = coord; in SetOptionValue()
4261 m_coord = coord; in SetOptionValue()
4400 RSCoordinate coord{}; in DoExecute() local
[all …]
H A DRenderScriptRuntime.h417 static bool GetKernelCoordinate(lldb_renderscript::RSCoordinate &coord,
548 const lldb_renderscript::RSCoordinate &coord);
/freebsd-13.1/contrib/ofed/opensm/include/opensm/
H A Dosm_mesh.h62 int *coord; /* mesh coordinates of switch */ member
/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A Dopencl-c.h14345 float4 __purefn __ovld read_imagef(read_only image1d_t image, int coord);
14346 int4 __purefn __ovld read_imagei(read_only image1d_t image, int coord);
14347 uint4 __purefn __ovld read_imageui(read_only image1d_t image, int coord);
14358 int4 __purefn __ovld read_imagei(read_only image2d_t image, int2 coord);
14371 int4 __purefn __ovld read_imagei(read_only image3d_t image, int4 coord);
14392 half4 __purefn __ovld read_imageh(read_only image1d_t image, int coord);
14393 half4 __purefn __ovld read_imageh(read_only image2d_t image, int2 coord);
14394 half4 __purefn __ovld read_imageh(read_only image3d_t image, int4 coord);
14404 int4 __purefn __ovld read_imagei(read_write image1d_t image, int coord);
14416 int4 __purefn __ovld read_imagei(read_write image2d_t image, int2 coord);
[all …]
/freebsd-13.1/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c933 COORD coord; in set_scrollback() local
952 coord = info->dwSize; in set_scrollback()
977 coord.X = (SHORT) wide; in set_scrollback()
978 coord.Y = (SHORT) high; in set_scrollback()
990 T(("... coord %d,%d", coord.Y, coord.X)); in set_scrollback()
994 SetConsoleScreenBufferSize(CON.hdl, coord); /* dwSize */ in set_scrollback()
/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.c194262 # define DCOORD(coord) ((RtreeDValue)coord.i)
194264 # define DCOORD(coord) ( \
194266 ((double)coord.f) : \
194267 ((double)coord.i) \
196872 RtreeDValue coord = (DCOORD(aCell[ii].aCoord[iDim*2+1]) -
196874 aDistance[ii] += (coord-aCenterCoord[iDim])*(coord-aCenterCoord[iDim]);