| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_convert.c | 194 int str_len = 0; local 198 intl_convert_utf16_to_utf8( &str, &str_len, 204 ZVAL_STRINGL( utf8_zval, str, str_len, FALSE );
|
| /PHP_5_3/ext/intl/formatter/ |
| H A D | formatter_parse.c | 43 int str_len; local 54 &object, NumberFormatter_ce_ptr, &str, &str_len, &type, &zposition ) == FAILURE ) 66 intl_convert_utf8_to_utf16(&sstr, &sstr_len, str, str_len, &INTL_DATA_ERROR_CODE(nfo)); 131 int str_len; local 139 &object, NumberFormatter_ce_ptr, &str, &str_len, &zcurrency, &zposition ) == FAILURE ) 151 intl_convert_utf8_to_utf16(&sstr, &sstr_len, str, str_len, &INTL_DATA_ERROR_CODE(nfo));
|
| /PHP_5_3/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 403 int str_len, sub_str_len, ustr_len; local 413 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|l", (char **)&str, &str_len, &lstart, &length) == FAILURE) { 421 if ( OUTSIDE_STRING(lstart, str_len) ) { 433 if ( grapheme_ascii_check(str, str_len) >= 0 ) { 434 grapheme_substr_ascii((char *)str, str_len, start, length, ZEND_NUM_ARGS(), (char **) &sub_str, &sub_str_len); 446 intl_convert_utf8_to_utf16(&ustr, &ustr_len, (char *)str, str_len, &status); 681 grapheme_extract_charcount_iter(UBreakIterator *bi, int32_t csize, unsigned char *pstr, int32_t str_len) argument 702 U8_FWD_N(pstr, ret_pos, str_len, pos - prev_pos); 718 grapheme_extract_bytecount_iter(UBreakIterator *bi, int32_t bsize, unsigned char *pstr, int32_t str_len) argument 731 U8_FWD_N(pstr, ret_pos, str_len, po 752 grapheme_extract_count_iter(UBreakIterator *bi, int32_t size, unsigned char *pstr, int32_t str_len) argument 793 int str_len, ustr_len; local [all...] |
| H A D | grapheme_util.c | 52 grapheme_intl_case_fold(UChar** ptr_to_free, UChar **str, int32_t *str_len, UErrorCode *pstatus ) argument 58 dest_len = (*str_len) + ( *str_len / 10 ); 62 size_required = u_strFoldCase(dest, dest_len, *str, *str_len, U_FOLD_CASE_DEFAULT, pstatus); 71 size_required = u_strFoldCase(dest, dest_len, *str, *str_len, U_FOLD_CASE_DEFAULT, pstatus); 84 *str_len = dest_len; 92 grapheme_substr_ascii(char *str, int str_len, int f, int l, int argc, char **sub_str, int *sub_str_len) argument 97 if ((l < 0 && -l > str_len)) { 99 } else if (l > str_len) { 100 l = str_len; [all...] |
| H A D | grapheme_util.h | 27 grapheme_substr_ascii(char *str, int32_t str_len, int32_t f, int32_t l, int argc, char **sub_str, int *sub_str_len);
|
| /PHP_5_3/ext/curl/ |
| H A D | php_curl.h | 123 size_t str_len; member in struct:_php_curl_send_headers
|
| /PHP_5_3/ext/filter/ |
| H A D | logical_filters.c | 69 static int php_filter_parse_int(const char *str, unsigned int str_len, long *ret TSRMLS_DC) { /* {{{ */ argument 72 const char *end = str + str_len; 116 static int php_filter_parse_octal(const char *str, unsigned int str_len, long *ret TSRMLS_DC) { /* {{{ */ argument 118 const char *end = str + str_len; 139 static int php_filter_parse_hex(const char *str, unsigned int str_len, long *ret TSRMLS_DC) { /* {{{ */ argument 141 const char *end = str + str_len; 553 static int _php_filter_validate_ipv4(char *str, int str_len, int *ip) /* {{{ */ argument 555 const char *end = str + str_len; 588 static int _php_filter_validate_ipv6(char *str, int str_len TSRMLS_DC) /* {{{ */ 598 if (!memchr(str, ':', str_len)) { [all...] |
| /PHP_5_3/ext/json/ |
| H A D | json.c | 489 PHP_JSON_API void php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, long depth TSRMLS_DC) /* {{{ */ argument 496 utf16 = (unsigned short *) safe_emalloc((str_len+1), sizeof(unsigned short), 1); 498 utf16_len = utf8_to_utf16(utf16, str, str_len); 525 if (str_len == 4) { 533 } else if (str_len == 5 && !strcasecmp(str, "false")) { 537 if ((type = is_numeric_string(str, str_len, &p, &d, 0)) != 0) { 585 int str_len; local 589 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|bl", &str, &str_len, &assoc, &depth) == FAILURE) { 595 if (!str_len) { 599 php_json_decode(return_value, str, str_len, asso [all...] |
| H A D | php_json.h | 51 PHP_JSON_API void php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, long depth TSRMLS_DC);
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 872 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len); 898 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) argument 901 (const OnigUChar*)str + str_len, (const OnigUChar *)str, 902 (const OnigUChar*)str + str_len, NULL, ONIG_OPTION_NONE) >= 0; 929 static int _php_mb_match_regex(void *opaque, const char *str, size_t str_len) argument 931 return pcre_exec((pcre *)opaque, NULL, str, (int)str_len, 0, 2548 int mblen, str_len, encoding_len; local 2551 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|ls", &str, &str_len, &from, &len, &encoding, &encoding_len) == FAILURE) { 2568 string.len = str_len; 2571 len = str_len; 2718 int str_len, trimmarker_len, encoding_len; local 2861 int str_len, new_len; local 2935 int str_len, from_encoding_len; local 2959 int str_len, from_encoding_len; local 2982 int str_len, from_encoding_len; local 3004 int str_len; local 3529 int str_len, encoding_len; local 3660 _php_mbstr_parse_mail_headers(HashTable *ht, const char *str, size_t str_len) argument [all...] |
| /PHP_5_3/ext/recode/ |
| H A D | recode.c | 149 int req_len, str_len; local 152 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &req, &req_len, &str, &str_len) == FAILURE) { 168 recode_buffer_to_buffer(request, str, str_len, &r, &r_len, &r_alen);
|
| /PHP_5_3/ext/standard/ |
| H A D | base64.c | 224 int str_len, ret_length; local 226 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { 229 result = php_base64_encode((unsigned char*)str, str_len, &ret_length); 245 int str_len, ret_length; local 247 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|b", &str, &str_len, &strict) == FAILURE) { 250 result = php_base64_decode_ex((unsigned char*)str, str_len, &ret_length, strict);
|
| H A D | crypt.c | 154 int str_len, salt_in_len = 0; local 162 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &str, &str_len, &salt_in, &salt_in_len) == FAILURE) {
|
| H A D | dir.c | 291 int ret, str_len; local 293 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { 322 int ret, str_len; local 324 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { 328 if (strlen(str) != str_len) {
|
| H A D | info.h | 71 PHPAPI void php_info_html_esc_write(char *string, int str_len TSRMLS_DC);
|
| H A D | iptc.c | 309 int str_len; local 312 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) != SUCCESS) { 318 while (inx < str_len) { /* find 1st tag */ 326 while (inx < str_len) { 331 if ((inx + 4) >= str_len) 346 if ((len < 0) || (len > str_len) || (inx + len) > str_len) {
|
| H A D | mail.c | 81 int j, str_len; local 83 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { 87 for (j = 0; j < str_len; j++) {
|
| H A D | metaphone.c | 36 int str_len; local 39 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &str, &str_len, 44 if (metaphone((unsigned char *)str, str_len, phones, &result, 1) == 0) {
|
| H A D | php_string.h | 132 int needle_len, char *str, int str_len, int *_new_length, int case_sensitivity, int *replace_count); 134 int needle_len, char *str, int str_len, int *_new_length);
|
| H A D | quot_print.c | 263 int str_len; local 266 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) != SUCCESS) { 270 if (!str_len) { 274 new_str = (char *)php_quot_print_encode((unsigned char *)str, (size_t)str_len, &new_str_len);
|
| H A D | soundex.c | 32 int i, _small, str_len, code, last; local 63 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &str_len) == FAILURE) { 66 if (str_len == 0) { 72 for (i = 0, _small = 0; i < str_len && _small < 4; i++) {
|
| H A D | string.c | 767 int str_len, what_len = 0; local 769 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &str, &str_len, &what, &what_len) == FAILURE) { 773 php_trim(str, str_len, what, what_len, return_value, mode TSRMLS_CC); 1016 int str_len = 0, delim_len = 0; local 1020 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &delim, &delim_len, &str, &str_len, &limit) == FAILURE) { 1031 if (str_len == 0) { 1038 ZVAL_STRINGL(&zstr, str, str_len, 0); 1045 add_index_stringl(return_value, 0, str, str_len, 1); 1063 int str_len; local 1081 str_len 1192 int str_len, tok_len = 0; local 1443 int str_len; local 2111 int str_len; local 2152 int str_len; local 2547 int str_len; local 2594 int str_len; local 2624 int str_len; local 2645 int str_len; local 2807 int str_len, to_len = 0; local 2847 int str_len; local 3026 int str_len, what_len; local 3050 int str_len; local 3072 int str_len; local 3088 int str_len; local 3398 php_str_to_str_ex(char *haystack, int length, char *needle, int needle_len, char *str, int str_len, int *_new_length, int case_sensitivity, int *replace_count) argument 3570 php_str_to_str(char *haystack, int length, char *needle, int needle_len, char *str, int str_len, int *_new_length) argument 3785 int str_len; local 3971 int str_len; local 4051 int str_len; local 4577 int str_len = 0, delim_len = 0, enc_len = 0, esc_len = 0; local 4984 int str_len, format_len, result, num_args = 0; local 5081 int str_len, char_list_len = 0, word_count = 0; local 5159 int format_len = 0, str_len; local 5200 int str_len; local [all...] |
| /PHP_5_3/main/ |
| H A D | php.h | 385 #define PHPWRITE(str, str_len) php_body_write((str), (str_len) TSRMLS_CC) 392 #define PHPWRITE_H(str, str_len) php_header_write((str), (str_len) TSRMLS_CC)
|
| /PHP_5_3/sapi/apache2filter/ |
| H A D | apache_config.c | 127 uint str_len; local 135 zend_hash_get_current_key_ex(&d->config, &str, &str_len, 140 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { 143 zend_hash_update(&n->config, str, str_len, data, sizeof(*data), NULL); 166 uint str_len; local 170 zend_hash_get_current_key_ex(&d->config, &str, &str_len, NULL, 0, 175 if (zend_alter_ini_entry(str, str_len, data->value, data->value_len, data->status, data->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE) == FAILURE) {
|
| /PHP_5_3/sapi/apache2handler/ |
| H A D | apache_config.c | 145 uint str_len; local 157 zend_hash_get_current_key_ex(&d->config, &str, &str_len, 162 if (zend_hash_find(&n->config, str, str_len, (void **) &pe) == SUCCESS) { 166 zend_hash_update(&n->config, str, str_len, data, sizeof(*data), NULL); 188 uint str_len; local 192 zend_hash_get_current_key_ex(&d->config, &str, &str_len, NULL, 0, 197 if (zend_alter_ini_entry(str, str_len, data->value, data->value_len, data->status, data->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE) == FAILURE) {
|