Searched refs:alloc (Results 1 – 11 of 11) sorted by relevance
/PHP-5.6/ext/spl/ |
H A D | spl_engine.h | 28 PHPAPI void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC); 33 static inline int spl_instantiate_arg_ex1(zend_class_entry *pce, zval **retval, int alloc, zval *ar… in spl_instantiate_arg_ex1() argument 35 spl_instantiate(pce, retval, alloc TSRMLS_CC); in spl_instantiate_arg_ex1() 43 static inline int spl_instantiate_arg_ex2(zend_class_entry *pce, zval **retval, int alloc, zval *ar… in spl_instantiate_arg_ex2() argument 45 spl_instantiate(pce, retval, alloc TSRMLS_CC); in spl_instantiate_arg_ex2()
|
H A D | spl_engine.c | 35 PHPAPI void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) in spl_instantiate() 37 if (alloc) { in spl_instantiate()
|
/PHP-5.6/ext/mbstring/oniguruma/ |
H A D | regint.h | 346 unsigned int alloc; member 352 (buf)->alloc += (inc);\ 353 (buf)->p = (UChar* )xrealloc((buf)->p, (buf)->alloc);\ 358 do { (buf)->alloc *= 2; } while ((buf)->alloc < (unsigned int )low);\ 359 (buf)->p = (UChar* )xrealloc((buf)->p, (buf)->alloc);\ 364 unsigned int new_alloc = (buf)->alloc;\ 366 if ((buf)->alloc != new_alloc) {\ 369 (buf)->alloc = new_alloc;\ 375 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\ 382 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\ [all …]
|
H A D | st.c | 54 #define alloc(type) (type*)xmalloc((unsigned)sizeof(type)) macro 157 tbl = alloc(st_table); 268 entry = alloc(st_table_entry);\ 347 new_table = alloc(st_table); 365 entry = alloc(st_table_entry);
|
H A D | regparse.c | 590 int alloc; member 724 int alloc; in name_add() local 760 t->alloc = 0; in name_add() 768 t->alloc = alloc; in name_add() 775 alloc = t->alloc * 2; in name_add() 778 t->alloc = alloc; in name_add() 813 e->back_alloc = alloc; in name_add() 819 alloc = e->back_alloc * 2; in name_add() 822 e->back_alloc = alloc; in name_add() 959 int i, need, alloc; in scan_env_add_mem_entry() local [all …]
|
H A D | regparse.h | 209 int alloc; member
|
H A D | regcomp.c | 150 buf->alloc = size; in onig_bbuf_init() 166 uslist->alloc = size; in unset_addr_list_init() 184 if (uslist->num >= uslist->alloc) { in unset_addr_list_add() 185 size = uslist->alloc * 2; in unset_addr_list_add() 188 uslist->alloc = size; in unset_addr_list_add() 5282 if (reg->alloc == 0) { in onig_compile() 5510 (reg)->alloc = 0; in onig_reg_init()
|
H A D | oniguruma.h | 660 unsigned int alloc; /* allocated space for p */ member
|
/PHP-5.6/ext/sockets/ |
H A D | conversions.c | 849 zend_llist_element *alloc, in from_zval_write_control() argument 914 memcpy(&alloc->data, control_buf, sizeof *control_buf); in from_zval_write_control() 936 zend_llist_element *alloc; in from_zval_write_control_array() local 953 alloc = ctx->allocations.tail; in from_zval_write_control_array() 967 from_zval_write_control(*elem, &control_buf, alloc, &control_len, in from_zval_write_control_array()
|
/PHP-5.6/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 64645 struct ValueNewStat4Ctx alloc; 64647 alloc.pParse = pParse; 64648 alloc.pIdx = pIdx; 64649 alloc.ppRec = ppRec; 64650 alloc.iVal = iVal; 64652 rc = stat4ValueFromExpr(pParse, pExpr, affinity, &alloc, &pVal);
|
/PHP-5.6/ |
H A D | NEWS | 3705 . Fixed bug #63530 (mysqlnd_stmt::bind_one_parameter crashes, uses wrong alloc 3923 . Fixed bug #63530 (mysqlnd_stmt::bind_one_parameter crashes, uses wrong alloc
|
Completed in 432 milliseconds