Home
last modified time | relevance | path

Searched full:pout (Results 1 – 25 of 49) sorted by relevance

12

/freebsd/crypto/openssl/crypto/rand/
H A Dprov_seed.c19 unsigned char **pout, int entropy, in ossl_rand_get_entropy() argument
37 *pout = ossl_rand_pool_detach(pool); in ossl_rand_get_entropy()
45 unsigned char **pout, int entropy, in ossl_rand_get_user_entropy() argument
51 return evp_rand_get_seed(rng, pout, entropy, min_len, max_len, in ossl_rand_get_user_entropy()
54 return ossl_rand_get_entropy(ctx, pout, entropy, min_len, max_len); in ossl_rand_get_user_entropy()
75 unsigned char **pout, in ossl_rand_get_nonce() argument
94 *pout = ossl_rand_pool_detach(pool); in ossl_rand_get_nonce()
101 unsigned char **pout, in ossl_rand_get_user_nonce() argument
109 return ossl_rand_get_nonce(ctx, pout, min_len, max_len, salt, salt_len); in ossl_rand_get_user_nonce()
118 *pout = buf; in ossl_rand_get_user_nonce()
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_rand_get_entropy.pod16 unsigned char **pout, int entropy,
19 unsigned char **pout, int entropy,
26 unsigned char **pout, size_t min_len,
28 size_t ossl_rand_get_user_nonce(OSSL_CORE_HANDLE *handle, unsigned char **pout,
41 bytes. The buffer address is stored in I<*pout> and the buffer length is
62 most I<max_len> bytes. The buffer address is stored in I<*pout> and the
85 of bytes in I<*pout> or 0 on error.
/freebsd/crypto/openssl/providers/common/
H A Dprovider_seeding.c82 size_t ossl_prov_get_entropy(PROV_CTX *prov_ctx, unsigned char **pout, in ossl_prov_get_entropy() argument
88 return c_get_user_entropy(handle, pout, entropy, min_len, max_len); in ossl_prov_get_entropy()
90 return c_get_entropy(handle, pout, entropy, min_len, max_len); in ossl_prov_get_entropy()
105 size_t ossl_prov_get_nonce(PROV_CTX *prov_ctx, unsigned char **pout, in ossl_prov_get_nonce() argument
112 return c_get_user_nonce(handle, pout, min_len, max_len, salt, salt_len); in ossl_prov_get_nonce()
114 return c_get_nonce(handle, pout, min_len, max_len, salt, salt_len); in ossl_prov_get_nonce()
/freebsd/stand/ficl/
H A Dtestmain.c216 FILE *pOut; in spewHash() local
223 pOut = fopen(pVM->pad, "w"); in spewHash()
224 if (!pOut) in spewHash()
241 fprintf(pOut, "%d\t%d", i, n); in spewHash()
246 fprintf(pOut, "\t%s", pFW->name); in spewHash()
250 fprintf(pOut, "\n"); in spewHash()
253 fclose(pOut); in spewHash()
/freebsd/crypto/openssl/include/crypto/
H A Drand.h112 unsigned char **pout, int entropy,
115 unsigned char **pout, int entropy,
122 unsigned char **pout, size_t min_len, size_t max_len,
124 size_t ossl_rand_get_user_nonce(OSSL_LIB_CTX *ctx, unsigned char **pout,
/freebsd/crypto/openssl/providers/implementations/rands/
H A Dfips_crng_test.c282 static size_t crng_test_get_seed(void *vcrngt, unsigned char **pout, in crng_test_get_seed() argument
296 n = ossl_prov_get_entropy(crngt->provctx, pout, entropy, in crng_test_get_seed()
300 r = crng_test(crngt, *pout, n); in crng_test_get_seed()
308 n = crngt->parent_get_seed(crngt->parent, pout, entropy, in crng_test_get_seed()
311 if (n > 0 && crng_test(crngt, *pout, n) > 0) in crng_test_get_seed()
314 crngt->parent_clear_seed(crngt->parent, *pout, n); in crng_test_get_seed()
H A Dseed_src_jitter.c266 static size_t jitter_get_seed(void *vseed, unsigned char **pout, in jitter_get_seed() argument
290 *pout = ossl_rand_pool_detach(pool); in jitter_get_seed()
299 size_t ossl_rand_jitter_get_seed(unsigned char **pout, int entropy, size_t min_len, size_t max_len) in ossl_rand_jitter_get_seed() argument
309 ret = jitter_get_seed(s, pout, entropy, min_len, max_len, 0, NULL, 0); in ossl_rand_jitter_get_seed()
H A Ddrbg.c144 size_t ossl_drbg_get_seed(void *vdrbg, unsigned char **pout, in ossl_drbg_get_seed() argument
181 *pout = buffer; in ossl_drbg_get_seed()
192 static size_t get_entropy(PROV_DRBG *drbg, unsigned char **pout, int entropy, in get_entropy() argument
204 return ossl_prov_get_entropy(drbg->provctx, pout, entropy, min_len, in get_entropy()
238 bytes = drbg->parent_get_seed(drbg->parent, pout, in get_entropy()
300 static size_t prov_drbg_get_nonce(PROV_DRBG *drbg, unsigned char **pout, in prov_drbg_get_nonce() argument
323 *pout = buf; in prov_drbg_get_nonce()
336 return ossl_prov_get_nonce(drbg->provctx, pout, min_len, max_len, in prov_drbg_get_nonce()
H A Dseed_src.c180 static size_t seed_get_seed(void *vseed, unsigned char **pout, in seed_get_seed() argument
201 *pout = ossl_rand_pool_detach(pool); in seed_get_seed()
H A Dtest_rng.c289 static size_t test_rng_get_seed(void *vtest, unsigned char **pout, in test_rng_get_seed() argument
297 *pout = t->entropy; in test_rng_get_seed()
/freebsd/crypto/openssl/providers/implementations/include/prov/
H A Dseeding.h22 size_t ossl_prov_get_entropy(PROV_CTX *prov_ctx, unsigned char **pout,
26 size_t ossl_prov_get_nonce(PROV_CTX *prov_ctx, unsigned char **pout,
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dblake2b-long.c13 blake2b_long(void *pout, size_t outlen, const void *in, size_t inlen) in blake2b_long() argument
15 uint8_t *out = (uint8_t *) pout; in blake2b_long()
H A Dblake2b-long.h6 int blake2b_long(void *pout, size_t outlen, const void *in, size_t inlen);
/freebsd/crypto/heimdal/appl/rcp/
H A Drcp.c716 int pin[2], pout[2], reserved[2]; in do_cmd() local
729 if (pipe(pout) < 0) { in do_cmd()
745 close(pout[0]); in do_cmd()
747 dup2(pout[1], 1); in do_cmd()
749 close(pout[1]); in do_cmd()
786 close(pout[1]); in do_cmd()
787 *fdin = pout[0]; in do_cmd()
/freebsd/crypto/openssl/crypto/ec/
H A Decdh_ossl.c49 int ossl_ecdh_simple_compute_key(unsigned char **pout, size_t *poutlen, in ossl_ecdh_simple_compute_key() argument
133 *pout = buf; in ossl_ecdh_simple_compute_key()
/freebsd/sys/dev/qat/qat_api/common/include/
H A Dlac_sync.h269 * @param[out] pOut Pointer to the flat buffer
276 CpaFlatBuffer *pOut);
294 * @param[out] pOut Pointer to the flat buffer
302 CpaFlatBuffer *pOut);
/freebsd/secure/lib/libcrypto/man/man7/
H A Dprovider-base.7136 \& unsigned char **pout, int entropy,
139 \& unsigned char **pout, int entropy,
146 \& unsigned char **pout, size_t min_len, size_t max_len,
149 \& unsigned char **pout, size_t min_len, size_t max_len,
400 The buffer address is stored in \fI*pout\fR and the buffer length is
420 most \fImax_len\fR bytes. The buffer address is stored in \fI*pout\fR and the
/freebsd/sys/contrib/device-tree/Bindings/iio/light/
H A Dcm3605.txt16 the POUT (proximity sensor out) line. The edge detection must
H A Dcapella,cm3605.yaml35 Connected to the POUT (proximity sensor out) line. The edge
/freebsd/sys/dev/qat/qat_api/common/utils/
H A Dlac_sync.c90 CpaFlatBuffer *pOut) in LacSync_GenFlatBufCb() argument
104 CpaFlatBuffer *pOut) in LacSync_GenFlatBufVerifyCb() argument
/freebsd/crypto/openssl/doc/man7/
H A Dprovider-base.pod77 unsigned char **pout, int entropy,
80 unsigned char **pout, int entropy,
87 unsigned char **pout, size_t min_len, size_t max_len,
90 unsigned char **pout, size_t min_len, size_t max_len,
347 The buffer address is stored in I<*pout> and the buffer length is
367 most I<max_len> bytes. The buffer address is stored in I<*pout> and the
/freebsd/crypto/openssl/crypto/
H A Dprovider_core.c2443 unsigned char **pout, int entropy, in rand_get_entropy() argument
2447 pout, entropy, min_len, max_len); in rand_get_entropy()
2468 unsigned char **pout, int entropy, in rand_get_entropy() argument
2471 return ossl_rand_jitter_get_seed(pout, entropy, min_len, max_len); in rand_get_entropy()
2476 unsigned char **pout, int entropy, in rand_get_user_entropy() argument
2480 pout, entropy, min_len, max_len); in rand_get_user_entropy()
2498 unsigned char **pout, in rand_get_nonce() argument
2503 pout, min_len, max_len, salt, salt_len); in rand_get_nonce()
2507 unsigned char **pout, in rand_get_user_nonce() argument
2512 pout, min_len, max_len, salt, salt_len); in rand_get_user_nonce()
/freebsd/sys/dev/rtwn/rtl8821a/
H A Dr21a_rx.c64 rssi = -6 - 2*(stat->cfosho[0] & 0x1f); /* Pout - (2 * VGA_idx) */ in r21a_get_rssi_cck()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp773 llvm::raw_string_ostream POut(Proto); in ComputeName() local
786 case CC_C: POut << "__cdecl "; break; in ComputeName()
787 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
788 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
789 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
790 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
791 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
797 FD->printQualifiedName(POut, Policy); in ComputeName()
800 POut.flush(); in ComputeName()
805 POut << "("; in ComputeName()
[all …]
/freebsd/crypto/openssh/
H A Dsession.c403 int pin[2], pout[2], perr[2]; in do_exec_no_pty() local
413 if (pipe(pout) == -1) { in do_exec_no_pty()
423 close(pout[0]); in do_exec_no_pty()
424 close(pout[1]); in do_exec_no_pty()
455 close(pout[0]); in do_exec_no_pty()
456 close(pout[1]); in do_exec_no_pty()
487 close(pout[0]); in do_exec_no_pty()
488 if (dup2(pout[1], 1) == -1) in do_exec_no_pty()
490 close(pout[1]); in do_exec_no_pty()
541 close(pout[1]); in do_exec_no_pty()
[all …]

12