HomeSort by relevance Sort by last modified time
    Searched refs:nelem (Results 26 - 50 of 61) sorted by null

12 3

  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_darwin_386.c 78 if(ntofree >= nelem(tofree)) {
gcc_darwin_amd64.c 49 if(ntofree >= nelem(tofree)) {
  /external/ltp/testcases/kernel/fs/dmapi/
pmr_post.c 54 void LogRegions(dm_region_t * rgns, u_int nelem)
59 for (i = 0; i < nelem; i++) {
193 * EXPECTED: rc = 0, nelem = 5
199 u_int nelem; local
222 regbuf, &nelem);
224 DMLOG_PRINT(DMLVL_DEBUG, "nelem = %d\n", nelem);
232 } else if (nelem != PMR_NUM_REGIONS) {
235 nelem, PMR_NUM_REGIONS);
241 DMLOG_PRINT(DMLVL_DEBUG, "nelem = %d\n", rc
    [all...]
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 169 int nelem = sizeof(quadIndices)/sizeof(quadIndices[0]); local
177 glDrawElements(GL_TRIANGLES, nelem, GL_UNSIGNED_SHORT, quadIndices);
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 270 int nelem = sizeof(quadIndices)/sizeof(quadIndices[0]); local
272 glDrawElements(GL_TRIANGLES, nelem*quads, GL_UNSIGNED_SHORT, indices);
  /external/python/cpython2/Lib/bsddb/
__init__.py 353 def hashopen(file, flag='c', mode=0666, pgsize=None, ffactor=None, nelem=None,
363 if nelem is not None: d.set_h_nelem(nelem)
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
__init__.py 353 def hashopen(file, flag='c', mode=0666, pgsize=None, ffactor=None, nelem=None,
363 if nelem is not None: d.set_h_nelem(nelem)
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
__init__.py 353 def hashopen(file, flag='c', mode=0666, pgsize=None, ffactor=None, nelem=None,
363 if nelem is not None: d.set_h_nelem(nelem)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 353 def hashopen(file, flag='c', mode=0666, pgsize=None, ffactor=None, nelem=None,
363 if nelem is not None: d.set_h_nelem(nelem)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
__init__.py 353 def hashopen(file, flag='c', mode=0666, pgsize=None, ffactor=None, nelem=None,
363 if nelem is not None: d.set_h_nelem(nelem)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_minidom.py 71 nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
    [all...]
  /external/python/cpython2/Lib/test/
test_minidom.py 78 nelem = dom.createElement("element")
79 root.insertBefore(nelem, elem)
82 and root.childNodes[0] is nelem
83 and root.childNodes.item(0) is nelem
86 and root.firstChild is nelem
90 nelem = dom.createElement("element")
91 root.insertBefore(nelem, None)
96 and root.childNodes[2] is nelem
97 and root.childNodes.item(2) is nelem
98 and root.lastChild is nelem
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_minidom.py 71 nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_minidom.py 71 nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 71 nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 71 nelem = dom.createElement("element")
72 root.insertBefore(nelem, elem)
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
79 and root.firstChild is nelem
83 nelem = dom.createElement("element")
84 root.insertBefore(nelem, None)
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
    [all...]
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 361 int nelem = sizeof(indices)/sizeof(indices[0]);
363 glDrawElements(GL_TRIANGLES, nelem, GL_UNSIGNED_SHORT, indices);
  /external/python/cpython2/Modules/
bsddbmodule.c 54 int bsize, int ffactor, int nelem, int cachesize,
65 info.nelem = nelem;
687 int nelem = 0; local
694 &bsize, &ffactor, &nelem, &cachesize,
726 bsize, ffactor, nelem, cachesize, hash, lorder);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xlibint.h 351 # define Xcalloc(nelem, elsize) calloc(((nelem) == 0 ? 1 : (nelem)), (elsize))
357 # define Xcalloc(nelem, elsize) calloc((nelem), (elsize))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xlibint.h 343 # define Xcalloc(nelem, elsize) calloc(((nelem) == 0 ? 1 : (nelem)), (elsize))
349 # define Xcalloc(nelem, elsize) calloc((nelem), (elsize))
    [all...]
  /bionic/libc/dns/net/
getaddrinfo.c 1843 int nelem = 0, i; local
    [all...]
  /external/bison/darwin-lib/
stdlib.h 530 /* Store max(NELEM,3) load average numbers in LOADAVG[].
533 LOADAVG is an array of NELEM numbers. */
535 _GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem)
538 _GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem));
    [all...]
  /external/bison/linux-lib/
stdlib.h 530 /* Store max(NELEM,3) load average numbers in LOADAVG[].
533 LOADAVG is an array of NELEM numbers. */
535 _GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem)
538 _GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem));
    [all...]
  /external/bison/lib/
stdlib.in.h 208 /* Store max(NELEM,3) load average numbers in LOADAVG[].
211 LOADAVG is an array of NELEM numbers. */
213 _GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem)
216 _GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
vec.h 299 unsigned nelem = v ? v->length () : 0; local
301 v->embedded_init (alloc, nelem);
377 unsigned nelem = v ? v->length () : 0; local
380 v->embedded_init (alloc, nelem);
    [all...]

Completed in 2488 milliseconds

12 3