Lines Matching refs:c1

8068 	uint32_t c1;  in emlxs_auth_cfg_parse()  local
8081 c1 = *s++; in emlxs_auth_cfg_parse()
8082 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8083 sum = ((c1 - '0') << 4); in emlxs_auth_cfg_parse()
8084 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8085 sum = ((c1 - 'a' + 10) << 4); in emlxs_auth_cfg_parse()
8086 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8087 sum = ((c1 - 'A' + 10) << 4); in emlxs_auth_cfg_parse()
8092 j, c1); in emlxs_auth_cfg_parse()
8096 c1 = *s++; in emlxs_auth_cfg_parse()
8097 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8098 sum |= (c1 - '0'); in emlxs_auth_cfg_parse()
8099 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8100 sum |= (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8101 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8102 sum |= (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8107 j, c1); in emlxs_auth_cfg_parse()
8123 c1 = *s++; in emlxs_auth_cfg_parse()
8124 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8125 sum = ((c1 - '0') << 4); in emlxs_auth_cfg_parse()
8126 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8127 sum = ((c1 - 'a' + 10) << 4); in emlxs_auth_cfg_parse()
8128 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8129 sum = ((c1 - 'A' + 10) << 4); in emlxs_auth_cfg_parse()
8134 j, c1); in emlxs_auth_cfg_parse()
8138 c1 = *s++; in emlxs_auth_cfg_parse()
8139 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8140 sum |= (c1 - '0'); in emlxs_auth_cfg_parse()
8141 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8142 sum |= (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8143 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8144 sum |= (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8149 j, c1); in emlxs_auth_cfg_parse()
8165 c1 = *s++; in emlxs_auth_cfg_parse()
8166 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8167 sum = (sum << 4) + (c1 - '0'); in emlxs_auth_cfg_parse()
8168 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8169 sum = (sum << 4) + (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8170 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8171 sum = (sum << 4) + (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8176 c1, sum); in emlxs_auth_cfg_parse()
8193 c1 = *s++; in emlxs_auth_cfg_parse()
8194 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8195 sum = (sum << 4) + (c1 - '0'); in emlxs_auth_cfg_parse()
8196 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8197 sum = (sum << 4) + (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8198 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8199 sum = (sum << 4) + (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8204 c1, sum); in emlxs_auth_cfg_parse()
8221 c1 = *s++; in emlxs_auth_cfg_parse()
8222 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8223 sum = (sum << 4) + (c1 - '0'); in emlxs_auth_cfg_parse()
8224 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8225 sum = (sum << 4) + (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8226 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8227 sum = (sum << 4) + (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8232 c1, sum); in emlxs_auth_cfg_parse()
8248 c1 = *s++; in emlxs_auth_cfg_parse()
8249 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8250 sum = (c1 - '0'); in emlxs_auth_cfg_parse()
8251 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8252 sum = (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8253 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8254 sum = (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8259 i, c1, sum); in emlxs_auth_cfg_parse()
8276 c1 = *s++; in emlxs_auth_cfg_parse()
8277 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8278 sum = (c1 - '0'); in emlxs_auth_cfg_parse()
8279 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8280 sum = (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8281 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8282 sum = (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8287 i, c1, sum); in emlxs_auth_cfg_parse()
8304 c1 = *s++; in emlxs_auth_cfg_parse()
8305 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8306 sum = (c1 - '0'); in emlxs_auth_cfg_parse()
8307 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8308 sum = (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8309 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8310 sum = (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8315 i, c1, sum); in emlxs_auth_cfg_parse()
8332 c1 = *s++; in emlxs_auth_cfg_parse()
8333 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_cfg_parse()
8334 sum = (sum << 4) + (c1 - '0'); in emlxs_auth_cfg_parse()
8335 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_cfg_parse()
8336 sum = (sum << 4) + (c1 - 'a' + 10); in emlxs_auth_cfg_parse()
8337 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_cfg_parse()
8338 sum = (sum << 4) + (c1 - 'A' + 10); in emlxs_auth_cfg_parse()
8343 c1, sum); in emlxs_auth_cfg_parse()
8720 uint32_t c1; in emlxs_auth_key_parse() local
8732 c1 = *s++; in emlxs_auth_key_parse()
8733 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8734 sum = ((c1 - '0') << 4); in emlxs_auth_key_parse()
8735 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8736 sum = ((c1 - 'a' + 10) << 4); in emlxs_auth_key_parse()
8737 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8738 sum = ((c1 - 'A' + 10) << 4); in emlxs_auth_key_parse()
8743 j, c1); in emlxs_auth_key_parse()
8747 c1 = *s++; in emlxs_auth_key_parse()
8748 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8749 sum |= (c1 - '0'); in emlxs_auth_key_parse()
8750 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8751 sum |= (c1 - 'a' + 10); in emlxs_auth_key_parse()
8752 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8753 sum |= (c1 - 'A' + 10); in emlxs_auth_key_parse()
8758 j, c1); in emlxs_auth_key_parse()
8774 c1 = *s++; in emlxs_auth_key_parse()
8775 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8776 sum = ((c1 - '0') << 4); in emlxs_auth_key_parse()
8777 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8778 sum = ((c1 - 'a' + 10) << 4); in emlxs_auth_key_parse()
8779 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8780 sum = ((c1 - 'A' + 10) << 4); in emlxs_auth_key_parse()
8785 j, c1); in emlxs_auth_key_parse()
8789 c1 = *s++; in emlxs_auth_key_parse()
8790 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8791 sum |= (c1 - '0'); in emlxs_auth_key_parse()
8792 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8793 sum |= (c1 - 'a' + 10); in emlxs_auth_key_parse()
8794 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8795 sum |= (c1 - 'A' + 10); in emlxs_auth_key_parse()
8800 j, c1); in emlxs_auth_key_parse()
8816 c1 = *s++; in emlxs_auth_key_parse()
8817 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8818 sum = (sum << 4) + (c1 - '0'); in emlxs_auth_key_parse()
8819 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8820 sum = (sum << 4) + (c1 - 'a' + 10); in emlxs_auth_key_parse()
8821 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8822 sum = (sum << 4) + (c1 - 'A' + 10); in emlxs_auth_key_parse()
8827 c1, sum); in emlxs_auth_key_parse()
8854 c1 = *s++; in emlxs_auth_key_parse()
8855 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8856 sum = ((c1 - '0') << 4); in emlxs_auth_key_parse()
8857 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8858 sum = ((c1 - 'a' + 10) << 4); in emlxs_auth_key_parse()
8859 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8860 sum = ((c1 - 'A' + 10) << 4); in emlxs_auth_key_parse()
8865 j, c1); in emlxs_auth_key_parse()
8869 c1 = *s++; in emlxs_auth_key_parse()
8870 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8871 sum |= (c1 - '0'); in emlxs_auth_key_parse()
8872 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8873 sum |= (c1 - 'a' + 10); in emlxs_auth_key_parse()
8874 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8875 sum |= (c1 - 'A' + 10); in emlxs_auth_key_parse()
8880 j, c1); in emlxs_auth_key_parse()
8915 c1 = *s++; in emlxs_auth_key_parse()
8916 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8917 sum = (sum << 4) + (c1 - '0'); in emlxs_auth_key_parse()
8918 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8919 sum = (sum << 4) + (c1 - 'a' + 10); in emlxs_auth_key_parse()
8920 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8921 sum = (sum << 4) + (c1 - 'A' + 10); in emlxs_auth_key_parse()
8926 c1, sum); in emlxs_auth_key_parse()
8953 c1 = *s++; in emlxs_auth_key_parse()
8954 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8955 sum = ((c1 - '0') << 4); in emlxs_auth_key_parse()
8956 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8957 sum = ((c1 - 'a' + 10) << 4); in emlxs_auth_key_parse()
8958 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8959 sum = ((c1 - 'A' + 10) << 4); in emlxs_auth_key_parse()
8964 j, c1); in emlxs_auth_key_parse()
8968 c1 = *s++; in emlxs_auth_key_parse()
8969 if ((c1 >= '0') && (c1 <= '9')) { in emlxs_auth_key_parse()
8970 sum |= (c1 - '0'); in emlxs_auth_key_parse()
8971 } else if ((c1 >= 'a') && (c1 <= 'f')) { in emlxs_auth_key_parse()
8972 sum |= (c1 - 'a' + 10); in emlxs_auth_key_parse()
8973 } else if ((c1 >= 'A') && (c1 <= 'F')) { in emlxs_auth_key_parse()
8974 sum |= (c1 - 'A' + 10); in emlxs_auth_key_parse()
8979 j, c1); in emlxs_auth_key_parse()