Lines Matching refs:input
68 uint8_t *input; in main() local
71 input = malloc(10); in main()
72 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
75 input = malloc(10); in main()
76 input[1] = input[2] = input[3] = 0x0; in main()
77 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
80 input = malloc(10); in main()
81 input[0] = input[2] = input[3] = 0x0; in main()
82 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
85 input = malloc(10); in main()
86 input[0] = input[1] = input[3] = 0x0; in main()
87 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
90 input = malloc(10); in main()
91 input[0] = input[1] = input[2] = 0x0; in main()
92 do_cu42(buf, sizeof buf, (void *)input, 4); // complaint in main()
95 input = malloc(10); in main()
96 memset(input, 0, 4); in main()
97 do_cu42(buf, sizeof buf, (void *)input, 4); // no complaint in main()
102 input = malloc(10); in main()
103 memset(input, 0, 4); in main()
104 do_cu42(buf, sizeof buf, (void *)input, 8); // complaint in main()