Lines Matching defs:input
429 static short input [BUFFER_LEN] ;
456 memset (input, 0, sizeof (input)) ;
467 test_read_short_or_die (file, 0, input, ARRAY_LEN (input), __LINE__) ;
471 for (k = 0 ; k < ARRAY_LEN (input) ; k++)
472 exit_if_true (input [k] != output [k],
473 "\n\nLine: %d: Error on input %d, expected %d, got %d\n", __LINE__, k, output [k], input [k]) ;
484 static int input [1] = { 0 } ;
522 test_read_int_or_die (file, 0, input, ARRAY_LEN (input), __LINE__) ;
523 exit_if_true (input [0] != output [0], "\n\nLine %d: Bad first sample (0x%08x).\n", __LINE__, input [0]) ;