Lines Matching refs:stop
203 char *p, *stop; in ldif_base64_decode() local
207 stop = strchr( src, '\0' ); in ldif_base64_decode()
209 for ( p = src, len = 0; p < stop; p += 4, len += 3 ) { in ldif_base64_decode()
324 unsigned char *p, *byte, *stop; in ldif_put_type_and_value_with_options() local
349 stop = (unsigned char *)val; in ldif_put_type_and_value_with_options()
352 stop = (unsigned char *) (val + vlen); in ldif_put_type_and_value_with_options()
366 for ( byte = (unsigned char *) val; byte < stop; in ldif_put_type_and_value_with_options()
430 unsigned char *byte, *stop; in ldif_base64_encode_internal() local
438 stop = src + srclen; in ldif_base64_encode_internal()
441 for ( byte = src; byte < stop - 2; byte += 3 ) { in ldif_base64_encode_internal()
459 if ( byte < stop ) { in ldif_base64_encode_internal()
460 for ( i = 0; byte + i < stop; i++ ) { in ldif_base64_encode_internal()