Home
last modified time | relevance | path

Searched refs:len (Results 476 – 500 of 535) sorted by relevance

1...<<11121314151617181920>>...22

/PHP-5.6/Zend/
H A Dzend_API.c3637 int len = strlen(value); in zend_declare_property_string() local
3641 ZVAL_STRINGL(property, zend_strndup(value, len), len, 0); in zend_declare_property_string()
3644 ZVAL_STRINGL(property, value, len, 1); in zend_declare_property_string()
4063 ZEND_API const char* zend_find_alias_name(zend_class_entry *ce, const char *name, zend_uint len) /*… in zend_find_alias_name() argument
4070 if (alias->alias_len == len && in zend_find_alias_name()
4101 uint len; in zend_resolve_method_name() local
4104 …if (zend_hash_get_current_key_ex(function_table, &name, &len, &idx, 0, &iterator) != HASH_KEY_IS_S… in zend_resolve_method_name()
4107 --len; in zend_resolve_method_name()
4108 if (len == strlen(f->common.function_name) && in zend_resolve_method_name()
4109 !strncasecmp(name, f->common.function_name, len)) { in zend_resolve_method_name()
[all …]
H A Dzend_language_scanner.c118 #define SET_DOUBLE_QUOTES_SCANNED_LENGTH(len) CG(doc_comment_len) = (len) argument
174 YYLIMIT = YYCURSOR + len; in yy_scan_buffer()
877 ZVAL_STRINGL(zendlval, str, len, 1); in zend_scan_escape_string()
3300 int len = yyleng - 2; in lex_scan() local
3305 --len; in lex_scan()
3308 if (len < SIZEOF_LONG * 8) { in lex_scan()
3309 if (len == 0) { in lex_scan()
3336 int len = yyleng - 2; in lex_scan() local
3341 len--; in lex_scan()
3344 if (len < SIZEOF_LONG * 2 || (len == SIZEOF_LONG * 2 && *hex <= '7')) { in lex_scan()
[all …]
/PHP-5.6/ext/mysqli/
H A Dmysqli_nonapi.c1074 if (tmp_str.len) {
1084 if (tmp_str.len) {
1089 if (tmp_str.len) {
/PHP-5.6/ext/hash/
H A Dhash.c826 int len; in mhash_init() local
835 len = slprintf(buf, 127, "MHASH_%s", algorithm.mhash_name, strlen(algorithm.mhash_name)); in mhash_init()
836 …zend_register_long_constant(buf, len + 1, algorithm.value, CONST_CS | CONST_PERSISTENT, module_num… in mhash_init()
/PHP-5.6/ext/fileinfo/libmagic/
H A Dfile.h379 size_t len; member
/PHP-5.6/ext/mbstring/oniguruma/
H A Dregint.h570 #define GET_LENGTH_INC(len,p) PLATFORM_GET_INC(len, p, LengthType) argument
/PHP-5.6/ext/pdo_sqlite/
H A Dsqlite_driver.c222 static char *pdo_sqlite_last_insert_id(pdo_dbh_t *dbh, const char *name, unsigned int *len TSRMLS_D… in pdo_sqlite_last_insert_id()
228 *len = strlen(id); in pdo_sqlite_last_insert_id()
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt135 function func_mysqli_fetch_array_make_string($len) {
138 for ($i = 0; $i < $len; $i++)
H A Dmysqli_fetch_all_oo.phpt162 function func_mysqli_fetch_array_oo_make_string($len) {
165 for ($i = 0; $i < $len; $i++)
H A Dmysqli_fetch_array.phpt148 function func_mysqli_fetch_array_make_string($len) {
151 for ($i = 0; $i < $len; $i++)
H A Dmysqli_stmt_bind_result.phpt154 function func_mysqli_stmt_bind_make_string($len) {
157 for ($i = 0; $i < $len; $i++)
H A Dmysqli_fetch_all.phpt162 function func_mysqli_fetch_array_make_string($len) {
165 for ($i = 0; $i < $len; $i++)
H A Dmysqli_stmt_bind_param.phpt165 function func_mysqli_stmt_bind_make_string($len) {
168 for ($i = 0; $i < $len; $i++)
/PHP-5.6/ext/dom/
H A Delement.c284 int len; in dom_get_dom1_attribute() local
287 nqname = xmlSplitQName3(name, &len); in dom_get_dom1_attribute()
290 xmlChar *prefix = xmlStrndup(name, len); in dom_get_dom1_attribute()
/PHP-5.6/ext/pcre/
H A Dphp_pcre.c538 static inline void add_offset_pair(zval *result, char *str, int len, int offset, char *name) in add_offset_pair() argument
547 add_next_index_stringl(match_pair, str, len, 1); in add_offset_pair()
983 code.c[code.len-1] = *walk++; in preg_do_eval()
1023 …if (zend_eval_stringl(code.c, code.len, &retval, compiled_string_description TSRMLS_CC) == FAILURE… in preg_do_eval()
/PHP-5.6/ext/soap/
H A Dphp_schema.c62 if (zend_hash_find(sdl->encoders, nscat.c, nscat.len + 1, (void**)&enc_ptr) == SUCCESS) { in create_encoder()
83 zend_hash_update(sdl->encoders, nscat.c, nscat.len + 1, &enc, sizeof(encodePtr), NULL); in create_encoder()
1125 …if (zend_hash_add(sdl->groups, key.c, key.len+1, (void**)&newType, sizeof(sdlTypePtr), NULL) != SU… in schema_group()
1563 if (zend_hash_add(addHash, key.c, key.len + 1, &newType, sizeof(sdlTypePtr), NULL) != SUCCESS) { in schema_element()
1795 …if (zend_hash_add(addHash, key.c, key.len + 1, &newAttr, sizeof(sdlAttributePtr), NULL) != SUCCESS… in schema_attribute()
1884 …zend_hash_add(newAttr->extraAttributes, key2.c, key2.len + 1, &ext, sizeof(sdlExtraAttributePtr), … in schema_attribute()
1975 …if (zend_hash_add(ctx->attributeGroups, key.c, key.len + 1, &newType, sizeof(sdlTypePtr), NULL) !=… in schema_attributeGroup()
H A Dphp_packet_soap.c412 if (zend_hash_find(hdrs, key.c, key.len+1, (void**)&hdr) == SUCCESS) { in parse_packet_soap()
/PHP-5.6/ext/mysql/tests/
H A Dmysql_fetch_array.phpt144 function func_mysql_fetch_array_make_string($len) {
147 for ($i = 0; $i < $len; $i++)
/PHP-5.6/ext/oci8/
H A Doci8_lob.c169 sb4 php_oci_lob_callback (dvoid *ctxp, CONST dvoid *bufxp, oraub8 len, ub1 piece, dvoid **changed_b… in php_oci_lob_callback() argument
171 ub4 lenp = (ub4) len; in php_oci_lob_callback()
/PHP-5.6/ext/mysqlnd/
H A Dmysqlnd.c2718 if (str->len) {
2723 if (str->len) {
2730 if (str->len) {
2735 if (str->len) {
2844 if (tmp_str.len) {
2856 if (tmp_str.len) {
2861 if (tmp_str.len) {
/PHP-5.6/ext/standard/
H A Dhttp_fopen_wrapper.c304 if (php_stream_write(stream, header.c, header.len) != header.len) { in php_stream_url_wrap_http_ex()
H A Dfilters.c278 tags_ss.len = Z_STRLEN_P(filterparams); in strfilter_strip_tags_create()
283 if (php_strip_tags_filter_ctor(inst, tags_ss.c, tags_ss.len, persistent) != SUCCESS) { in strfilter_strip_tags_create()
1955 static int php_dechunk(char *buf, int len, php_chunked_filter_data *data) in php_dechunk() argument
1958 char *end = p + len; in php_dechunk()
/PHP-5.6/ext/spl/
H A Dspl_iterators.c1027 smart_str_appendl(&str, object->prefix[0].c, object->prefix[0].len); in spl_recursive_tree_iterator_get_prefix()
1033 smart_str_appendl(&str, object->prefix[1].c, object->prefix[1].len); in spl_recursive_tree_iterator_get_prefix()
1035 smart_str_appendl(&str, object->prefix[2].c, object->prefix[2].len); in spl_recursive_tree_iterator_get_prefix()
1043 smart_str_appendl(&str, object->prefix[3].c, object->prefix[3].len); in spl_recursive_tree_iterator_get_prefix()
1045 smart_str_appendl(&str, object->prefix[4].c, object->prefix[4].len); in spl_recursive_tree_iterator_get_prefix()
1050 smart_str_appendl(&str, object->prefix[5].c, object->prefix[5].len); in spl_recursive_tree_iterator_get_prefix()
1053 RETVAL_STRINGL(str.c, str.len, 0); in spl_recursive_tree_iterator_get_prefix()
1079 RETVAL_STRINGL(object->postfix[0].c, object->postfix[0].len, 1); in spl_recursive_tree_iterator_get_postfix()
/PHP-5.6/sapi/thttpd/
H A Dthttpd_patch229 +printf("**RESPONSE [%d]** len = %d\n%*.*s\n", hc->conn_fd, hc->responselen, hc->responselen, hc->r…
291 + s.len = 0;
372 + hc->responselen = s.len;
939 + if (bentries.len > 16384) {
941 + write(fd, bentries.c, bentries.len);
942 + bentries.len = 0;
958 + httpd_ntoa_buf.len = 0;
2030 +printf("**RESPONSE2 [%d]** len = %d\n%*.*s\n", hc->conn_fd, hc->responselen, hc->responselen, hc->…
/PHP-5.6/ext/standard/tests/strings/
H A Dexplode1.phpt17 "", // len=0

Completed in 132 milliseconds

1...<<11121314151617181920>>...22