* signconsistent & execconsistent called by *_consistent */
| 297 | * signconsistent & execconsistent called by *_consistent |
| 298 | */ |
| 299 | bool |
| 300 | signconsistent(QUERYTYPE *query, BITVECP sign, int siglen, bool calcnot) |
| 301 | { |
| 302 | return execute(GETQUERY(query) + query->size - 1, |
| 303 | (void *) sign, (void *) (intptr_t) siglen, calcnot, |
| 304 | checkcondition_bit); |
| 305 | } |
| 306 | |
| 307 | /* Array must be sorted! */ |
| 308 | bool |
no test coverage detected