Lines Matching defs:index
47 /* Get index of the config_id image */
50 unsigned int index;
52 /* Positions index to the proper config-id */
53 for (index = 0U; index < MAX_DTB_INFO; index++) {
54 if (dtb_infos[index].config_id == config_id) {
55 return index;
64 /* Positions index to the proper config-id */
65 unsigned int index = dyn_cfg_dtb_info_get_index(config_id);
67 if (index < MAX_DTB_INFO) {
68 return &dtb_infos[index];