Searched refs:ocount (Results 1 – 10 of 10) sorted by relevance
/external/toybox/toys/posix/ |
D | kill.c | 93 long *olist = 0, ocount = 0; local 99 for (ptr = TT.olist; ptr; ptr = ptr->next) ocount++; 100 olist = xmalloc(ocount*sizeof(long)); 101 ocount = 0; 103 olist[ocount++] = atolx(ptr->arg); 124 for (count = 0; count < ocount; count++) 126 if (count != ocount) continue;
|
/external/lldb/test/functionalities/exec/ |
D | main.cpp | 51 size_t ocount = 0; in spawn_process() local 52 err = posix_spawnattr_setbinpref_np (&attr, 1, &cpu_type, &ocount); in spawn_process()
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
D | btConvexHull.cpp | 1114 …st btVector3* verts,unsigned int vcount, btVector3* overts,unsigned int &ocount,unsigned int *indi… in BringOutYourDead() argument 1129 ocount = 0; in BringOutYourDead() 1144 indices[i] = ocount; // new index mapping in BringOutYourDead() 1146 overts[ocount][0] = verts[v][0]; // copy old vert to new vert array in BringOutYourDead() 1147 overts[ocount][1] = verts[v][1]; in BringOutYourDead() 1148 overts[ocount][2] = verts[v][2]; in BringOutYourDead() 1153 m_vertexIndexMapping[k]=ocount; in BringOutYourDead() 1156 ocount++; // increment output vert count in BringOutYourDead() 1158 btAssert( ocount >=0 && ocount <= vcount ); in BringOutYourDead() 1160 usedIndices[static_cast<int>(v)] = ocount; // assign new index remapping in BringOutYourDead()
|
D | btConvexHull.h | 228 …st btVector3* verts,unsigned int vcount, btVector3* overts,unsigned int &ocount,unsigned int* indi…
|
/external/lldb/tools/darwin-debug/ |
D | darwin-debug.cpp | 145 size_t ocount = 0; in posix_spawn_for_debug() local 146 …exit_with_errno (::posix_spawnattr_setbinpref_np (&attr, 1, &cpu_type, &ocount), "posix_spawnattr_… in posix_spawn_for_debug()
|
/external/kernel-headers/original/uapi/linux/ |
D | mroute.h | 110 unsigned long ocount; /* Out packets */ member
|
D | mroute6.h | 110 unsigned long ocount; /* Out packets */ member
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachProcess.cpp | 1851 size_t ocount = 0; in PosixSpawnChildForPTraceDebugging() local 1852 … err.SetError( ::posix_spawnattr_setbinpref_np (&attr, 1, &cpu_type, &ocount), DNBError::POSIX); in PosixSpawnChildForPTraceDebugging() 1854 …wnattr_setbinpref_np ( &attr, 1, cpu_type = 0x%8.8x, count => %llu )", cpu_type, (uint64_t)ocount); in PosixSpawnChildForPTraceDebugging() 1856 if (err.Fail() != 0 || ocount != 1) in PosixSpawnChildForPTraceDebugging()
|
/external/pcre/dist/ |
D | pcre_exec.c | 6362 int rc, ocount, arg_offset_max; in pcre_exec() local 6660 ocount = offsetcount - (offsetcount % 3); in pcre_exec() 6661 arg_offset_max = (2*ocount)/3; in pcre_exec() 6663 if (re->top_backref > 0 && re->top_backref >= ocount/3) in pcre_exec() 6665 ocount = re->top_backref * 3 + 3; in pcre_exec() 6666 md->offset_vector = (int *)(PUBL(malloc))(ocount * sizeof(int)); in pcre_exec() 6672 md->offset_end = ocount; in pcre_exec() 6673 md->offset_max = (2*ocount)/3; in pcre_exec() 6684 register int *iptr = md->offset_vector + ocount; in pcre_exec()
|
/external/lldb/source/Host/macosx/ |
D | Host.mm | 1607 size_t ocount = 0; 1608 error.SetError( ::posix_spawnattr_setbinpref_np (&attr, 1, &cpu, &ocount), eErrorTypePOSIX); 1610 …x_spawnattr_setbinpref_np ( &attr, 1, cpu_type = 0x%8.8x, count => %llu )", cpu, (uint64_t)ocount); 1612 if (error.Fail() || ocount != 1)
|