/PHP-7.1/sapi/litespeed/ |
H A D | lsapidef.h | 152 int32_t m_httpHeaderLen; 153 int32_t m_reqBodyLen; 157 int32_t m_requestMethodOff; 159 int32_t m_cntEnv; 160 int32_t m_cntSpecialEnv; 172 int32_t nameOff; 173 int32_t nameLen; 174 int32_t valueOff; 175 int32_t valueLen; 180 int32_t m_cntHeaders; [all …]
|
/PHP-7.1/ext/intl/grapheme/ |
H A D | grapheme_util.h | 27 void grapheme_substr_ascii(char *str, size_t str_len, int32_t f, int32_t l, char **sub_str, int32_t… 28 …trrpos_ascii(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset); 30 int32_t grapheme_strrpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len… 31 int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len,… 33 int32_t grapheme_split_string(const UChar *text, int32_t text_length, int boundary_array[], int bou… 35 int32_t grapheme_count_graphemes(UBreakIterator *bi, UChar *string, int32_t string_len); 37 int32_t grapheme_get_haystack_offset(UBreakIterator* bi, int32_t offset);
|
H A D | grapheme_util.c | 52 void grapheme_substr_ascii(char *str, size_t str_len, int32_t f, int32_t l, char **sub_str, int32_t… in grapheme_substr_ascii() 54 int32_t str_len2 = (int32_t)str_len; /* in order to avoid signed/unsigned problems */ in grapheme_substr_ascii() 133 int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len,… in grapheme_strpos_utf16() 136 int32_t uhaystack_len = 0, uneedle_len = 0, char_pos, ret_pos, offset_pos = 0; in grapheme_strpos_utf16() 236 int32_t grapheme_split_string(const UChar *text, int32_t text_length, int boundary_array[], int bou… in grapheme_split_string() 274 int32_t grapheme_count_graphemes(UBreakIterator *bi, UChar *string, int32_t string_len) in grapheme_count_graphemes() 298 int32_t grapheme_get_haystack_offset(UBreakIterator* bi, int32_t offset) in grapheme_get_haystack_offset() 300 int32_t pos; in grapheme_get_haystack_offset() 301 int32_t (*iter_op)(UBreakIterator* bi); in grapheme_get_haystack_offset() 339 …strrpos_ascii(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset) in grapheme_strrpos_ascii() [all …]
|
H A D | grapheme_string.c | 113 int32_t offset = 0; in PHP_FUNCTION() 176 int32_t offset = 0; in PHP_FUNCTION() 204 int32_t noffset = offset >= 0 ? offset : (int32_t)haystack_len + offset; in PHP_FUNCTION() 244 int32_t offset = 0; in PHP_FUNCTION() 307 int32_t offset = 0; in PHP_FUNCTION() 380 int32_t ustr_len; in PHP_FUNCTION() 382 int32_t start = 0; in PHP_FUNCTION() 677 static inline int32_t 717 static inline int32_t 742 static inline int32_t [all …]
|
/PHP-7.1/ext/intl/breakiterator/ |
H A D | codepointiterator_internal.h | 55 virtual int32_t first(void); 57 virtual int32_t last(void); 59 virtual int32_t previous(void); 61 virtual int32_t next(void); 63 virtual int32_t current(void) const; 65 virtual int32_t following(int32_t offset); 67 virtual int32_t preceding(int32_t offset); 69 virtual UBool isBoundary(int32_t offset); 71 virtual int32_t next(int32_t n); 74 int32_t &BufferSize,
|
H A D | codepointiterator_internal.cpp | 144 int32_t CodePointBreakIterator::first(void) in first() 152 int32_t CodePointBreakIterator::last(void) in last() 154 int32_t pos = (int32_t)utext_nativeLength(this->fText); in last() 161 int32_t CodePointBreakIterator::previous(void) in previous() 168 return (int32_t)UTEXT_GETNATIVEINDEX(this->fText); in previous() 171 int32_t CodePointBreakIterator::next(void) in next() 178 return (int32_t)UTEXT_GETNATIVEINDEX(this->fText); in next() 181 int32_t CodePointBreakIterator::current(void) const in current() 186 int32_t CodePointBreakIterator::following(int32_t offset) in following() 196 int32_t CodePointBreakIterator::preceding(int32_t offset) in preceding() [all …]
|
H A D | breakiterator_methods.cpp | 183 int32_t (BreakIterator::*func)(), in _breakiter_no_args_ret_int32() 199 int32_t res = (bio->biter->*func)(); in _breakiter_no_args_ret_int32() 206 int32_t (BreakIterator::*func)(int32_t), in _breakiter_int32_ret_int32() argument 231 int32_t res = (bio->biter->*func)((int32_t)arg); in _breakiter_int32_ret_int32() 299 int32_t res = bio->biter->current(); in PHP_FUNCTION() 340 UBool res = bio->biter->isBoundary((int32_t)offset); in PHP_FUNCTION()
|
/PHP-7.1/ext/mysqlnd/ |
H A D | config-win.h | 67 #define sint3korr(A) ((int32_t) ((((zend_uchar) (A)[2]) & 128) ? \ 75 #define sint4korr(A) (*((int32_t *) (A))) 77 #define uint3korr(A) (int32_t) (*((uint32_t *) (A)) & 0xFFFFFF) 90 #define int4store(T,A) *((int32_t *) (T))= (int32_t) (A) 98 #define float8get(V,M) { *((int32_t *) &V) = *((int32_t*) M); \ 99 *(((int32_t *) &V)+1) = *(((int32_t*) M)+1); } 100 #define float8store(T,V) { *((int32_t *) T) = *((int32_t*) &V); \ 101 *(((int32_t *) T)+1) = *(((int32_t*) &V)+1); } 102 #define float4get(V,M) { *((int32_t *) &(V)) = *((int32_t*) (M)); }
|
/PHP-7.1/ext/intl/calendar/ |
H A D | gregoriancalendar_methods.cpp | 157 gcal = new GregorianCalendar((int32_t)largs[0], (int32_t)largs[1], in _php_intlgregcal_constructor_body() 158 (int32_t)largs[2], status); in _php_intlgregcal_constructor_body() 160 gcal = new GregorianCalendar((int32_t)largs[0], (int32_t)largs[1], in _php_intlgregcal_constructor_body() 161 (int32_t)largs[2], (int32_t)largs[3], (int32_t)largs[4], status); in _php_intlgregcal_constructor_body() 163 gcal = new GregorianCalendar((int32_t)largs[0], (int32_t)largs[1], in _php_intlgregcal_constructor_body() 164 (int32_t)largs[2], (int32_t)largs[3], (int32_t)largs[4], (int32_t)largs[5], in _php_intlgregcal_constructor_body() 283 RETURN_BOOL((int)fetch_greg(co)->isLeapYear((int32_t)year)); in PHP_FUNCTION()
|
H A D | calendar_methods.cpp | 98 int32_t count(UErrorCode& status) const { in count() 104 int32_t length; in snext() 114 int32_t length = -1; in next() 208 int32_t count; in PHP_FUNCTION() 243 int32_t result = (co->ucal->*func)( in _php_intlcal_field_uec_ret_in32t_method() 453 co->ucal->set((int32_t)arg1, (int32_t)arg2, (int32_t)arg3); in PHP_FUNCTION() 455 co->ucal->set((int32_t)arg1, (int32_t)arg2, (int32_t)arg3, (int32_t)arg4, (int32_t)arg5); in PHP_FUNCTION() 457 …co->ucal->set((int32_t)arg1, (int32_t)arg2, (int32_t)arg3, (int32_t)arg4, (int32_t)arg5, (int32_t)… in PHP_FUNCTION() 574 int32_t result = co->ucal->fieldDifference((UDate)when, in PHP_FUNCTION() 615 int32_t result = co->ucal->getDayOfWeekType( in PHP_FUNCTION() [all …]
|
/PHP-7.1/ext/date/lib/ |
H A D | timelib_structs.h | 46 typedef int int32_t; typedef 48 typedef long int int32_t; typedef 70 # ifndef int32_t 71 typedef __int32 int32_t; typedef 98 #define INT32_MIN ((int32_t)_I32_MIN) 137 typedef int32_t timelib_long; 158 int32_t offset; 168 int32_t trans; 169 int32_t offset; 200 int32_t *trans; [all …]
|
/PHP-7.1/ext/intl/ |
H A D | intl_convertcpp.cpp | 37 int32_t capacity = (int32_t)str_len + 1; in intl_stringFromChar() 41 int32_t utf16_len = 0; in intl_stringFromChar() 69 int32_t capacity = from.length() * 3; in intl_charFromString() 78 int32_t actual_len; in intl_charFromString()
|
H A D | intl_convert.c | 51 UChar** target, int32_t* target_len, in intl_convert_utf8_to_utf16() 70 u_strFromUTF8( *target, *target_len, &dst_len, src, (int32_t)src_len, status ); in intl_convert_utf8_to_utf16() 119 const UChar* src, int32_t src_len, in intl_convert_utf16_to_utf8() 123 int32_t dst_len; in intl_convert_utf16_to_utf8()
|
H A D | intl_convert.h | 24 UChar** target, int32_t* target_len, 29 const UChar* src, int32_t src_len,
|
/PHP-7.1/ext/intl/formatter/ |
H A D | formatter_parse.c | 42 int32_t sstr_len = 0; in PHP_FUNCTION() 45 int32_t val32, position = 0; in PHP_FUNCTION() 48 int32_t* position_p = NULL; in PHP_FUNCTION() 73 position = (int32_t)Z_LVAL_P( zposition ); in PHP_FUNCTION() 132 int32_t sstr_len = 0; in PHP_FUNCTION() 136 int32_t* position_p = NULL; in PHP_FUNCTION() 137 int32_t position = 0; in PHP_FUNCTION() 161 position = (int32_t)Z_LVAL_P( zposition ); in PHP_FUNCTION()
|
H A D | formatter_format.c | 40 int32_t formatted_len = USIZE(format_buf); in PHP_FUNCTION() 78 formatted_len = unum_format(FORMATTER_OBJECT(nfo), (int32_t)Z_LVAL_P(number), in PHP_FUNCTION() 83 formatted_len = unum_format(FORMATTER_OBJECT(nfo), (int32_t)Z_LVAL_P(number), in PHP_FUNCTION() 142 int32_t formatted_len = USIZE(format_buf); in PHP_FUNCTION() 146 int32_t scurrency_len = 0; in PHP_FUNCTION()
|
/PHP-7.1/Zend/ |
H A D | zend_strtod_int.h | 53 typedef int int32_t; typedef 55 typedef long int int32_t; typedef 119 #ifndef int32_t 120 #define int32_t __int32 macro
|
/PHP-7.1/ext/intl/dateformat/ |
H A D | dateformat_parse.c | 37 …amp(IntlDateFormatter_object *dfo, char* text_to_parse, size_t text_len, int32_t *parse_pos, zval … in internal_parse_to_timestamp() 42 int32_t text_utf16_len = 0; in internal_parse_to_timestamp() 84 …ime(IntlDateFormatter_object *dfo, char* text_to_parse, size_t text_len, int32_t *parse_pos, zval … in internal_parse_to_localtime() 88 int32_t text_utf16_len = 0; in internal_parse_to_localtime() 133 int32_t parse_pos = -1; in PHP_FUNCTION() 155 parse_pos = (int32_t)Z_LVAL_P(z_parse_pos); in PHP_FUNCTION() 177 int32_t parse_pos = -1; in PHP_FUNCTION() 199 parse_pos = (int32_t)Z_LVAL_P(z_parse_pos); in PHP_FUNCTION()
|
H A D | dateformat_format.c | 39 int32_t resultlengthneeded =0 ; in internal_format() 63 static int32_t internal_get_arr_ele(IntlDateFormatter_object *dfo, in internal_get_arr_ele() 67 int32_t result = 0; in internal_get_arr_ele() 104 int32_t year, in internal_get_timestamp()
|
/PHP-7.1/ext/intl/normalizer/ |
H A D | normalizer_normalize.c | 41 int32_t uinput_len = 0; in PHP_FUNCTION() 46 int32_t uret_len = 0; in PHP_FUNCTION() 50 int32_t size_needed; in PHP_FUNCTION() 110 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION() 133 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION() 232 …uret = unorm_isNormalizedWithOptions( uinput, uinput_len, form, (int32_t) 0 /* options */, &status… in PHP_FUNCTION()
|
/PHP-7.1/ext/intl/idn/ |
H A D | idn.c | 137 const char *domain, int32_t domain_len, uint32_t option, int mode, zval *idna_info) in php_intl_idn_to_46() 141 int32_t len; in php_intl_idn_to_46() 142 int32_t buffer_capac = 255; /* no domain name may exceed this */ in php_intl_idn_to_46() 202 const char *domain, int32_t domain_len, uint32_t option, int mode) in php_intl_idn_to() 209 int32_t converted_ret_len; in php_intl_idn_to() 229 …converted_ret_len = uidna_IDNToASCII(ustring, ustring_len, converted, MAXPATHLEN, (int32_t)option,… in php_intl_idn_to() 231 …converted_ret_len = uidna_IDNToUnicode(ustring, ustring_len, converted, MAXPATHLEN, (int32_t)optio… in php_intl_idn_to() 311 domain, (int32_t)domain_len, (uint32_t)option, mode); in php_intl_idn_handoff() 315 php_intl_idn_to_46(INTERNAL_FUNCTION_PARAM_PASSTHRU, domain, (int32_t)domain_len, in php_intl_idn_handoff()
|
/PHP-7.1/ext/standard/ |
H A D | php_lcg.h | 27 int32_t s1; 28 int32_t s2;
|
/PHP-7.1/win32/ |
H A D | php_stdint.h | 83 #ifndef int32_t 84 typedef __int32 int32_t; typedef 101 typedef int32_t int_least32_t; 111 typedef int32_t int_fast32_t; 138 #define INT32_MIN ((int32_t)_I32_MIN)
|
/PHP-7.1/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 69 int32_t& count) { in getArgTypeList() 83 int32_t fmt_count = 0; in umsg_format_arg_count() 96 int32_t parts_count; in umsg_get_numeric_types() 142 int32_t parts_count; in umsg_parse_format() 199 int32_t argNumber = name_part.getValue(); in umsg_parse_format() 327 int32_t count; in umsg_set_timezone() 392 int32_t *formatted_len) in umsg_format_helper() 509 int32_t tInt32 = 0; in umsg_format_helper() 518 tInt32 = (int32_t)Z_DVAL_P(elem); in umsg_format_helper() 527 tInt32 = (int32_t)Z_LVAL_P(elem); in umsg_format_helper() [all …]
|
/PHP-7.1/main/ |
H A D | php_stdint.h | 134 typedef int32 int32_t; variable 136 typedef int int32_t; 138 typedef long int32_t;
|