Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/ofed/opensm/opensm/
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-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
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()
3590 bool RenderScriptRuntime::GetKernelCoordinate(RSCoordinate &coord, in GetKernelCoordinate() argument
3642 coord.x = (uint32_t)x; in GetKernelCoordinate()
3643 coord.y = (uint32_t)y; in GetKernelCoordinate()
3644 coord.z = (uint32_t)z; in GetKernelCoordinate()
3710 const RSCoordinate &coord) { in SetConditional() argument
3712 coord.x, coord.y, coord.z); in SetConditional()
3716 RSCoordinate *baton = new RSCoordinate(coord); in SetConditional()
[all …]
DRenderScriptRuntime.h417 static bool GetKernelCoordinate(lldb_renderscript::RSCoordinate &coord,
548 const lldb_renderscript::RSCoordinate &coord);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
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-12-stable/contrib/llvm-project/clang/lib/Headers/
Dopencl-c.h14218 float4 __purefn __ovld read_imagef(read_only image2d_t image, sampler_t sampler, int2 coord);
14219 float4 __purefn __ovld read_imagef(read_only image2d_t image, sampler_t sampler, float2 coord);
14221 int4 __purefn __ovld read_imagei(read_only image2d_t image, sampler_t sampler, int2 coord);
14222 int4 __purefn __ovld read_imagei(read_only image2d_t image, sampler_t sampler, float2 coord);
14223 uint4 __purefn __ovld read_imageui(read_only image2d_t image, sampler_t sampler, int2 coord);
14224 uint4 __purefn __ovld read_imageui(read_only image2d_t image, sampler_t sampler, float2 coord);
14226 float4 __purefn __ovld read_imagef(read_only image3d_t image, sampler_t sampler, int4 coord);
14227 float4 __purefn __ovld read_imagef(read_only image3d_t image, sampler_t sampler, float4 coord);
14229 int4 __purefn __ovld read_imagei(read_only image3d_t image, sampler_t sampler, int4 coord);
14230 int4 __purefn __ovld read_imagei(read_only image3d_t image, sampler_t sampler, float4 coord);
[all …]
/freebsd-12-stable/contrib/ofed/opensm/include/opensm/
Dosm_mesh.h62 int *coord; /* mesh coordinates of switch */ member
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
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-stable/contrib/sqlite3/
Dsqlite3.c206747 # define DCOORD(coord) ((RtreeDValue)coord.i)
206749 # define DCOORD(coord) ( \
206751 ((double)coord.f) : \
206752 ((double)coord.i) \