Home | History | Annotate | Download | only in mDNSCore

Lines Matching defs:lim

486 	const mDNSu8 *const lim  = (lim1 < lim2) ? lim1 : lim2;
489 while (*cstr && ptr < lim) *ptr++ = (mDNSu8)*cstr++; // Copy the data
507 const mDNSu8 *const lim = name->c + MAX_DOMAIN_NAME - 1; // Limit of how much we can add (not counting final zero)
508 while (*cstr && ptr < lim) // While more characters, and space to put them...
512 while (*cstr && *cstr != '.' && ptr < lim) // While we have characters in the label...
564 const mDNSu8 *const lim = name->c + MAX_DOMAIN_NAME - 1; // Limit of how much we can add (not counting final zero)
569 if (ptr + 1 + src[0] > lim) return(mDNSNULL);
663 const mDNSu8 *const lim = &hostlabel->c[1] + MAX_DOMAIN_LABEL;
670 if (ptr < lim)