Searched refs:pvalue (Results 1 - 25 of 42) sorted by relevance

12

/macosx-10.10.1/swig-12/Lib/python/
H A Dpyapi.swg26 void *pvalue;
H A Dpyinit.swg242 obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
245 obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
289 void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0;
/macosx-10.10.1/apr-32/apr-util/apr-util/dbm/
H A Dapr_dbm_gdbm.c129 apr_datum_t *pvalue)
138 pvalue->dptr = rd.dptr;
139 pvalue->dsize = rd.dsize;
141 if (pvalue->dptr)
142 apr_pool_cleanup_register(dbm->pool, pvalue->dptr, datum_cleanup,
146 that *pvalue should have been cleared on error. */
128 vt_gdbm_fetch(apr_dbm_t *dbm, apr_datum_t key, apr_datum_t *pvalue) argument
H A Dapr_dbm_ndbm.c122 apr_datum_t *pvalue)
131 pvalue->dptr = rd.dptr;
132 pvalue->dsize = rd.dsize;
135 that *pvalue should have been cleared on error. */
121 vt_ndbm_fetch(apr_dbm_t *dbm, apr_datum_t key, apr_datum_t *pvalue) argument
H A Dapr_dbm_sdbm.c105 apr_datum_t *pvalue)
115 pvalue->dptr = rd.dptr;
116 pvalue->dsize = rd.dsize;
119 that *pvalue should have been cleared on error. */
104 vt_sdbm_fetch(apr_dbm_t *dbm, apr_datum_t key, apr_datum_t *pvalue) argument
H A Dapr_dbm_berkeleydb.c216 apr_datum_t * pvalue)
239 pvalue->dptr = rd.data;
240 pvalue->dsize = rd.size;
243 that *pvalue should have been cleared on error. */
215 vt_db_fetch(apr_dbm_t *dbm, apr_datum_t key, apr_datum_t * pvalue) argument
H A Dapr_dbm.c219 apr_datum_t *pvalue)
221 return (*dbm->type->fetch)(dbm, key, pvalue);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dcommon.c947 * pvalue -- pointer to value
953 int sasl_getprop(sasl_conn_t *conn, int propnum, const void **pvalue) argument
960 if (! pvalue) PARAMERROR(conn);
965 *(sasl_ssf_t **)pvalue= &conn->oparams.mech_ssf;
968 *(unsigned **)pvalue = &conn->oparams.maxoutbuf;
974 *(void **)pvalue = context;
977 *(const sasl_callback_t **)pvalue = conn->callbacks;
981 *(const char **)pvalue = conn->iplocalport;
983 *(const char **)pvalue = NULL;
989 *(const char **)pvalue
[all...]
/macosx-10.10.1/apache-793/httpd/modules/dav/fs/
H A Drepos.h62 dav_error * dav_dbm_fetch(dav_db *db, apr_datum_t key, apr_datum_t *pvalue);
H A Ddbm.c192 dav_error * dav_dbm_fetch(dav_db *db, apr_datum_t key, apr_datum_t *pvalue) argument
198 memset(pvalue, 0, sizeof(*pvalue));
201 status = apr_dbm_fetch(db->file, key, pvalue);
/macosx-10.10.1/apr-32/apr-util/apr-util/include/
H A Dapr_dbm.h125 * @param pvalue The value datum retrieved for this record
128 apr_datum_t *pvalue);
/macosx-10.10.1/apr-32/apr-util/apr-util/include/private/
H A Dapr_dbm_private.h61 apr_datum_t * pvalue);
/macosx-10.10.1/pcre-7/pcre/
H A Dpcre_printint.src126 get_ucpname(int ptype, int pvalue)
132 if (ptype == _pcre_utt[i].type && pvalue == _pcre_utt[i].value) break;
137 ptype = ptype * pvalue;
138 return (ptype == pvalue)? "??" : "??";
478 int pvalue = *ccode++;
479 fprintf(f, "\\p{%s}", get_ucpname(ptype, pvalue));
484 int pvalue = *ccode++;
485 fprintf(f, "\\P{%s}", get_ucpname(ptype, pvalue));
/macosx-10.10.1/swig-12/Lib/tcl/
H A Dtclinit.swg55 obj = SWIG_NewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
58 obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
H A Dtclapi.swg22 void *pvalue;
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dwidget.rb103 def self.has_changed(win, option, pvalue)
104 tk_call('Widget::hasChanged', win, option, pvalue)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A Dlibffi_support.m437 static Py_ssize_t extract_count(const char* type, void* pvalue)
443 NSArray* value = *(id*)pvalue;
453 case _C_CHR: return *(char*)pvalue;
454 case _C_CHAR_AS_INT: return *(char*)pvalue;
455 case _C_UCHR: return *(unsigned char*)pvalue;
456 case _C_SHT: return *(short*)pvalue;
457 case _C_USHT: return *(unsigned short*)pvalue;
458 case _C_INT: return *(int*)pvalue;
459 case _C_UINT: return *(unsigned int*)pvalue;
460 case _C_LNG: return *(long*)pvalue;
[all...]
H A Dobjc-object.m147 PyObject* ptype, *pvalue, *ptraceback;
148 PyErr_Fetch(&ptype, &pvalue, &ptraceback);
214 PyErr_Restore(ptype, pvalue, ptraceback);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A Dlibffi_support.m434 static Py_ssize_t extract_count(const char* type, void* pvalue)
440 NSArray* value = *(id*)pvalue;
450 case _C_CHR: return *(char*)pvalue;
451 case _C_CHAR_AS_INT: return *(char*)pvalue;
452 case _C_UCHR: return *(unsigned char*)pvalue;
453 case _C_SHT: return *(short*)pvalue;
454 case _C_USHT: return *(unsigned short*)pvalue;
455 case _C_INT: return *(int*)pvalue;
456 case _C_UINT: return *(unsigned int*)pvalue;
457 case _C_LNG: return *(long*)pvalue;
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dlibffi_support.m425 static Py_ssize_t extract_count(const char* type, void* pvalue)
431 NSArray* value = *(id*)pvalue;
441 case _C_CHR: return *(char*)pvalue;
442 case _C_CHAR_AS_INT: return *(char*)pvalue;
443 case _C_UCHR: return *(unsigned char*)pvalue;
444 case _C_SHT: return *(short*)pvalue;
445 case _C_USHT: return *(unsigned short*)pvalue;
446 case _C_INT: return *(int*)pvalue;
447 case _C_UINT: return *(unsigned int*)pvalue;
448 case _C_LNG: return *(long*)pvalue;
[all...]
H A Dobjc-object.m146 PyObject* ptype, *pvalue, *ptraceback;
147 PyErr_Fetch(&ptype, &pvalue, &ptraceback);
213 PyErr_Restore(ptype, pvalue, ptraceback);
/macosx-10.10.1/swig-12/Source/DOH/
H A Dfio.c115 void *pvalue; local
392 pvalue = va_arg(ap, void *);
393 nbytes += sprintf(stemp, newformat, pvalue);
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dgretl.vim37 syn keyword gCommands add addobs addto adf append ar arch arma break boxplot chow coeffsum coint coint2 corc corr corrgm criteria critical cusum data delete diff else end endif endloop eqnprint equation estimate fcast fcasterr fit freq function funcerr garch genr gnuplot graph hausman hccm help hilu hsk hurst if import include info kpss label labels lad lags ldiff leverage lmtest logistic logit logs loop mahal meantest mle modeltab mpols multiply nls nulldata ols omit omitfrom open outfile panel pca pergm plot poisson pooled print printf probit pvalue pwe quit remember rename reset restrict rhodiff rmplot run runs scatters sdiff set setobs setmiss shell sim smpl spearman square store summary system tabprint testuhat tobit transpos tsls var varlist vartest vecm vif wls
40 syn keyword gGenrFunc log exp sin cos tan atan diff ldiff sdiff mean sd min max sort int ln coeff abs rho sqrt sum nobs firstobs lastobs normal uniform stderr cum missing ok misszero corr vcv var sst cov median zeromiss pvalue critical obsnum mpow dnorm cnorm gamma lngamma resample hpfilt bkfilt fracdiff varnum isvector islist nelem
/macosx-10.10.1/swig-12/Lib/lua/
H A Dluarun.swg45 void *pvalue;
726 lua_pushstring(L,(char *) constants[i].pvalue);
731 SWIG_NewPointerObj(L,constants[i].pvalue, *(constants[i]).ptype,0);
736 SWIG_NewMemberObj(L,constants[i].pvalue,constants[i].lvalue,*(constants[i]).ptype);
/macosx-10.10.1/swig-12/Source/Swig/
H A Dcwrap.c197 String *pvalue = (compactdefargs) ? Getattr(p, "value") : 0; local
201 SwigType *altty = pvalue ? 0 : SwigType_alttype(type, 0);
205 if (pvalue) {
208 rvalue = SwigType_typedef_resolve_all(pvalue);
232 } else if (!pvalue && ((tycode == T_POINTER) || (tycode == T_STRING))) {
233 pvalue = (String *) "0";
236 local = Swig_clocal(pt, lname, pvalue);
238 local = Swig_clocal(altty, lname, pvalue);

Completed in 169 milliseconds

12