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 28 for (unsigned i = 0; i < ERR_NUM_ERRORS*2; i++) {
32 for (unsigned i = 0; i < ERR_NUM_ERRORS - 1; i++) {
36 // removed, up to |ERR_NUM_ERRORS - 1| errors. So the errors returned are
37 // |ERR_NUM_ERRORS + 2| through |ERR_NUM_ERRORS * 2|, inclusive.
39 EXPECT_EQ(static_cast<int>(i + ERR_NUM_ERRORS + 2), ERR_GET_REASON(err));
189 for (unsigned i = 0; i < ERR_NUM_ERRORS / 2; i++) {
192 for (unsigned i = 1; i < ERR_NUM_ERRORS; i++) {
203 for (int j = 1; j < ERR_NUM_ERRORS; j++) {
err.c 145 // errors contains the ERR_NUM_ERRORS most recent errors, organised as a ring
147 struct err_error_st errors[ERR_NUM_ERRORS];
194 for (unsigned i = 0; i < ERR_NUM_ERRORS; i++) {
236 i = (state->bottom + 1) % ERR_NUM_ERRORS;
335 for (i = 0; i < ERR_NUM_ERRORS; i++) {
651 state->top = (state->top + 1) % ERR_NUM_ERRORS;
653 state->bottom = (state->bottom + 1) % ERR_NUM_ERRORS;
767 state->top = ERR_NUM_ERRORS - 1;
814 : ERR_NUM_ERRORS + state->top - state->bottom;
815 assert(num_errors < ERR_NUM_ERRORS);
    [all...]
  /external/boringssl/src/include/openssl/
err.h 439 // ERR_NUM_ERRORS is one more than the limit of the number of errors in the
441 #define ERR_NUM_ERRORS 16

Completed in 87 milliseconds