Lines Matching refs:cmp_len
479 size_t cmp_len, len1, len2; in bwsncmp() local
494 cmp_len = len1; in bwsncmp()
496 if (len2 < cmp_len) in bwsncmp()
497 cmp_len = len2; in bwsncmp()
499 if (len < cmp_len) in bwsncmp()
500 cmp_len = len; in bwsncmp()
508 res = memcmp(s1, s2, cmp_len); in bwsncmp()
516 res = memcmp(s1, s2, SIZEOF_WCHAR_STRING(cmp_len)); in bwsncmp()
522 if (len1 < cmp_len && len1 < len2) in bwsncmp()
524 else if (len2 < cmp_len && len2 < len1) in bwsncmp()
534 size_t len1, len2, cmp_len; in bwscmp() local
543 cmp_len = len1; in bwscmp()
545 if (len2 < cmp_len) in bwscmp()
546 cmp_len = len2; in bwscmp()
548 res = bwsncmp(bws1, bws2, offset, cmp_len); in bwscmp()