Home
last modified time | relevance | path

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

/freebsd-12.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-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp477 return get_index(0, coord.x) && get_index(1, coord.y) && in ParseCoordinate()
3747 coord.x = (uint32_t)x; in GetKernelCoordinate()
3748 coord.y = (uint32_t)y; in GetKernelCoordinate()
3749 coord.z = (uint32_t)z; in GetKernelCoordinate()
3821 coord.x, coord.y, coord.z); in SetConditional()
3856 if (coord) in PlaceBreakpointOnKernel()
3918 if (coord) in PlaceBreakpointOnReduction()
4226 m_coord = coord; in SetOptionValue()
4377 m_coord = coord; in SetOptionValue()
4520 RSCoordinate coord{}; in DoExecute() local
[all …]
H A DRenderScriptRuntime.h406 static bool GetKernelCoordinate(lldb_renderscript::RSCoordinate &coord,
536 const lldb_renderscript::RSCoordinate &coord);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/
H A Dopencl-c.h14748 float4 __purefn __ovld read_imagef(read_only image1d_t image, int coord);
14749 int4 __purefn __ovld read_imagei(read_only image1d_t image, int coord);
14750 uint4 __purefn __ovld read_imageui(read_only image1d_t image, int coord);
14761 int4 __purefn __ovld read_imagei(read_only image2d_t image, int2 coord);
14774 int4 __purefn __ovld read_imagei(read_only image3d_t image, int4 coord);
14795 half4 __purefn __ovld read_imageh(read_only image1d_t image, int coord);
14796 half4 __purefn __ovld read_imageh(read_only image2d_t image, int2 coord);
14797 half4 __purefn __ovld read_imageh(read_only image3d_t image, int4 coord);
14807 int4 __purefn __ovld read_imagei(read_write image1d_t image, int coord);
14819 int4 __purefn __ovld read_imagei(read_write image2d_t image, int2 coord);
[all …]
/freebsd-12.1/contrib/ofed/opensm/include/opensm/
H A Dosm_mesh.h62 int *coord; /* mesh coordinates of switch */ member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp606 COORD coord = screen_buffer_info.dwCursorPosition; in PrintAsync() local
607 coord.X -= strlen(prompt); in PrintAsync()
608 if (coord.X < 0) in PrintAsync()
609 coord.X = 0; in PrintAsync()
610 SetConsoleCursorPosition(console_handle, coord); in PrintAsync()
/freebsd-12.1/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c127258 #define DCOORD(coord) ( \
127260 ((double)coord.f) : \
127261 ((double)coord.i) \
127983 double coord = DCOORD(cell.aCoord[p->iCoord]);
127989 case RTREE_LE: res = (coord<=p->rValue); break;
127990 case RTREE_LT: res = (coord<p->rValue); break;
127991 case RTREE_GE: res = (coord>=p->rValue); break;
127992 case RTREE_GT: res = (coord>p->rValue); break;
127993 case RTREE_EQ: res = (coord==p->rValue); break;
129531 float coord = (float)(DCOORD(aCell[ii].aCoord[iDim*2+1]) -
[all …]
/freebsd-12.1/contrib/sqlite3/
H A Dsqlite3.c187484 # define DCOORD(coord) ((RtreeDValue)coord.i)
187486 # define DCOORD(coord) ( \
187488 ((double)coord.f) : \
187489 ((double)coord.i) \
190063 RtreeDValue coord = (DCOORD(aCell[ii].aCoord[iDim*2+1]) -
190065 aDistance[ii] += (coord-aCenterCoord[iDim])*(coord-aCenterCoord[iDim]);