Home
last modified time | relevance | path

Searched refs:_end (Results 1 – 11 of 11) sorted by relevance

/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf16.c1072 unsigned char *_end = start + len; in mb_cut_utf16be() local
1073 if (_end > end) { in mb_cut_utf16be()
1074 _end = end; in mb_cut_utf16be()
1076 uint32_t ending_cp = (*(_end - 2) << 8) + *(_end - 1); in mb_cut_utf16be()
1078 _end -= 2; in mb_cut_utf16be()
1080 return zend_string_init_fast((char*)start, _end - start); in mb_cut_utf16be()
1105 unsigned char *_end = start + len; in mb_cut_utf16le() local
1106 if (_end > end) { in mb_cut_utf16le()
1107 _end = end; in mb_cut_utf16le()
1109 uint32_t ending_cp = (*(_end - 1) << 8) + *(_end - 2); in mb_cut_utf16le()
[all …]
H A Dmbfilter_utf8.c574 unsigned char *_end = start + len; in mb_cut_utf8() local
575 if (_end >= end) { in mb_cut_utf8()
578 while (_end > start && ((signed char)*_end) < -64) { in mb_cut_utf8()
579 _end--; in mb_cut_utf8()
581 return zend_string_init_fast((char*)start, _end - start); in mb_cut_utf8()
H A Dmbfilter_cjk.c11910 unsigned char *_end = step_through_gb18030_str(start, start + len); in mb_cut_gb18030() local
11911 return zend_string_init_fast((const char*)start, _end - start); in mb_cut_gb18030()
/php-src/Zend/Optimizer/
H A Dzend_ssa.h288 int _i, _end = NUM_PHI_SOURCES(phi); \
289 for (_i = 0; _i < _end; _i++) { \
321 uint32_t _end = _block->start + _block->len; \
322 for ((i) = _block->start; (i) < _end; (i)++) {
/php-src/ext/dom/lexbor/lexbor/html/tokenizer/
H A Dstate.h48 #define lxb_html_tokenizer_state_set_tag_m(tkz, _start, _end) \ argument
51 tag = lxb_tag_append_lower(tkz->tags, (_start), (_end) - (_start)); \
/php-src/ext/standard/tests/file/
H A Dtempnam_variation9.phpt18 $post_prefix = "_end";
/php-src/Zend/
H A Dzend_execute.h517 zend_property_info **_prop, **_end; \
523 _end = _list->ptr + _list->num; \
526 _end = _prop + 1; \
528 for (; _prop < _end; _prop++) { \
H A Dzend_types.h213 zend_type *_end = _list + (list)->num_types; \
214 for (; _list < _end; _list++) { \
224 zend_type *_cur, *_end; \
228 _end = _cur + _list->num_types; \
231 _end = _cur + 1; \
237 } while (++_cur < _end); \
H A Dzend_hash.h1237 const Bucket *_end = __ht->arData + __ht->nNumUsed; \
1239 for (; _p != _end; _p++) { \
1446 zval *_end = __ht->arPacked + __ht->nNumUsed; \
1448 for (;_z != _end; _z++, _idx++) { \
/php-src/ext/opcache/jit/ir/
H A Dir_private.h1362 #define IR_TMP_REG(_num, _type, _start, _end) \ argument
1363 (ir_tmp_reg){.num=(_num), .type=(_type), .start=(_start), .end=(_end)}
1364 #define IR_SCRATCH_REG(_reg, _start, _end) \ argument
1365 (ir_tmp_reg){.reg=(_reg), .type=IR_VOID, .start=(_start), .end=(_end)}
H A Dir_ra.c2230 ir_live_pos _end = _ival->end; \
2234 IR_LIVE_POS_TO_REF(_end), IR_LIVE_POS_TO_SUB_REF(_end)); \
2241 ir_live_pos _end = _ival->end; \
2245 IR_LIVE_POS_TO_REF(_end), IR_LIVE_POS_TO_SUB_REF(_end), \
2253 ir_live_pos _end = _ival->end; \
2258 IR_LIVE_POS_TO_REF(_end), IR_LIVE_POS_TO_SUB_REF(_end), \
2266 ir_live_pos _end = _ival->end; \
2271 IR_LIVE_POS_TO_REF(_end), IR_LIVE_POS_TO_SUB_REF(_end), \

Completed in 80 milliseconds