HomeSort by relevance Sort by last modified time
    Searched refs:ERR_NUM_ERRORS (Results 1 - 3 of 3) sorted by null

  /external/boringssl/src/crypto/err/
err_test.cc 24 for (unsigned i = 0; i < ERR_NUM_ERRORS*2; i++) {
28 for (unsigned i = 0; i < ERR_NUM_ERRORS - 1; i++) {
31 * removed, up to |ERR_NUM_ERRORS - 1| errors. So the errors returned are
32 * |ERR_NUM_ERRORS + 2| through |ERR_NUM_ERRORS * 2|, inclusive. */
33 if (err == 0 || ((unsigned)ERR_GET_REASON(err)) != i + ERR_NUM_ERRORS + 2) {
err.c 163 for (i = 0; i < ERR_NUM_ERRORS; i++) {
205 i = (state->bottom + 1) % ERR_NUM_ERRORS;
305 for (i = 0; i < ERR_NUM_ERRORS; i++) {
625 state->top = (state->top + 1) % ERR_NUM_ERRORS;
627 state->bottom = (state->bottom + 1) % ERR_NUM_ERRORS;
741 state->top = ERR_NUM_ERRORS - 1;
  /external/boringssl/src/include/openssl/
err.h 367 /* ERR_NUM_ERRORS is the limit of the number of errors in the queue. */
368 #define ERR_NUM_ERRORS 16
372 /* errors contains the ERR_NUM_ERRORS most recent errors, organised as a ring
374 struct err_error_st errors[ERR_NUM_ERRORS];

Completed in 80 milliseconds