HomeSort by relevance Sort by last modified time
    Searched refs:nobj (Results 1 - 11 of 11) sorted by null

  /prebuilts/misc/common/swig/include/2.0.11/
cmalloc.i 21 TYPE *calloc_NAME(int nobj=1, int size=sizeof(TYPE));
43 %rename(calloc_##NAME) ::calloc(int nobj, int sz);
45 %rename(calloc_##TYPE) ::calloc(int nobj, int sz);
52 %typemap(default) int nobj "$1 = 1;"
53 TYPE *calloc(int nobj, int sz);
55 %typemap(default) int nobj;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/GL/
glu.h 81 void APIENTRY gluDeleteNurbsRenderer(GLUnurbs *nobj);
82 void APIENTRY gluBeginSurface(GLUnurbs *nobj);
83 void APIENTRY gluBeginCurve(GLUnurbs *nobj);
84 void APIENTRY gluEndCurve(GLUnurbs *nobj);
85 void APIENTRY gluEndSurface(GLUnurbs *nobj);
86 void APIENTRY gluBeginTrim(GLUnurbs *nobj);
87 void APIENTRY gluEndTrim(GLUnurbs *nobj);
88 void APIENTRY gluPwlCurve(GLUnurbs *nobj,GLint count,GLfloat *array,GLint stride,GLenum type);
89 void APIENTRY gluNurbsCurve(GLUnurbs *nobj,GLint nknots,GLfloat *knot,GLint stride,GLfloat *ctlarray,GLint order,GLenum type);
90 void APIENTRY gluNurbsSurface(GLUnurbs *nobj,GLint sknot_count,float *sknot,GLint tknot_count,GLfloat *tknot,GLint s_stride,GLint t_stride,GLfl (…)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
cmalloc.swg 21 TYPE *calloc_NAME(size_t nobj=1, size_t size=sizeof(TYPE));
43 %rename(calloc_##NAME) ::calloc(size_t nobj, size_t sz);
45 %rename(calloc_##TYPE) ::calloc(size_t nobj, size_t sz);
52 %typemap(default) size_t nobj "$1 = 1;"
53 TYPE *calloc(size_t nobj, size_t sz);
55 %typemap(default) size_t nobj;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcm_mpool_pub.h 106 uint16 nobj; /* Total number of objects in this pool */ member in struct:bcm_mp_stats
159 * nobj: INPUT Maximum number of concurrently existing objects to support
174 int nobj,
  /ndk/sources/host-tools/nawk-20071023/
parse.c 55 x->nobj = a;
65 x->nobj = a;
76 x->nobj = a;
88 x->nobj = a;
awk.h 136 int nobj; member in struct:Node
198 #define isargument(n) ((n)->nobj == ARG)
awkgram.y 468 switch (n->nobj) {
run.c 155 if (notlegal(a->nobj)) /* probably a Cell* but too risky to print */
157 proc = proctab[a->nobj-FIRSTTOKEN];
158 x = (*proc)(a->narg, a->nobj);
    [all...]
b.c 40 #define type(v) (v)->nobj /* badly overloaded here */
  /external/svox/pico/lib/
picopal.h 225 extern picopal_objsize_t picopal_fread_bytes (picopal_File f, void * ptr, picopal_objsize_t objsize, picopal_uint32 nobj);
227 extern picopal_objsize_t picopal_fwrite_bytes (picopal_File f, void * ptr, picopal_objsize_t objsize, picopal_uint32 nobj);
picopal.c 397 picopal_objsize_t picopal_fread_bytes (picopal_File f, void * ptr, picopal_objsize_t objsize, picopal_uint32 nobj)
399 return (picopal_objsize_t) fread(ptr, objsize, nobj, (FILE *)f);
402 picopal_objsize_t picopal_fwrite_bytes (picopal_File f, void * ptr, picopal_objsize_t objsize, picopal_uint32 nobj){ return (picopal_objsize_t) fwrite(ptr, objsize, nobj, (FILE *)f);}

Completed in 178 milliseconds