| /PHP_5_3/ext/soap/interop/ |
| H A D | client_round2_params.php | 110 $pos = strpos($res,':'); variable 111 if ($pos !== false) { 112 $res = substr($res,$pos+1);
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd_io.c | 134 int gdSeek (gdIOCtx * ctx, const int pos) argument 137 return ((ctx->seek) (ctx, pos));
|
| 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_io_file.c | 114 static int fileSeek (struct gdIOCtx *ctx, const int pos) argument 119 return (fseek (fctx->f, pos, SEEK_SET) == 0);
|
| 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) {
|
| H A D | wbmp.c | 153 int row, col, byte, pel, pos; local 205 pos = 0; 218 wbmp->bitmap[pos] = WBMP_WHITE; 222 wbmp->bitmap[pos] = WBMP_BLACK; 224 pos++;
|
| /PHP_5_3/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 683 int pos = 0, prev_pos = 0; local 687 pos = ubrk_next(bi); 689 if ( UBRK_DONE == pos ) { 694 if ( pos > csize ) { 702 U8_FWD_N(pstr, ret_pos, str_len, pos - prev_pos); 709 prev_pos = pos; 720 int pos = 0, prev_pos = 0; local 724 pos = ubrk_next(bi); 726 if ( UBRK_DONE == pos ) { 731 U8_FWD_N(pstr, ret_pos, str_len, pos 754 int pos = 0, next_pos = 0; local [all...] |
| /PHP_5_3/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_3/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_3/ext/mbstring/libmbfl/mbfl/ |
| 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_3/ext/mbstring/oniguruma/ |
| H A D | reggnu.c | 64 re_match(regex_t* reg, const char* str, int size, int pos, argument 68 (UChar* )(str + pos), regs, ONIG_OPTION_NONE);
|
| /PHP_5_3/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_3/ext/dba/ |
| H A D | dba_cdb.c | 60 uint32 pos; /* current position for traversing */ member in struct:__anon27 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_3/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_3/ext/dba/libflatfile/ |
| H A D | flatfile.c | 113 size_t pos; local 126 pos = php_stream_tell(dba->fp); 135 php_stream_seek(dba->fp, pos, SEEK_SET);
|
| /PHP_5_3/ext/dba/libinifile/ |
| H A D | inifile.h | 36 size_t pos; member in struct:__anon39
|
| /PHP_5_3/ext/hash/ |
| H A D | php_hash_whirlpool.h | 29 int pos; member in struct:__anon77::__anon78
|
| /PHP_5_3/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_3/ext/sysvshm/ |
| H A D | sysvshm.c | 390 long pos; local 393 pos = ptr->start; 396 if (pos >= ptr->end) { 399 shm_var = (sysvshm_chunk*) ((char *) ptr + pos); 401 return pos; 403 pos += shm_var->next; 405 if (shm_var->next <= 0 || pos < ptr->start) {
|
| /PHP_5_3/main/ |
| H A D | getopt.c | 83 char *pos; local 95 if ((pos = php_memnstr(&argv[*optind][arg_start], "=", 1, argv[*optind]+arg_end)) != NULL) { 96 arg_end = pos-&argv[*optind][arg_start];
|
| /PHP_5_3/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...] |
| /PHP_5_3/Zend/ |
| H A D | zend_static_allocator.h | 33 char *pos; member in struct:_Block
|
| H A D | zend_stream.h | 46 size_t pos; member in struct:_zend_mmap
|
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fpm_log.c | 297 zend_llist_position pos; local 301 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); 305 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); 309 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); 315 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); 320 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
|