Home | History | Annotate | Download | only in bytestring

Lines Matching defs:out

12  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
546 uint8_t *out;
550 if (!CBS_asn1_ber_to_der(&in, &out, &out_len)) {
554 ScopedOpenSSLBytes scoper(out);
556 if (out == NULL) {
567 memcmp(out, der_expected, der_len) != 0) {
666 uint8_t *out;
680 !CBB_finish(&cbb, &out, &len)) {
684 ScopedOpenSSLBytes scoper(out);
685 if (len != test->encoding_len || memcmp(out, test->encoding, len) != 0) {