Home
last modified time | relevance | path

Searched refs:vcount (Results 51 – 75 of 1085) sorted by relevance

12345678910>>...44

/dports/math/igraph/igraph-0.9.5/tests/unit/
H A Digraph_barabasi_aging_game.out3 vcount: 0
8 vcount: 5
13 vcount: 5
30 vcount: 5
43 vcount: 5
62 vcount: 5
H A Digraph_is_chordal.out7 vcount: 0
17 vcount: 1
29 vcount: 6
49 vcount: 6
74 vcount: 6
94 vcount: 6
114 vcount: 6
H A Digraph_sbm_game.out3 vcount: 0
9 vcount: 1
16 vcount: 6
30 vcount: 6
42 vcount: 6
55 vcount: 6
/dports/math/R-cran-igraph/igraph/tests/testthat/
H A Dtest_laplacian.spectral.embedding.R64 expect_that(au_sa$D, equals(D[vcount(g)-1:no+1]))
66 expect_that(as_sa$D, equals(D[vcount(g)-1:no+1]))
117 expect_that(au_sa$D, equals(D[vcount(g)-1:no+1]))
119 expect_that(as_sa$D, equals(D[vcount(g)-1:no+1]))
130 A <- diag(vcount(g)) - D12 %*% g[] %*% D12
169 expect_that(au_sa$D, equals(D[vcount(g)-1:no+1]))
171 expect_that(as_sa$D, equals(D[vcount(g)-1:no+1]))
221 expect_that(au_sa$D, equals(D[vcount(g)-1:no+1]))
224 expect_that(as_sa$D, equals(D[vcount(g)-1:no+1]))
275 expect_that(au_sa$D, equals(D[vcount(g)-1:no+1]))
[all …]
/dports/math/R-cran-igraph/igraph/R/
H A Dcohesive.blocks.R255 res$vcount <- vcount(graph)
331 ", n ", format(si[b], width=nchar(x$vcount), justify="right"))
333 if (x$vcount <= options("width")$width-40 && b != 1) {
334 o <- rep(".", x$vcount)
337 for (i in 1:floor(x$vcount/10)) {
340 if (x$vcount %% 10) { oo <- c(oo, o[(i*10+1):length(o)]) }
412 thisb <- rep(0, vcount(graph))
415 "*Vertices ", vcount(graph), "\r\n ")
437 thisb <- rep(0, vcount(graph))
440 paste("*Vertices", vcount(graph)), thisb)
[all …]
/dports/emulators/mednafen/mednafen/src/nes/boards/
H A Dvrc6.cpp44 static int32 vcount[3]; variable
180 vcount[x]--; in DoSQVHQ()
181 if(vcount[x]<=0) /* Should only be <0 in a few circumstances. */ in DoSQVHQ()
183 vcount[x]=(VPSG[x][0x1]|((VPSG[x][0x2]&15)<<8))+1; in DoSQVHQ()
211 vcount[2]--; in DoSawVHQ()
212 if(vcount[2]<=0) in DoSawVHQ()
214 vcount[2]=(VPSG[2][1]+((VPSG[2][2]&15)<<8)+1)<<1; in DoSawVHQ()
251 SFVAR(vcount[0]), SFVAR(vcount[1]), SFVAR(vcount[2]), in StateAction()
273 memset(vcount,0,sizeof(vcount)); in VRC6_ESI()
/dports/devel/godot/godot-3.2.3-stable/thirdparty/vhacd/inc/
H A DFloatMath.h82 void fm_getAABB(uint32_t vcount,const float *points,uint32_t pstride,float bmin[3],float bmax[3]);
83 void fm_getAABB(uint32_t vcount,const double *points,uint32_t pstride,double bmin[3],double bmax[3…
231 bool fm_computeBestFitPlane(uint32_t vcount, // number of input data points
239 bool fm_computeBestFitPlane(uint32_t vcount, // number of input data points
248 bool fm_computeCentroid(uint32_t vcount, // number of input data points
252 bool fm_computeCentroid(uint32_t vcount, // number of input data points
258 bool fm_computeCentroid(uint32_t vcount, // number of input data points
266 bool fm_computeCentroid(uint32_t vcount, // number of input data points
276 float fm_computeBestFitSphere(uint32_t vcount,const float *points,uint32_t pstride,float center[3]…
502 void fm_computeMeanNormals(uint32_t vcount, // the number of vertices
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/vhacd/inc/
H A DFloatMath.h82 void fm_getAABB(uint32_t vcount,const float *points,uint32_t pstride,float bmin[3],float bmax[3]);
83 void fm_getAABB(uint32_t vcount,const double *points,uint32_t pstride,double bmin[3],double bmax[3…
231 bool fm_computeBestFitPlane(uint32_t vcount, // number of input data points
239 bool fm_computeBestFitPlane(uint32_t vcount, // number of input data points
248 bool fm_computeCentroid(uint32_t vcount, // number of input data points
252 bool fm_computeCentroid(uint32_t vcount, // number of input data points
258 bool fm_computeCentroid(uint32_t vcount, // number of input data points
266 bool fm_computeCentroid(uint32_t vcount, // number of input data points
276 float fm_computeBestFitSphere(uint32_t vcount,const float *points,uint32_t pstride,float center[3]…
502 void fm_computeMeanNormals(uint32_t vcount, // the number of vertices
[all …]
/dports/games/libretro-fceumm/libretro-fceumm-91ccd3b/src/boards/
H A D69.c108 static int32 vcount[3]; variable
122 { &vcount[0], 4 | FCEUSTATE_RLSB, "VCT0" },
123 { &vcount[1], 4 | FCEUSTATE_RLSB, "VCT1" },
124 { &vcount[2], 4 | FCEUSTATE_RLSB, "VCT2" },
175 vcount[x] -= nesincsize; in DoAYSQ()
176 while (vcount[x] <= 0) { in DoAYSQ()
178 vcount[x] += freq; in DoAYSQ()
194 vcount[x]--; in DoAYSQHQ()
195 if (vcount[x] <= 0) { in DoAYSQHQ()
197 vcount[x] = freq; in DoAYSQHQ()
[all …]
H A Dn106.c246 static int32 vcount[8]; variable
261 { &vcount[0], 4 | FCEUSTATE_RLSB, "VCT0" },
262 { &vcount[1], 4 | FCEUSTATE_RLSB, "VCT1" },
263 { &vcount[2], 4 | FCEUSTATE_RLSB, "VCT2" },
264 { &vcount[3], 4 | FCEUSTATE_RLSB, "VCT3" },
265 { &vcount[4], 4 | FCEUSTATE_RLSB, "VCT4" },
307 vco = vcount[P]; in DoNamcoSoundHQ()
323 vcount[P] = vco; in DoNamcoSoundHQ()
339 vco = vcount[P]; in DoNamcoSound()
373 vcount[P] = vco; in DoNamcoSound()
[all …]
/dports/audio/festalon/festalon/src/nes/ext/
H A Day.c24 int32 vcount[3]; member
77 int32 vcount = FMESound->vcount[x]; in DoAYSQHQ() local
85 vcount--; in DoAYSQHQ()
87 if(vcount<=0) in DoAYSQHQ()
91 vcount=freq; in DoAYSQHQ()
94 FMESound->vcount[x] = vcount; in DoAYSQHQ()
/dports/games/libretro-mgba/mgba-6186d45/src/gba/
H A Dvideo.c83 video->vcount = 0; in GBAVideoReset()
86 video->vcount = 0x7E; in GBAVideoReset()
89 video->p->memory.io[REG_VCOUNT >> 1] = video->vcount; in GBAVideoReset()
126 ++video->vcount; in _startHdraw()
127 if (video->vcount == VIDEO_VERTICAL_TOTAL_PIXELS) { in _startHdraw()
128 video->vcount = 0; in _startHdraw()
130 video->p->memory.io[REG_VCOUNT >> 1] = video->vcount; in _startHdraw()
143 switch (video->vcount) { in _startHdraw()
183 if (video->vcount < GBA_VIDEO_VERTICAL_PIXELS) { in _startHblank()
186 if (video->vcount >= 2 && video->vcount < GBA_VIDEO_VERTICAL_PIXELS + 2) { in _startHblank()
[all …]
/dports/misc/adios2/ADIOS2-2.7.1/testing/adios2/engine/ssc/
H A DTestSscVaryingSteps.cpp76 Dims vcount = {10, 2}; in Writer() local
80 bpChars.SetSelection({vstart, vcount}); in Writer()
82 bpUChars.SetSelection({vstart, vcount}); in Writer()
84 bpShorts.SetSelection({vstart, vcount}); in Writer()
86 bpUShorts.SetSelection({vstart, vcount}); in Writer()
88 bpInts.SetSelection({vstart, vcount}); in Writer()
90 bpUInts.SetSelection({vstart, vcount}); in Writer()
92 bpFloats.SetSelection({vstart, vcount}); in Writer()
94 bpDoubles.SetSelection({vstart, vcount}); in Writer()
96 bpComplexes.SetSelection({vstart, vcount}); in Writer()
[all …]
/dports/devel/bullet/bullet3-3.21/src/LinearMath/
H A DbtConvexHull.cpp641 result.mVcount = (unsigned int)vcount; in ComputeHull()
677 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
678 if (vcount < 8) vcount = 8; in CreateConvexHull()
805 btVector3 &dest = p[vcount]; in addPoint()
809 vcount++; in addPoint()
836 vcount = 0; in CleanupVertices()
957 for (j = 0; j < vcount; j++) in CleanupVertices()
990 if (j == vcount) in CleanupVertices()
996 vcount++; in CleanupVertices()
1054 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/graphics/blender/blender-2.91.0/extern/bullet2/src/LinearMath/
H A DbtConvexHull.cpp641 result.mVcount = (unsigned int)vcount; in ComputeHull()
677 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
678 if (vcount < 8) vcount = 8; in CreateConvexHull()
805 btVector3 &dest = p[vcount]; in addPoint()
809 vcount++; in addPoint()
836 vcount = 0; in CleanupVertices()
957 for (j = 0; j < vcount; j++) in CleanupVertices()
990 if (j == vcount) in CleanupVertices()
996 vcount++; in CleanupVertices()
1054 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/bullet/src/LinearMath/
H A DbtConvexHull.cpp706 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
707 if ( vcount < 8 ) vcount = 8; in CreateConvexHull()
842 btVector3& dest = p[vcount]; in addPoint()
846 vcount++; in addPoint()
877 vcount = 0; in CleanupVertices()
948 addPoint(vcount,vertices,x1,y1,z1); in CleanupVertices()
1005 for (j=0; j<vcount; j++) in CleanupVertices()
1039 if ( j == vcount ) in CleanupVertices()
1045 vcount++; in CleanupVertices()
1103 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/games/critterding/critterding-beta12/src/utils/bullet/LinearMath/
H A DbtConvexHull.cpp706 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
707 if ( vcount < 8 ) vcount = 8; in CreateConvexHull()
842 btVector3& dest = p[vcount]; in addPoint()
846 vcount++; in addPoint()
877 vcount = 0; in CleanupVertices()
948 addPoint(vcount,vertices,x1,y1,z1); in CleanupVertices()
1005 for (j=0; j<vcount; j++) in CleanupVertices()
1039 if ( j == vcount ) in CleanupVertices()
1045 vcount++; in CleanupVertices()
1103 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/bullet/LinearMath/
H A DbtConvexHull.cpp641 result.mVcount = (unsigned int)vcount; in ComputeHull()
677 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
678 if (vcount < 8) vcount = 8; in CreateConvexHull()
805 btVector3 &dest = p[vcount]; in addPoint()
809 vcount++; in addPoint()
836 vcount = 0; in CleanupVertices()
957 for (j = 0; j < vcount; j++) in CleanupVertices()
990 if (j == vcount) in CleanupVertices()
996 vcount++; in CleanupVertices()
1054 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/devel/godot/godot-3.2.3-stable/thirdparty/bullet/LinearMath/
H A DbtConvexHull.cpp641 result.mVcount = (unsigned int)vcount; in ComputeHull()
677 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
678 if (vcount < 8) vcount = 8; in CreateConvexHull()
805 btVector3 &dest = p[vcount]; in addPoint()
809 vcount++; in addPoint()
836 vcount = 0; in CleanupVertices()
957 for (j = 0; j < vcount; j++) in CleanupVertices()
990 if (j == vcount) in CleanupVertices()
996 vcount++; in CleanupVertices()
1054 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/bullet/LinearMath/
H A DbtConvexHull.cpp642 result.mVcount = (unsigned int)vcount; in ComputeHull()
678 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
679 if (vcount < 8) vcount = 8; in CreateConvexHull()
806 btVector3 &dest = p[vcount]; in addPoint()
810 vcount++; in addPoint()
837 vcount = 0; in CleanupVertices()
958 for (j = 0; j < vcount; j++) in CleanupVertices()
991 if (j == vcount) in CleanupVertices()
997 vcount++; in CleanupVertices()
1055 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/Bullet/src/LinearMath/
H A DbtConvexHull.cpp699 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
700 if ( vcount < 8 ) vcount = 8; in CreateConvexHull()
835 btVector3& dest = p[vcount]; in addPoint()
839 vcount++; in addPoint()
870 vcount = 0; in CleanupVertices()
941 addPoint(vcount,vertices,x1,y1,z1); in CleanupVertices()
998 for (j=0; j<vcount; j++) in CleanupVertices()
1032 if ( j == vcount ) in CleanupVertices()
1038 vcount++; in CleanupVertices()
1096 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/devel/py-bullet3/bullet3-3.21/src/LinearMath/
H A DbtConvexHull.cpp641 result.mVcount = (unsigned int)vcount; in ComputeHull()
677 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
678 if (vcount < 8) vcount = 8; in CreateConvexHull()
805 btVector3 &dest = p[vcount]; in addPoint()
809 vcount++; in addPoint()
836 vcount = 0; in CleanupVertices()
957 for (j = 0; j < vcount; j++) in CleanupVertices()
990 if (j == vcount) in CleanupVertices()
996 vcount++; in CleanupVertices()
1054 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/games/OpenTomb/OpenTomb-win32-2018-02-03_alpha/extern/bullet/LinearMath/
H A DbtConvexHull.cpp699 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
700 if ( vcount < 8 ) vcount = 8; in CreateConvexHull()
835 btVector3& dest = p[vcount]; in addPoint()
839 vcount++; in addPoint()
870 vcount = 0; in CleanupVertices()
941 addPoint(vcount,vertices,x1,y1,z1); in CleanupVertices()
998 for (j=0; j<vcount; j++) in CleanupVertices()
1032 if ( j == vcount ) in CleanupVertices()
1038 vcount++; in CleanupVertices()
1096 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/LinearMath/
H A DbtConvexHull.cpp706 unsigned int vcount = desc.mVcount; in CreateConvexHull() local
707 if ( vcount < 8 ) vcount = 8; in CreateConvexHull()
842 btVector3& dest = p[vcount]; in addPoint()
846 vcount++; in addPoint()
877 vcount = 0; in CleanupVertices()
948 addPoint(vcount,vertices,x1,y1,z1); in CleanupVertices()
1005 for (j=0; j<vcount; j++) in CleanupVertices()
1039 if ( j == vcount ) in CleanupVertices()
1045 vcount++; in CleanupVertices()
1103 vcount = 0; // add box in CleanupVertices()
[all …]
/dports/cad/libredwg/libredwg-0.12.4/src/
H A Dspec.h198 for (vcount = 0; vcount < _size; vcount++) \
200 SUB_FIELD_HANDLE (o, nam[vcount], code, dxf); \
210 for (vcount = 0; vcount < _size; vcount++) \
212 SUB_FIELD (o, nam[vcount], type, dxf); \
221 for (vcount = 0; vcount < _size; vcount++) \
223 SUB_FIELD (o, nam[vcount], type, dxf); \
239 for (vcount = 0; vcount < (BITCODE_BL)_obj->o.size; vcount++) \
241 SUB_FIELD_2RD (o,name[vcount], dxf); \
249 for (vcount = 0; vcount < (BITCODE_BL)_obj->o.size; vcount++) \
251 SUB_FIELD_3BD (o,name[vcount], dxf); \
[all …]

12345678910>>...44