Lines Matching refs:lb
55 size_t la, lb;
60 lb = strlen(b);
79 if (lb != 0U && b[lb - 1] == '.') {
81 /* note this loop doesn't get executed if lb==1 */
82 for (i = lb - 2; i >= 0; i--)
91 lb--;
94 /* lb == 0 means 'b' is the root domain, so 'a' must be in 'b'. */
95 if (lb == 0U)
99 if (lb > la)
103 if (lb == la)
104 return (strncasecmp(a, b, lb) == 0);
106 /* Ok, we know la > lb. */
108 diff = la - lb;
119 * If the character before the last 'lb' characters of 'b'
144 return (strncasecmp(cp, b, lb) == 0);