Lines Matching full:compare
41 while (num >= 8) { /* 8, compare size, the number of chars of one uint64_t data */ in memcmp()
45 s1 += 8; /* 8, compare size, the number of chars of one uint64_t data */ in memcmp()
46 s2 += 8; /* 8, compare size, the number of chars of one uint64_t data */ in memcmp()
47 num -= 8; /* 8, compare size, the number of chars of one uint64_t data */ in memcmp()
54 if (num >= 4) { /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()
58 s1 += 4; /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()
59 s2 += 4; /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()
60 num -= 4; /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()
74 s1 += 4; /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()
75 s2 += 4; /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()
76 num -= 4; /* 4, compare size, the number of chars of one uint32_t data */ in memcmp()