Lines Matching refs:length
144 long length = 0; in dom_characterdata_length_read() local
158 length = xmlUTF8Strlen(content); in dom_characterdata_length_read()
162 ZVAL_LONG(*retval, length); in dom_characterdata_length_read()
180 int length; in PHP_FUNCTION() local
194 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
196 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
202 if ((offset + count) > length) { in PHP_FUNCTION()
203 count = length - offset; in PHP_FUNCTION()
263 int length, arg_len; in PHP_FUNCTION() local
277 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
279 if (offset < 0 || offset > length) { in PHP_FUNCTION()
286 second = xmlUTF8Strsub(cur, offset, length - offset); in PHP_FUNCTION()
310 int length; in PHP_FUNCTION() local
324 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
326 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
338 if ((offset + count) > length) { in PHP_FUNCTION()
339 count = length - offset; in PHP_FUNCTION()
342 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()
366 int length, arg_len; in PHP_FUNCTION() local
380 length = xmlUTF8Strlen(cur); in PHP_FUNCTION()
382 if (offset < 0 || count < 0 || offset > length) { in PHP_FUNCTION()
394 if ((offset + count) > length) { in PHP_FUNCTION()
395 count = length - offset; in PHP_FUNCTION()
398 if (offset < length) { in PHP_FUNCTION()
399 second = xmlUTF8Strsub(cur, offset + count, length - offset); in PHP_FUNCTION()