Searched refs:comp (Results 1 – 6 of 6) sorted by relevance
/tools/env/ |
A D | fw_env.c | 1725 char comp[256]; in find_nvmem_device() local 1744 bytes = snprintf(comp, sizeof(comp), "%s/%s/of_node/compatible", path, dent->d_name); in find_nvmem_device() 1745 if (bytes < 0 || bytes == sizeof(comp)) { in find_nvmem_device() 1749 fp = fopen(comp, "r"); in find_nvmem_device() 1755 fprintf(stderr, "Failed to fstat %s\n", comp); in find_nvmem_device() 1766 "read failed about %s\n", comp); in find_nvmem_device()
|
/tools/ |
A D | imagetool.h | 69 int comp; member
|
A D | default_image.c | 158 image_set_comp(hdr, params->comp); in image_set_header()
|
A D | mkimage.c | 28 .comp = IH_COMP_GZIP, 249 params.comp = genimg_get_comp_id(optarg); in process_args() 250 if (params.comp < 0) { in process_args()
|
A D | fit_image.c | 345 genimg_get_comp_short_name(params->comp)); in fit_write_images()
|
/tools/buildman/ |
A D | kconfiglib.py | 6028 comp = _strcmp(v1.str_value, v2.str_value) 6032 comp = _sym_to_num(v1) - _sym_to_num(v2) 6036 comp = _strcmp(v1.str_value, v2.str_value) 6038 return 2*(comp == 0 if rel is EQUAL else 6039 comp != 0 if rel is UNEQUAL else 6040 comp < 0 if rel is LESS else 6041 comp <= 0 if rel is LESS_EQUAL else 6042 comp > 0 if rel is GREATER else 6043 comp >= 0)
|
Completed in 18 milliseconds