Home
last modified time | relevance | path

Searched refs:int32_t (Results 1 – 25 of 101) sorted by relevance

12345

/PHP-8.0/sapi/litespeed/
H A Dlsapidef.h150 int32_t m_httpHeaderLen;
151 int32_t m_reqBodyLen;
155 int32_t m_requestMethodOff;
157 int32_t m_cntEnv;
158 int32_t m_cntSpecialEnv;
170 int32_t nameOff;
171 int32_t nameLen;
172 int32_t valueOff;
173 int32_t valueLen;
178 int32_t m_cntHeaders;
[all …]
/PHP-8.0/ext/intl/grapheme/
H A Dgrapheme_util.h25 void grapheme_substr_ascii(char *str, size_t str_len, int32_t f, int32_t l, char **sub_str, int32_t
26 …trrpos_ascii(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset);
28 int32_t grapheme_strrpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len…
29 int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len,…
31 int32_t grapheme_split_string(const UChar *text, int32_t text_length, int boundary_array[], int bou…
33 int32_t grapheme_count_graphemes(UBreakIterator *bi, UChar *string, int32_t string_len);
35 int32_t grapheme_get_haystack_offset(UBreakIterator* bi, int32_t offset);
H A Dgrapheme_util.c50 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()
52 int32_t str_len2 = (int32_t)str_len; /* in order to avoid signed/unsigned problems */ in grapheme_substr_ascii()
99 int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len,… in grapheme_strpos_utf16()
102 int32_t uhaystack_len = 0, uneedle_len = 0, char_pos, ret_pos, offset_pos = 0; in grapheme_strpos_utf16()
174 int32_t prev_pos = USEARCH_DONE; in grapheme_strpos_utf16()
231 int32_t grapheme_split_string(const UChar *text, int32_t text_length, int boundary_array[], int bou… in grapheme_split_string()
269 int32_t grapheme_count_graphemes(UBreakIterator *bi, UChar *string, int32_t string_len) in grapheme_count_graphemes()
293 int32_t grapheme_get_haystack_offset(UBreakIterator* bi, int32_t offset) in grapheme_get_haystack_offset()
295 int32_t pos; in grapheme_get_haystack_offset()
296 int32_t (*iter_op)(UBreakIterator* bi); in grapheme_get_haystack_offset()
[all …]
H A Dgrapheme_string.c108 int32_t offset = 0; in PHP_FUNCTION()
158 int32_t offset = 0; in PHP_FUNCTION()
180 int32_t noffset = offset >= 0 ? offset : (int32_t)haystack_len + offset; in PHP_FUNCTION()
219 int32_t offset = 0; in PHP_FUNCTION()
274 int32_t offset = 0; in PHP_FUNCTION()
339 int32_t ustr_len; in PHP_FUNCTION()
341 int32_t start = 0; in PHP_FUNCTION()
614 static inline int32_t
654 static inline int32_t
679 static inline int32_t
[all …]
/PHP-8.0/ext/mysqlnd/
H A Dconfig-win.h66 #define sint3korr(A) ((int32_t) ((((zend_uchar) (A)[2]) & 128) ? \
74 #define sint4korr(A) (*((int32_t *) (A)))
76 #define uint3korr(A) (int32_t) (*((uint32_t *) (A)) & 0xFFFFFF)
89 #define int4store(T,A) *((int32_t *) (T))= (int32_t) (A)
97 #define float8get(V,M) { *((int32_t *) &V) = *((int32_t*) M); \
98 *(((int32_t *) &V)+1) = *(((int32_t*) M)+1); }
99 #define float8store(T,V) { *((int32_t *) T) = *((int32_t*) &V); \
100 *(((int32_t *) T)+1) = *(((int32_t*) &V)+1); }
101 #define float4get(V,M) { *((int32_t *) &(V)) = *((int32_t*) (M)); }
/PHP-8.0/ext/intl/breakiterator/
H A Dcodepointiterator_internal.h60 virtual int32_t first(void);
62 virtual int32_t last(void);
64 virtual int32_t previous(void);
66 virtual int32_t next(void);
68 virtual int32_t current(void) const;
70 virtual int32_t following(int32_t offset);
72 virtual int32_t preceding(int32_t offset);
74 virtual UBool isBoundary(int32_t offset);
76 virtual int32_t next(int32_t n);
79 int32_t &BufferSize,
H A Dcodepointiterator_internal.cpp147 int32_t CodePointBreakIterator::first(void) in first()
155 int32_t CodePointBreakIterator::last(void) in last()
157 int32_t pos = (int32_t)utext_nativeLength(this->fText); in last()
164 int32_t CodePointBreakIterator::previous(void) in previous()
171 return (int32_t)UTEXT_GETNATIVEINDEX(this->fText); in previous()
174 int32_t CodePointBreakIterator::next(void) in next()
181 return (int32_t)UTEXT_GETNATIVEINDEX(this->fText); in next()
184 int32_t CodePointBreakIterator::current(void) const in current()
189 int32_t CodePointBreakIterator::following(int32_t offset) in following()
199 int32_t CodePointBreakIterator::preceding(int32_t offset) in preceding()
[all …]
H A Dbreakiterator_methods.cpp174 int32_t (BreakIterator::*func)(), in _breakiter_no_args_ret_int32()
187 int32_t res = (bio->biter->*func)(); in _breakiter_no_args_ret_int32()
193 int32_t (BreakIterator::*func)(int32_t), in _breakiter_int32_ret_int32() argument
211 int32_t res = (bio->biter->*func)((int32_t)arg); in _breakiter_int32_ret_int32()
267 int32_t res = bio->biter->current(); in PHP_METHOD()
304 UBool res = bio->biter->isBoundary((int32_t)offset); in PHP_METHOD()
/PHP-8.0/ext/ffi/tests/
H A D041.phpt62 object(FFI\CData:int32_t)#%d (1) {
66 object(FFI\CData:int32_t[2])#%d (2) {
72 object(FFI\CData:int32_t)#%d (1) {
76 object(FFI\CData:int32_t[2])#%d (2) {
82 object(FFI\CType:int32_t)#%d (0) {
84 object(FFI\CType:int32_t[2])#%d (0) {
86 object(FFI\CType:int32_t)#%d (0) {
88 object(FFI\CType:int32_t[2])#%d (0) {
90 object(FFI\CData:int32_t)#%d (1) {
94 object(FFI\CData:int32_t[2])#%d (2) {
[all …]
H A D005.phpt16 object(FFI\CData:int32_t[2][2])#%d (2) {
18 object(FFI\CData:int32_t[2])#%d (2) {
25 object(FFI\CData:int32_t[2])#%d (2) {
H A D006.phpt17 object(FFI\CData:int32_t*[2])#%d (2) {
21 object(FFI\CData:int32_t*)#%d (1) {
26 object(FFI\CData:int32_t*[2])#%d (2) {
H A D040.phpt51 object(FFI\CData:int32_t)#%d (1) {
55 object(FFI\CType:int32_t)#%d (0) {
67 object(FFI\CData:int32_t*)#%d (1) {
71 object(FFI\CData:int32_t)#%d (1) {
80 object(FFI\CType:int32_t)#%d (0) {
92 object(FFI\CData:int32_t*)#%d (1) {
H A D026.phpt19 object(FFI\CData:int32_t[3])#%d (3) {
27 object(FFI\CData:int32_t[3])#%d (3) {
/PHP-8.0/ext/intl/calendar/
H A Dgregoriancalendar_methods.cpp141 gcal = new GregorianCalendar((int32_t)largs[0], (int32_t)largs[1], in _php_intlgregcal_constructor_body()
142 (int32_t)largs[2], status); in _php_intlgregcal_constructor_body()
144 gcal = new GregorianCalendar((int32_t)largs[0], (int32_t)largs[1], in _php_intlgregcal_constructor_body()
145 (int32_t)largs[2], (int32_t)largs[3], (int32_t)largs[4], status); in _php_intlgregcal_constructor_body()
147 gcal = new GregorianCalendar((int32_t)largs[0], (int32_t)largs[1], in _php_intlgregcal_constructor_body()
148 (int32_t)largs[2], (int32_t)largs[3], (int32_t)largs[4], (int32_t)largs[5], in _php_intlgregcal_constructor_body()
254 RETURN_BOOL((int)fetch_greg(co)->isLeapYear((int32_t)year)); in PHP_FUNCTION()
H A Dcalendar_methods.cpp118 int32_t count(UErrorCode& status) const { in count()
124 int32_t length; in snext()
134 int32_t length = -1; in next()
207 int32_t count; in PHP_FUNCTION()
232 int32_t result = (co->ucal->*func)( in _php_intlcal_field_uec_ret_in32t_method()
398 co->ucal->set((int32_t)args[0], (int32_t)args[1], (int32_t)args[2]); in PHP_FUNCTION()
403 …co->ucal->set((int32_t)args[0], (int32_t)args[1], (int32_t)args[2], (int32_t)args[3], (int32_t)arg… in PHP_FUNCTION()
405 …co->ucal->set((int32_t)args[0], (int32_t)args[1], (int32_t)args[2], (int32_t)args[3], (int32_t)arg… in PHP_FUNCTION()
479 int32_t result = co->ucal->fieldDifference((UDate)when, in PHP_FUNCTION()
513 int32_t result = co->ucal->getDayOfWeekType( in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/intl/
H A Dintl_convertcpp.cpp33 int32_t capacity = (int32_t)str_len + 1; in intl_stringFromChar()
37 int32_t utf16_len = 0; in intl_stringFromChar()
65 int32_t capacity = from.length() * 3; in intl_charFromString()
74 int32_t actual_len; in intl_charFromString()
H A Dintl_convert.c49 UChar** target, int32_t* target_len, in intl_convert_utf8_to_utf16()
54 int32_t dst_len = 0; in intl_convert_utf8_to_utf16()
68 u_strFromUTF8( *target, *target_len, &dst_len, src, (int32_t)src_len, status ); in intl_convert_utf8_to_utf16()
117 const UChar* src, int32_t src_len, in intl_convert_utf16_to_utf8()
121 int32_t dst_len; in intl_convert_utf16_to_utf8()
H A Dintl_convert.h22 UChar** target, int32_t* target_len,
27 const UChar* src, int32_t src_len,
/PHP-8.0/ext/intl/formatter/
H A Dformatter_parse.c35 int32_t sstr_len = 0; in PHP_FUNCTION()
38 int32_t val32, position = 0; in PHP_FUNCTION()
41 int32_t* position_p = NULL; in PHP_FUNCTION()
54 position = (int32_t) zval_get_long(zposition); in PHP_FUNCTION()
128 int32_t sstr_len = 0; in PHP_FUNCTION()
132 int32_t* position_p = NULL; in PHP_FUNCTION()
133 int32_t position = 0; in PHP_FUNCTION()
152 position = (int32_t) zval_get_long(zposition); in PHP_FUNCTION()
/PHP-8.0/ext/intl/normalizer/
H A Dnormalizer_normalize.c57 static int32_t intl_normalize(zend_long form, const UChar *src, int32_t src_len, UChar *dst, int32_… in intl_normalize()
67 static UBool intl_is_normalized(zend_long form, const UChar *uinput, int32_t uinput_len, UErrorCode… in intl_is_normalized()
88 int32_t uinput_len = 0; in PHP_FUNCTION()
93 int32_t uret_len = 0; in PHP_FUNCTION()
97 int32_t size_needed; in PHP_FUNCTION()
155 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION()
182 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION()
278 …uret = unorm_isNormalizedWithOptions( uinput, uinput_len, form, (int32_t) 0 /* options */, &status… in PHP_FUNCTION()
307 int32_t offset = 0; in PHP_FUNCTION()
312 int32_t decomposition_length; in PHP_FUNCTION()
/PHP-8.0/Zend/
H A Dzend_strtod_int.h49 typedef int int32_t; typedef
51 typedef long int int32_t; typedef
115 #ifndef int32_t
116 #define int32_t __int32 macro
/PHP-8.0/ext/intl/dateformat/
H A Ddateformat_parse.c34 …amp(IntlDateFormatter_object *dfo, char* text_to_parse, size_t text_len, int32_t *parse_pos, zval … in internal_parse_to_timestamp()
39 int32_t text_utf16_len = 0; in internal_parse_to_timestamp()
79 …ime(IntlDateFormatter_object *dfo, char* text_to_parse, size_t text_len, int32_t *parse_pos, zval … in internal_parse_to_localtime()
83 int32_t text_utf16_len = 0; in internal_parse_to_localtime()
125 int32_t parse_pos = -1; in PHP_FUNCTION()
147 parse_pos = (int32_t)long_parse_pos; in PHP_FUNCTION()
166 int32_t parse_pos = -1; in PHP_FUNCTION()
188 parse_pos = (int32_t)long_parse_pos; in PHP_FUNCTION()
/PHP-8.0/ext/standard/
H A Dphp_lcg.h23 int32_t s1;
24 int32_t s2;
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_serialize.c71 PCRE2_EXP_DEFN int32_t PCRE2_CALL_CONVENTION
72 pcre2_serialize_encode(const pcre2_code **codes, int32_t number_of_codes, in pcre2_serialize_encode()
78 int32_t i; in pcre2_serialize_encode()
162 PCRE2_EXP_DEFN int32_t PCRE2_CALL_CONVENTION
163 pcre2_serialize_decode(pcre2_code **codes, int32_t number_of_codes, in pcre2_serialize_decode()
173 int32_t i, j; in pcre2_serialize_decode()
258 PCRE2_EXP_DEFN int32_t PCRE2_CALL_CONVENTION
/PHP-8.0/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp80 int32_t fmt_count = 0; in umsg_format_arg_count()
93 int32_t parts_count; in umsg_get_numeric_types()
134 int32_t parts_count; in umsg_parse_format()
187 int32_t argNumber = name_part.getValue(); in umsg_parse_format()
300 int32_t count; in umsg_set_timezone()
367 int32_t *formatted_len) in umsg_format_helper()
477 int32_t tInt32 = 0; in umsg_format_helper()
486 tInt32 = (int32_t)Z_DVAL_P(elem); in umsg_format_helper()
495 tInt32 = (int32_t)Z_LVAL_P(elem); in umsg_format_helper()
498 tInt32 = (int32_t)zval_get_long(elem); in umsg_format_helper()
[all …]

Completed in 77 milliseconds

12345