Lines Matching defs:in
5 * copyright notice and this permission notice appear in all copies.
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
470 CBS in;
474 CBS_init(&in, ber, ber_len);
475 ASSERT_TRUE(CBS_asn1_ber_to_der(&in, &out, &out_len));
494 // These parts need to be concatenated in DER form.
547 const char *in;
571 SCOPED_TRACE(Bytes(test.in, test.in_len));
573 CBS in, out;
574 CBS_init(&in, reinterpret_cast<const uint8_t *>(test.in), test.in_len);
575 int ok = CBS_get_asn1_implicit_string(&in, &out, &storage,
701 // Write an input that cannot fit in a fixed CBB.
711 // Write a u32 that cannot fit in a u24.
758 std::vector<uint8_t> in;
782 SCOPED_TRACE(Bytes(test.in.data(), test.in.size()));
785 CBS_init(&cbs, test.in.data(), test.in.size());