Lines Matching refs:yield
318 (i.e. the yield of the pcre_exec call, unless
347 int yield;
351 yield = ovector[stringnumber+1] - ovector[stringnumber];
352 if (size < yield + 1) return PCRE_ERROR_NOMEMORY;
353 memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield));
354 buffer[yield] = 0;
355 return yield;
373 (i.e. the yield of the pcre_exec call, unless
429 (i.e. the yield of the pcre_exec call, unless
528 (i.e. the yield of the pcre_exec call, unless
556 int yield;
561 yield = ovector[stringnumber+1] - ovector[stringnumber];
562 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1));
564 memcpy(substring, subject + ovector[stringnumber], IN_UCHARS(yield));
565 substring[yield] = 0;
573 return yield;
591 (i.e. the yield of the pcre_exec call, unless