| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 137 ** It used to be the case that setting this value to zero would 151 ** A value of 0 used to mean that the limit was not enforced. 208 ** is used internally to track attached databases. 303 #pragma warn -aus /* Assigned value is never used */ 331 ** The following macros are used to cast pointers to integers and 368 ** Older versions of SQLite used an optional THREADSAFE macro. 396 ** (Historical note: There used to be several other options, but we've 454 ** The testcase() macro is used to aid in coverage testing. When 460 ** can be used to make sure boundary values are tested. For 461 ** bitmask tests, testcase() can be used t 18104 sqlite3MemoryAlarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument 18125 sqlite3_memory_alarm( void(*xCallback)(void *pArg, sqlite3_int64 used,int N), void *pArg, sqlite3_int64 iThreshold ) argument 98533 Bitmask used; /* Bitmask of cursors used by this plan */ member in struct:WhereCost 99986 Bitmask used = 0; local 101093 Bitmask used = 0; local [all...] |
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_arrays.h | 14 size_t used; member in struct:fpm_array_s 42 a->used = 0; 60 return fpm_array_item(a, a->used - 1); 68 if (n < a->used - 1) { 69 void *last = fpm_array_item(a, a->used - 1); 77 --a->used; 87 if (a->used == a->allocated) { 99 ret = fpm_array_item(a, a->used); 101 ++a->used; 112 a->used [all...] |
| H A D | fpm_scoreboard.h | 25 int used; member in struct:fpm_scoreboard_proc_s 37 size_t content_length; /* used with POST only */
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regint.h | 345 unsigned int used; member in struct:_BBuf 374 int used = (pos) + (n);\ 375 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\ 377 if ((buf)->used < (unsigned int )used) (buf)->used = used;\ 381 int used = (pos) + 1;\ 382 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAN [all...] |
| H A D | oniguruma.h | 659 unsigned int used; /* used space for p */ member in struct:re_pattern_buffer 663 int num_mem; /* used memory(...) num counted from 1 */ 690 unsigned char map[ONIG_CHAR_TABLE_SIZE]; /* used as BM skip or char-map */
|
| /PHP_5_5/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 102 ac_uint2 used; member in struct:__anon279 114 * Array used to collect a decomposition before adding it to the decomposition 123 ac_uint2 used; member in struct:__anon280 182 * Array used to collect case mappings before adding them to a list. 256 if (rlp->used == rlp->size) { 271 if (rlp->used == 0) { 274 rlp->used += 2; 281 j = rlp->used - 1; 283 j = rlp->used; 286 rlp->used [all...] |
| /PHP_5_5/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 618 unsigned long used = 0; local 648 used = 255; /* not 256; the driver NUL terminated the buffer */ 660 buf = erealloc(buf, used + 255+1); 661 memcpy(buf + used, buf2, 255); 662 used = used + 255; 664 buf = erealloc(buf, used + C->fetched_len+1); 665 memcpy(buf + used, buf2, C->fetched_len); 666 used = used [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | md5.c | 308 php_uint32 used, free; local 316 used = saved_lo & 0x3f; 318 if (used) { 319 free = 64 - used; 322 memcpy(&ctx->buffer[used], data, size); 326 memcpy(&ctx->buffer[used], data, free); 342 php_uint32 used, free; local 344 used = ctx->lo & 0x3f; 346 ctx->buffer[used++] = 0x80; 348 free = 64 - used; [all...] |
| /PHP_5_5/ext/zlib/ |
| H A D | php_zlib.h | 40 size_t used; member in struct:_php_zlib_buffer
|
| /PHP_5_5/main/ |
| H A D | output.c | 271 if (context.out.data && context.out.used) { 273 php_output_write(context.out.data, context.out.used TSRMLS_CC); 374 ZVAL_STRINGL(p, OG(active)->buffer.data, OG(active)->buffer.used, 1); 387 ZVAL_LONG(p, OG(active)->buffer.used); 592 * Check whether a certain handler is in use and issue a warning that the new handler would conflict with the already used one */ 599 php_error_docref("ref.outcontrol" TSRMLS_CC, E_WARNING, "output handler '%s' cannot be used twice", handler_new); 800 static inline void php_output_context_feed(php_output_context *context, char *data, size_t size, size_t used, zend_bool free) argument 806 context->in.used = used; 820 context->in.used [all...] |
| H A D | php_output.h | 96 size_t used; member in struct:_php_output_buffer
|