Home
last modified time | relevance | path

Searched refs:input_counter (Results 1 – 2 of 2) sorted by relevance

/external/v4l-utils/lib/libv4lconvert/
Dsq905c.c109 int input_counter = 0; in sq905c_second_decompress() local
142 delta_right = in[input_counter] & 0x0f; in sq905c_second_decompress()
143 delta_left = (in[input_counter] >> 4) & 0xff; in sq905c_second_decompress()
144 input_counter++; in sq905c_second_decompress()
171 delta_right = in[input_counter] & 0x0f; in sq905c_second_decompress()
172 delta_left = (in[input_counter] >> 4) & 0xff; in sq905c_second_decompress()
173 input_counter++; in sq905c_second_decompress()
/external/pytorch/torch/_inductor/fx_passes/
Db2b_gemm.py615 input_counter: Dict[torch.fx.Node, int] = {}
627 if user not in input_counter:
628 input_counter[user] = len(user.all_input_nodes)
629 input_counter[user] -= 1
638 all_reachable and all(count == 0 for count in input_counter.values()),