Searched defs:used (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_3/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_3/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_3/ext/mbstring/oniguruma/ |
| H A D | oniguruma.h | 742 unsigned int used; /* used space for p */ member in struct:re_pattern_buffer 746 int num_mem; /* used memory(...) num counted from 1 */ 773 unsigned char map[ONIG_CHAR_TABLE_SIZE]; /* used as BM skip or char-map */
|
| H A D | regint.h | 453 unsigned int used; member in struct:_BBuf 482 int used = (pos) + (n);\ 483 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\ 485 if ((buf)->used < (unsigned int )used) (buf)->used = used;\ 489 int used = (pos) + 1;\ 490 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAN [all...] |
| /PHP_5_3/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 102 ac_uint2 used; member in struct:__anon253 114 * Array used to collect a decomposition before adding it to the decomposition 123 ac_uint2 used; member in struct:__anon254 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_3/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_3/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...] |
Completed in 148 milliseconds