Lines Matching defs:input

71     const char *input = "123";
76 result = strtoint32(input, &endptr, 10);
88 const char *input = "-123";
93 result = strtoint32(input, &endptr, 10);
105 const char *input = "2147483647";
110 result = strtoint32(input, &endptr, 10);
122 const char *input = "-2147483648";
127 result = strtoint32(input, &endptr, 10);
139 const char *input = "8589934592";
144 result = strtoint32(input, &endptr, 10);
156 const char *input = "-8589934592";
161 result = strtoint32(input, &endptr, 10);
173 const char *input = "12b13";
176 const char *expected_endptr = input+2;
179 result = strtoint32(input, &endptr, 10);
191 const char *input = "alpha";
194 const char *expected_endptr = input;
197 result = strtoint32(input, &endptr, 10);
209 const char *input = "alpha12345";
212 const char *expected_endptr = input;
215 result = strtoint32(input, &endptr, 10);
227 const char *input = "";
230 const char *expected_endptr = input;
233 result = strtoint32(input, &endptr, 10);
250 const char *input = "123";
255 result = strtouint32(input, &endptr, 10);
267 const char *input = "-123";
272 result = strtouint32(input, &endptr, 10);
284 const char *input = "4294967295";
289 result = strtouint32(input, &endptr, 10);
302 const char *input = "8589934592";
307 result = strtouint32(input, &endptr, 10);
319 const char *input = "12b13";
322 const char *expected_endptr = input+2;
325 result = strtouint32(input, &endptr, 10);
337 const char *input = "alpha";
340 const char *expected_endptr = input;
343 result = strtouint32(input, &endptr, 10);
355 const char *input = "alpha12345";
358 const char *expected_endptr = input;
361 result = strtouint32(input, &endptr, 10);
373 const char *input = "";
376 const char *expected_endptr = input;
379 result = strtouint32(input, &endptr, 10);
392 const char *input = "123";
397 result = strtouint16(input, &endptr, 10);
409 const char *input = "-123";
414 result = strtouint16(input, &endptr, 10);
426 const char *input = "65535";
431 result = strtouint16(input, &endptr, 10);
444 const char *input = "131072";
449 result = strtouint16(input, &endptr, 10);
461 const char *input = "12b13";
464 const char *expected_endptr = input+2;
467 result = strtouint16(input, &endptr, 10);
479 const char *input = "alpha";
482 const char *expected_endptr = input;
485 result = strtouint16(input, &endptr, 10);
497 const char *input = "alpha12345";
500 const char *expected_endptr = input;
503 result = strtouint16(input, &endptr, 10);
515 const char *input = "";
518 const char *expected_endptr = input;
521 result = strtouint16(input, &endptr, 10);