Lines Matching defs:end
179 const char *end;
180 int ret = hex ? otp_read_hex(data, &end, hash) :
181 otp_read_words(data, &end, hash);
185 return otp_check_tail(end) ? 1 : 0;
191 const char *end;
192 int ret = hex ? otp_read_hex(data, &end, hash) :
193 otp_read_words(data, &end, hash);
199 end = otp_skip_lws(end);
200 if (*end++ != ':') {
205 ret = otp_read_new_params(end, &end, new_state);
211 end = otp_skip_lws(end);
212 if (*end++ != ':') {
217 ret = hex ? otp_read_hex(end, &end, new_state->hash) :
218 otp_read_words(end, &end, new_state->hash);
224 if (otp_check_tail(end)) {
234 const char *end;
237 ret = otp_read_new_params(text, &end, state);
241 if (*end++ != ' ')
244 return otp_read_hex(end, &end, state->hash);