Home | History | Annotate | Download | only in x86

Lines Matching refs:equal

130 /* Complain if first two args don't strcmp as equal.  */
132 equal (const char *a, const char *b, int number)
147 equal (one, "abc", 2); /* Did the copy go right? */
151 equal (one, "xycdefgh", 3); /* Copy cut by count. */
155 equal (one, "xyzdefgh", 4);
159 equal (one, "xyz", 5);
160 equal (one+4, "efgh", 6); /* Wrote too much? */
164 equal (one, "xyz", 7);
165 equal (one+4, "", 8);
166 equal (one+5, "fgh", 9);
170 equal (one, "abc", 10);
173 equal (one, "", 11);
174 equal (one+1, "", 12);
175 equal (one+2, "c", 13);
179 equal (two, "hi there", 14); /* Just paranoia. */
180 equal (one, "hi there", 15); /* Stomped on source? */