| /PHP_5_4/ext/spl/internal/ |
| H A D | limititerator.inc | 29 private $pos; 48 $this->pos = 0; 65 $this->pos = $position; 67 while($this->pos < $position && $this->it->valid()) { 78 $this->pos = 0; 85 return ($this->count == -1 || $this->pos < $this->offset + $this->count) 105 $this->pos++; 112 return $this->pos;
|
| /PHP_5_4/ext/gd/libgd/ |
| H A D | gd_io_dp.c | 35 int pos; member in struct:dpStruct 146 return (dctx->dp->pos); 149 static int dynamicSeek (struct gdIOCtx *ctx, const int pos) argument 162 bytesNeeded = pos; 174 if (pos > dp->logicalSize) { 175 dp->logicalSize = pos; 178 dp->pos = pos; 191 dp->pos = 0; 236 remain = dp->logicalSize - dp->pos; [all...] |
| H A D | gd_wbmp.c | 96 int x, y, pos; local 105 pos = 0; 109 wbmp->bitmap[pos] = WBMP_BLACK; 111 pos++; 133 int col, row, pos; local 150 pos = 0; 153 if (wbmp->bitmap[pos++] == WBMP_WHITE) {
|
| /PHP_5_4/ext/intl/grapheme/ |
| H A D | grapheme_util.c | 159 int ret_pos, pos; local 229 pos = ubrk_last(bi); 230 puhaystack = uhaystack + pos; 234 pos = ubrk_previous(bi); 236 if ( UBRK_DONE == pos ) { 240 puhaystack = uhaystack + pos; 249 while ( UBRK_DONE != pos ) { 255 if ( ubrk_isBoundary(bi, pos + uneedle_len) ) { 258 ret_pos = grapheme_count_graphemes(bi, uhaystack, pos); 263 ubrk_isBoundary(bi, pos); 401 int ret_len, pos; local 439 int pos = 0; local 526 int32_t pos; local [all...] |
| /PHP_5_4/ext/intl/msgformat/ |
| H A D | msgformat_format.c | 41 HashPosition pos; local 56 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos); local 59 zend_hash_get_current_data_ex(Z_ARRVAL_P(args), (void **)&val, &pos); local 63 zend_hash_move_forward_ex(Z_ARRVAL_P(args), &pos); local
|
| /PHP_5_4/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_htmlent.c | 181 int pos, ent = 0; local 198 for (pos=3; pos<filter->status; pos++) { 199 int v = buffer[pos]; 218 for (pos=2; pos<filter->status; pos++) { 219 int v = buffer[pos]; 235 for (pos 290 int status, pos = 0; local [all...] |
| /PHP_5_4/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfl_memory_device.c | 58 device->pos= 0; 97 device->pos = 0; 105 device->pos = 0; 112 if (device->pos > 0) { 113 device->pos--; 121 result->len = device->pos; 126 device->pos= 0; 143 if (device->pos >= device->length) { 157 device->buffer[device->pos++] = (unsigned char)c; 166 if ((device->pos [all...] |
| H A D | mbfl_memory_device.h | 42 int pos; member in struct:_mbfl_memory_device 49 int pos; member in struct:_mbfl_wchar_device
|
| /PHP_5_4/ext/mbstring/libmbfl/tests/ |
| H A D | strwidth.c | 60 if (dev.pos >= dev.length) { 70 dev.buffer[dev.pos++] = (unsigned char)c;
|
| /PHP_5_4/Zend/ |
| H A D | zend_llist.c | 260 ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos) argument 262 zend_llist_position *current = pos ? pos : &l->traverse_ptr; 273 ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos) argument 275 zend_llist_position *current = pos ? pos : &l->traverse_ptr; 286 ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos) argument 288 zend_llist_position *current = pos ? pos : &l->traverse_ptr; 300 ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) argument [all...] |
| H A D | zend_llist.h | 66 ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos); 67 ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos); 68 ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos); 69 ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos);
|
| H A D | zend_static_allocator.c | 27 block->pos = block->bp = (char *) emalloc(block_size); 33 char *retval = block->pos; 34 if ((block->pos += size) >= block->end) {
|
| H A D | zend_static_allocator.h | 33 char *pos; member in struct:_Block
|
| /PHP_5_4/ext/curl/ |
| H A D | multi.c | 218 zend_llist_position pos; local 222 for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch; 223 pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) { 290 zend_llist_position pos; local 295 for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch; 296 pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) { 343 zend_llist_position pos; local 347 for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch; 348 pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
|
| /PHP_5_4/ext/dba/ |
| H A D | dba_cdb.c | 60 uint32 pos; /* current position for traversing */ member in struct:__anon44 140 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos TSRMLS_CC) 144 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) 281 cdb->pos = 2048 + 4 + 4 + klen + dlen; 298 CSEEK(cdb->pos); 312 cdb->pos += 8 + klen + dlen;
|
| /PHP_5_4/ext/dba/libcdb/ |
| H A D | cdb.c | 46 static int cdb_match(struct cdb *c, char *key, unsigned int len, uint32 pos TSRMLS_DC) 55 if (cdb_read(c, buf, n, pos TSRMLS_CC) == -1) 59 pos += n; 104 int cdb_read(struct cdb *c, char *buf, unsigned int len, uint32 pos TSRMLS_DC) 106 if (php_stream_seek(c->fp, pos, SEEK_SET) == -1) { 132 uint32 pos; local 153 uint32_unpack(buf + 4, &pos); 154 if (!pos) 162 if (cdb_read(c, buf, 8, pos TSRMLS_CC) == -1) 166 switch(cdb_match(c, key, len, pos [all...] |
| H A D | cdb_make.h | 52 uint32 pos; member in struct:cdb_make
|
| /PHP_5_4/ext/hash/ |
| H A D | php_hash_whirlpool.h | 29 int pos; member in struct:__anon97::__anon98
|
| /PHP_5_4/ext/mysqli/ |
| H A D | mysqli_embedded.c | 42 HashPosition pos; local 58 zend_hash_internal_pointer_reset_ex(HASH_OF(args), &pos); local 60 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos)) { 63 if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) { 79 zend_hash_internal_pointer_reset_ex(HASH_OF(grps), &pos); local 81 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(grps), &pos)) { 84 if (zend_hash_get_current_data_ex(HASH_OF(grps), (void **) &item, &pos) == FAILURE) {
|
| /PHP_5_4/ext/pdo/ |
| H A D | pdo.c | 103 HashPosition pos; local 112 zend_hash_internal_pointer_reset_ex(&pdo_driver_hash, &pos); 113 while (SUCCESS == zend_hash_get_current_data_ex(&pdo_driver_hash, (void**)&pdriver, &pos)) { 115 zend_hash_move_forward_ex(&pdo_driver_hash, &pos); 398 HashPosition pos; local 405 zend_hash_internal_pointer_reset_ex(&pdo_driver_hash, &pos); 406 while (SUCCESS == zend_hash_get_current_data_ex(&pdo_driver_hash, (void**)&pdriver, &pos)) { 408 zend_hash_move_forward_ex(&pdo_driver_hash, &pos);
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_observer.c | 85 HashPosition pos; member in struct:_spl_SplObjectStorage 240 HashPosition pos; local 243 zend_hash_internal_pointer_reset_ex(&other->storage, &pos); 244 while (zend_hash_get_current_data_ex(&other->storage, (void **)&element, &pos) == SUCCESS) { 246 zend_hash_move_forward_ex(&other->storage, &pos); 249 zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos); 318 HashPosition pos; local 340 zend_hash_internal_pointer_reset_ex(&intern->storage, &pos); 341 while (zend_hash_get_current_data_ex(&intern->storage, (void **)&element, &pos) == SUCCESS) { 351 zend_hash_move_forward_ex(&intern->storage, &pos); 370 HashPosition pos; local 748 HashPosition pos; local [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | formatted_print.c | 55 php_sprintf_appendchar(char **buffer, int *pos, int *size, char add TSRMLS_DC) argument 57 if ((*pos + 1) >= *size) { 62 PRINTF_DEBUG(("sprintf: appending '%c', pos=\n", add, *pos)); 63 (*buffer)[(*pos)++] = add; 69 php_sprintf_appendstring(char **buffer, int *pos, int *size, char *add, argument 86 *buffer, *pos, *size, add, min_width, padding, alignment)); 89 if(m_width > INT_MAX - *pos - 1) { 93 req_size = *pos + m_width + 1; 107 (*buffer)[(*pos) 129 php_sprintf_appendint(char **buffer, int *pos, int *size, long number, int width, char padding, int alignment, int always_sign) argument 173 php_sprintf_appenduint(char **buffer, int *pos, int *size, unsigned long number, int width, char padding, int alignment) argument 205 php_sprintf_appenddouble(char **buffer, int *pos, int *size, double number, int width, char padding, int alignment, int precision, int adjust, char fmt, int always_sign TSRMLS_DC) argument 296 php_sprintf_append2n(char **buffer, int *pos, int *size, long number, int width, char padding, int alignment, int n, char *chartable, int expprec) argument 327 php_sprintf_getnumber(char *buffer, int *pos) argument [all...] |
| H A D | mail.c | 57 #define SKIP_LONG_HEADER_SEP(str, pos) \ 58 if (str[pos] == '\r' && str[pos + 1] == '\n' && (str[pos + 2] == ' ' || str[pos + 2] == '\t')) { \ 59 pos += 2; \ 60 while (str[pos + 1] == ' ' || str[pos + 1] == '\t') { \ 61 pos++; \
|
| H A D | html.c | 66 #define MB_FAILURE(pos, advance) do { \ 67 *cursor = pos + (advance); \ 72 #define CHECK_LEN(pos, chars_need) ((str_len - (pos)) >= (chars_need)) 96 size_t pos = *cursor; local 100 assert(pos <= str_len); 102 if (!CHECK_LEN(pos, 1)) 103 MB_FAILURE(pos, 1); 113 c = str[pos]; 116 pos 1382 char *pos = (char*)&old[cursor+1]; local [all...] |
| /PHP_5_4/main/streams/ |
| H A D | glob_wrapper.c | 114 char *pos, *gpath = path; local 116 if ((pos = strrchr(path, '/')) != NULL) { 117 path = pos+1; 120 if ((pos = strrchr(path, '\\')) != NULL) { 121 path = pos+1; 214 char *tmp, *pos; local 239 pos = path; 240 if ((tmp = strrchr(pos, '/')) != NULL) { 241 pos = tmp+1; 244 if ((tmp = strrchr(pos, '\\')) ! [all...] |