| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 1876 ** drawn, the size of each scratch allocation (sz), 1877 ** and the maximum number of scratch allocations (N). The sz 1880 ** of at least sz*N bytes of memory. 1894 ** memory, the size of each page buffer (sz), and the number of pages (N). 1895 ** The sz argument should be the size of the largest database page 1899 ** to make sz a little too large. The first 1900 ** argument should point to an allocation of at least sz*N bytes of memory. 2009 #define SQLITE_CONFIG_SCRATCH 6 /* void*, int sz, int N */ 2010 #define SQLITE_CONFIG_PAGECACHE 7 /* void*, int sz, int N */ 6204 ** where too large (they were larger than the "sz" paramete 9359 u16 sz; /* Size of each buffer in bytes */ member in struct:Lookaside 18175 int i, n, sz; local 21693 int i, sz; local 22910 sqlite3_int64 sz = *(sqlite3_int64*)pArg; local 25068 robust_ftruncate(int h, sqlite3_int64 sz) argument 32715 sqlite3_int64 sz = *(sqlite3_int64*)pArg; local 33288 sqlite3_int64 sz; /* Current size of wal-index file */ local 34606 sqlite3BitvecBuiltinTest(int sz, int *aOp) argument 35458 sqlite3PCacheBufferSetup(void *pBuf, int sz, int n) argument 35509 int sz = sqlite3MallocSize(p); local 35605 sqlite3PageMalloc(int sz) argument 35828 int sz; /* Bytes of memory required to allocate the new cache */ local 38108 i64 sz; local 45968 int sz; local 46187 i64 sz; local 48944 int sz; /* Size of a cell */ local 52909 dropCell(MemPage *pPage, int idx, int sz, int *pRC) argument 52966 insertCell( MemPage *pPage, int i, u8 *pCell, int sz, u8 *pTemp, Pgno iChild, int *pRC ) argument 53083 u16 sz = aSize[i]; local 53560 u16 sz = (u16)szNew[i]; local 53771 int sz; local 55164 u32 sz; local 76476 static const int sz = sizeof(IndexSample)*SQLITE_INDEX_SAMPLES; local 108376 setupLookaside(sqlite3 *db, void *pBuf, int sz, int cnt) argument 108446 int sz = va_arg(ap, int); /* IMP: R-47871-25994 */ local 110658 int sz = va_arg(ap, int); local 110819 int sz; local [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_arrays.h | 13 size_t sz; member in struct:fpm_array_s 18 static inline struct fpm_array_s *fpm_array_init(struct fpm_array_s *a, unsigned int sz, unsigned int initial_num) /* {{{ */ argument 32 a->sz = sz; 34 a->data = calloc(sz, initial_num); 52 ret = (char *) a->data + a->sz * n; 72 memcpy(to_remove, last, a->sz); 89 void *new_ptr = realloc(a->data, a->sz * new_allocated); 111 a->sz = 0;
|
| H A D | fpm_trace.c | 11 int fpm_trace_get_strz(char *buf, size_t sz, long addr) /* {{{ */ argument 28 --sz; 29 if (sz && lc[i]) {
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdtest.c | 25 int sz; local 78 iptr = gdImagePngPtr (im, &sz); 79 ctx = gdNewDynamicCtx (sz, iptr); 110 iptr = gdImageGd2Ptr (im, 128, 2, &sz); 111 /*printf("Got ptr %d (size %d)\n",iptr, sz); */ 112 ctx = gdNewDynamicCtx (sz, iptr); 145 iptr = gdImageGdPtr (im, &sz); 146 /*printf("Got ptr %d (size %d)\n",iptr, sz); */ 147 ctx = gdNewDynamicCtx (sz, iptr);
|
| /PHP_TRUNK/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 1499 unsigned int sz; local 1558 sz = end - start; 1559 if ((w = (unsigned char*)mbfl_calloc(sz + 8, 1564 memcpy(w, start, sz); 1565 w[sz] = '\0'; 1566 w[sz + 1] = '\0'; 1567 w[sz + 2] = '\0'; 1568 w[sz + 3] = '\0'; 1571 result->len = sz;
|
| H A D | mbfl_allocators.c | 74 static void *__mbfl__malloc(unsigned int sz) argument 76 return malloc(sz); 79 static void *__mbfl__realloc(void *ptr, unsigned int sz) argument 81 return realloc(ptr, sz);
|
| /PHP_TRUNK/ext/mbstring/ |
| H A D | mbstring.c | 605 static void *_php_mb_allocators_malloc(unsigned int sz) argument 607 return emalloc(sz); 610 static void *_php_mb_allocators_realloc(void *ptr, unsigned int sz) argument 612 return erealloc(ptr, sz); 625 static void *_php_mb_allocators_pmalloc(unsigned int sz) argument 627 return pemalloc(sz, 1); 630 static void *_php_mb_allocators_prealloc(void *ptr, unsigned int sz) argument 632 return perealloc(ptr, sz, 1); 3719 if (zend_parse_parameters(argc TSRMLS_CC, "sz|sb", &str, &str_len, &zconvmap, &encoding, &encoding_len, &is_hex) == FAILURE) {
|
| /PHP_TRUNK/ext/xml/ |
| H A D | xml.c | 296 static void *php_xml_malloc_wrapper(size_t sz) argument 298 return emalloc(sz); 301 static void *php_xml_realloc_wrapper(void *ptr, size_t sz) argument 303 return erealloc(ptr, sz);
|
| /PHP_TRUNK/ext/gd/ |
| H A D | gd.c | 4261 long sz = 0, sp = 0, wd = 0; local 4276 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "srl|lld", &str, &str_len, &fnt, &sz, &sp, &wd, &angle) == FAILURE) { 4348 add_next_index_long(return_value, (int) ceil(((double) str_bbox.llx)*sz/1000)); 4349 add_next_index_long(return_value, (int) ceil(((double) str_bbox.lly)*sz/1000)); 4350 add_next_index_long(return_value, (int) ceil(((double) str_bbox.urx)*sz/1000)); 4351 add_next_index_long(return_value, (int) ceil(((double) str_bbox.ury)*sz/1000));
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_language_scanner.c | 869 size_t sz = 0; \ 870 SCNG(output_filter)((unsigned char **)&(zendlval->value.str.val), &sz, (unsigned char *)yytext, (size_t)yyleng TSRMLS_CC); \ 871 zendlval->value.str.len = sz; \ 988 size_t sz = 0; local 990 SCNG(output_filter)((unsigned char **)&(zendlval->value.str.val), &sz, (unsigned char *)s, (size_t)zendlval->value.str.len TSRMLS_CC); 991 zendlval->value.str.len = sz; 1150 size_t sz = 0; local 1151 readsize = SCNG(output_filter)((unsigned char **)&(zendlval->value.str.val), &sz, (unsigned char *)yytext, (size_t)yyleng TSRMLS_CC); 1152 zendlval->value.str.len = sz; 3106 size_t sz local [all...] |