| /PHP_5_5/ext/bcmath/libbcmath/src/ |
| H A D | num2long.c | 52 int index; local 57 for (index=num->n_len; (index>0) && (val<=(LONG_MAX/BASE)); index--) 61 if (index>0) val = 0;
|
| H A D | num2str.c | 49 int index, signch; local 65 for (index=num->n_len; index>0; index--) 72 for (index=0; index<num->n_scale; index++)
|
| H A D | output.c | 96 int index, fdigit, pre_space; local 112 for (index=num->n_len; index>0; index--) 124 for (index=0; index<num->n_scale; index++)
|
| /PHP_5_5/ext/zip/lib/ |
| H A D | zip_stat_index.c | 2 zip_stat_index.c -- get information about file by index 43 zip_stat_index(struct zip *za, zip_uint64_t index, int flags, 48 if (index >= za->nentry) { 53 if ((name=zip_get_name(za, index, flags)) == NULL) 58 && ZIP_ENTRY_DATA_CHANGED(za->entry+index)) { 59 if (zip_source_stat(za->entry[index].source, st) < 0) { 65 if (za->cdir == NULL || index >= za->cdir->nentry) { 72 st->crc = za->cdir->entry[index].crc; 73 st->size = za->cdir->entry[index].uncomp_size; 74 st->mtime = za->cdir->entry[index] 41 zip_stat_index(struct zip *za, zip_uint64_t index, int flags, struct zip_stat *st) argument [all...] |
| H A D | zip_stat_init.c | 47 st->index = ZIP_UINT64_MAX;
|
| /PHP_5_5/sapi/cli/ |
| H A D | php_http_parser.c | 334 uint32_t index = parser->index; local 414 index = 2; 579 index = 1; 607 if (ch == ' ' && (matcher[index] == '\0' || parser->method == PHP_HTTP_NOT_IMPLEMENTED)) { 609 } else if (ch == matcher[index]) { 612 if (index == 1 && ch == 'H') { 614 } else if (index == 2 && ch == 'P') { 618 if (index == 1 && ch == 'O') { 620 } else if (index [all...] |
| /PHP_5_5/scripts/apache/ |
| H A D | conffix.awk | 15 print "php_admin_value " phpcommand " " substr($0,index($0,$1)+length($1)+1)
|
| H A D | htaccessfix.awk | 15 print "php_value " phpcommand " " substr($0,index($0,$1)+length($1)+1)
|
| /PHP_5_5/scripts/dev/generate-phpt/src/setup/ |
| H A D | gtCommandLineOptions.php | 33 public function isValidOptionArg($array, $index) { 34 if (!isset($array[$index])) 38 return substr($array[$index], 0, 1) != '-';
|
| /PHP_5_5/win32/ |
| H A D | readdir.c | 27 int index; local 40 index = strlen(filespec) - 1; 41 if (index >= 0 && (filespec[index] == '/' || 42 (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1]))))) 43 filespec[index] = '\0'; 141 int index; local 154 index [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_dynamic_array.c | 58 ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index) argument 60 if (index >= da->current) { 63 return (void *)(da->array+index*da->element_size);
|
| H A D | zend_dynamic_array.h | 36 ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index);
|
| /PHP_5_5/ext/dom/ |
| H A D | domimplementationlist.c | 32 ZEND_ARG_INFO(0, index) 64 /* {{{ proto domdomimplementation dom_domimplementationlist_item(int index);
|
| H A D | domstringlist.c | 32 ZEND_ARG_INFO(0, index) 64 /* {{{ proto domstring dom_domstringlist_item(int index);
|
| H A D | namelist.c | 32 ZEND_ARG_INFO(0, index) 36 ZEND_ARG_INFO(0, index) 67 /* {{{ proto string dom_namelist_get_name(int index); 77 /* {{{ proto string dom_namelist_get_namespace_uri(int index);
|
| H A D | nodelist.c | 33 ZEND_ARG_INFO(0, index) 101 /* {{{ proto DOMNode dom_nodelist_item(int index); 108 long index; local 119 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_nodelist_class_entry, &index) == FAILURE) { 123 if (index >= 0) { 130 itemnode = php_dom_libxml_hash_iter(objmap->ht, index); 132 itemnode = php_dom_libxml_notation_iter(objmap->ht, index); 137 if (zend_hash_index_find(nodeht, index, (void **) &entry)==SUCCESS) { 147 while (count < index && curnode != NULL) { 158 itemnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, index); [all...] |
| H A D | dom_iterators.c | 34 int index; member in struct:_nodeIterator 41 int index; member in struct:_notationIterator 49 if(priv->cur < priv->index) { 83 xmlNode *php_dom_libxml_hash_iter(xmlHashTable *ht, int index) /* {{{ */ argument 89 if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) { 92 iter->index = index; 104 xmlNode *php_dom_libxml_notation_iter(xmlHashTable *ht, int index) /* {{{ */ argument 110 if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) { 113 iter->index [all...] |
| /PHP_5_5/ext/hash/ |
| H A D | hash_ripemd.c | 258 unsigned int i, index, partLen; local 261 index = (unsigned int) ((context->count[0] >> 3) & 0x3F); 269 partLen = 64 - index; 274 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); 281 index = 0; 287 memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i); 356 unsigned int i, index, partLen; local 359 index = (unsigned int) ((context->count[0] >> 3) & 0x3F); 367 partLen = 64 - index; 372 memcpy((unsigned char*) & context->buffer[index], (unsigne 455 unsigned int i, index, partLen; local 563 unsigned int i, index, partLen; local 627 unsigned int index, padLen; local 664 unsigned int index, padLen; local 701 unsigned int index, padLen; local 738 unsigned int index, padLen; local [all...] |
| H A D | hash_sha.c | 336 unsigned int i, index, partLen; local 339 index = (unsigned int) ((context->count[0] >> 3) & 0x3F); 347 partLen = 64 - index; 353 ((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen); 359 index = 0; 365 ((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], 377 unsigned int index, padLen; local 391 index = (unsigned int) ((context->count[0] >> 3) & 0x3f); 392 padLen = (index < 56) ? (56 - index) 544 unsigned int i, index, partLen; local 584 unsigned int index, padLen; local 621 unsigned int i, index, partLen; local 661 unsigned int index, padLen; local 835 unsigned int i, index, partLen; local 875 unsigned int index, padLen; local 949 unsigned int i, index, partLen; local 989 unsigned int index, padLen; local [all...] |
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_embedded.c | 43 int index, rc; local 60 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos)) { 69 arguments[++index] = Z_STRVAL_PP(item); 81 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(grps), &pos)) { 90 groups[++index] = Z_STRVAL_PP(item); 92 groups[index] = NULL;
|
| H A D | mysqli_report.c | 58 char index[15]; local 61 strcpy(index, "Bad index"); 63 strcpy(index, "No index"); 67 php_mysqli_throw_sql_exception("00000", 0 TSRMLS_CC, "%s used in query/prepared statement %s", index, query);
|
| /PHP_5_5/ext/odbc/ |
| H A D | php_birdstep.h | 31 long index; member in struct:VConn 44 long index; member in struct:Vresult
|
| /PHP_5_5/main/ |
| H A D | rfc1867.c | 89 char *s = varname, *index = NULL, *indexend = NULL, *p; local 110 /* find index */ 111 index = strchr(varname, '['); 112 if (index) { 113 index++; 114 s = index; 120 while (index) { 121 while (*index == ' ' || *index == '\r' || *index [all...] |
| /PHP_5_5/sapi/fpm/fpm/events/ |
| H A D | poll.c | 160 /* ensure ev->index is valid */ 161 if (q->ev && q->ev->index >= 0 && q->ev->index < npollfds && q->ev->fd == active_pollfds[q->ev->index].fd) { 164 if (active_pollfds[q->ev->index].revents & POLLIN) { 197 ev->index = next_free_slot++; 216 ev->index = next_free_slot++; 236 if (ev->index >= 0 && ev->index < npollfds && pollfds[ev->index] [all...] |
| /PHP_5_5/ext/opcache/ |
| H A D | zend_accelerator_hash.c | 77 zend_ulong index; local 89 index = hash_value % accel_hash->max_num_entries; 92 entry = accel_hash->hash_table[index]; 135 entry->next = accel_hash->hash_table[index]; 136 accel_hash->hash_table[index] = entry; 146 zend_ulong index; local 150 index = hash_value % accel_hash->max_num_entries; 152 entry = accel_hash->hash_table[index]; 174 zend_ulong index; local 178 index 199 zend_ulong index; local [all...] |