Home | History | Annotate | Download | only in tool

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
53 // num_calls is the number of function calls done in the time period.
55 // us is the number of microseconds that elapsed in the time period.
59 printf("Did %u %s operations in %uus (%.1f ops/sec)\n", num_calls,
65 printf("Did %u %s operations in %uus (%.1f ops/sec): %.1f MB/s\n",
171 * certificate or similar, in which case we'd need to construct a new
197 static uint8_t *align(uint8_t *in, unsigned alignment) {
199 (reinterpret_cast<uintptr_t>(in) + alignment) &
223 uint8_t *const in = align(in_storage.get(), kAlignment);
224 OPENSSL_memset(in, 0, chunk_len);
239 if (!TimeFunction(&results, [chunk_len, overhead_len, nonce_len, ad_len, in,
244 nonce_len, in, chunk_len, ad.get(), ad_len);
253 nonce.get(), nonce_len, in, chunk_len, ad.get(), ad_len);
505 uint8_t out[32], in[32];
506 OPENSSL_memset(in, 0, sizeof(in));
507 X25519_public_from_private(out, in);
676 // via the AEAD interface. In order for that to work, they have some TLS
677 // knowledge in them and construct a couple of the AD bytes internally.