Lines Matching defs:index
2474 * @index: Topology index for next toplogy node.
2480 * index of next node. Index starts from 0.
2486 uint32_t index,
2506 /* Skip parent till index */
2507 if (index >= num_nodes) {
2512 if ((index + i) == num_nodes) {
2516 topology[i] = clock_nodes[index + i].type;
2517 topology[i] |= clock_nodes[index + i].clkflags <<
2519 typeflags = clock_nodes[index + i].typeflags;
2581 * @index: Index of next parent.
2586 * parents, master should call same API in loop with new parent index
2589 * E.g First call should have index 0 which will return parents 0, 1 and
2590 * 2. Next call, index should be 3 which will return parent 3,4 and 5 and
2597 uint32_t index,
2618 /* Skip parent till index */
2619 for (i = 0; i < index; i++) {
2626 parents[i] = clk_parents[index + i];
2627 if (clk_parents[index + i] == CLK_NA_PARENT) {
2908 * @parent_index: parent index (=mux select value).
2944 * @parent_index: parent index (=mux select value).
2946 * This function is used by master to get parent index for PLL-related clock.