Searched defs:used (Results 1 - 11 of 11) sorted by relevance

/PHP_5_5/ext/sqlite3/libsqlite/
H A Dsqlite3.c137 ** 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 Dfpm_arrays.h14 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 Dfpm_scoreboard.h25 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 Dregint.h345 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 Doniguruma.h659 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 Ducgendat.c102 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 Dodbc_stmt.c618 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 Dmd5.c308 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 Dphp_zlib.h40 size_t used; member in struct:_php_zlib_buffer
/PHP_5_5/main/
H A Doutput.c271 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 Dphp_output.h96 size_t used; member in struct:_php_output_buffer

Completed in 257 milliseconds