| /xnu-11215/osfmk/corecrypto/ |
| H A D | ccdrbg_nisthmac.c | 76 cc_print(label, outlen, drbg_ctx->key); in dump_state() 77 cc_print(label, outlen, drbg_ctx->V); in dump_state() 97 size_t outlen = info->output_size; in update() local 125 cchmac(info, outlen, drbg_ctx->key, outlen, drbg_ctx->V, drbg_ctx->V); in update() 164 cc_memset(drbg_ctx->key, 0, outlen); in init() 165 cc_memset(drbg_ctx->V, 1, outlen); in init() 217 size_t outlen = info->output_size; in generate() local 236 cc_memcpy(Vprev, drbg_ctx->V, outlen); in generate() 237 cchmac(info, outlen, drbg_ctx->key, outlen, drbg_ctx->V, drbg_ctx->V); in generate() 247 size_t n = CC_MIN(out_nbytes, outlen); in generate() [all …]
|
| /xnu-11215/libkern/kxld/ |
| H A D | kxld_sym.c | 704 u_long outlen = 0; in kxld_sym_get_vtable_name_from_class_name() local 710 require_action(outlen < vtable_name_len, finish, in kxld_sym_get_vtable_name_from_class_name() 714 require_action(outlen < vtable_name_len, finish, in kxld_sym_get_vtable_name_from_class_name() 729 u_long outlen = 0; in kxld_sym_get_meta_vtable_name_from_class_name() local 760 u_long outlen = 0; in kxld_sym_get_final_sym_name_from_class_name() local 766 require_action(outlen < final_sym_name_len, finish, in kxld_sym_get_final_sym_name_from_class_name() 770 require_action(outlen < final_sym_name_len, finish, in kxld_sym_get_final_sym_name_from_class_name() 790 u_long outlen = 0; in kxld_sym_get_function_prefix_from_class_name() local 796 require(outlen < function_prefix_len, finish); in kxld_sym_get_function_prefix_from_class_name() 799 require(outlen < function_prefix_len, finish); in kxld_sym_get_function_prefix_from_class_name() [all …]
|
| /xnu-11215/EXTERNAL_HEADERS/corecrypto/ |
| H A D | ccrng.h | 18 int (*CC_SPTR(ccrng_state, generate))(struct ccrng_state *rng, size_t outlen, void *out); 59 #define ccrng_generate(rng, outlen, out) \ argument 60 ((rng)->generate((struct ccrng_state *)(rng), (outlen), (out)))
|
| H A D | ccdrbg_impl.h | 58 size_t outlen, void *out,
|
| /xnu-11215/libkern/crypto/ |
| H A D | corecrypto_rand.c | 34 cc_rand_generate(void *out, size_t outlen) in cc_rand_generate() argument 42 error = ccrng_generate(rng_state, outlen, out); in cc_rand_generate()
|
| /xnu-11215/libkern/libkern/crypto/ |
| H A D | rand.h | 60 int cc_rand_generate(void *out, size_t outlen);
|
| /xnu-11215/bsd/sys/ |
| H A D | utfconv.h | 193 size_t *outlen, size_t buflen, int flags);
|
| H A D | vnode.h | 2697 int build_path(vnode_t first_vp, char *buff, int buflen, int *outlen, int flags, vfs_context_t …
|
| /xnu-11215/bsd/vfs/ |
| H A D | vfs_utfconv.c | 779 size_t *outlen, size_t buflen, int flags) in utf8_normalizestr() argument 817 *outlen = outstr - outbufstart; in utf8_normalizestr()
|
| H A D | vfs_cache.c | 514 int *outlen, size_t *mntpt_outlen, int flags, vfs_context_t ctx) in build_path_with_parent() argument 902 *outlen = (int)(&buff[buflen] - end); in build_path_with_parent() 904 *mntpt_outlen = (size_t)*outlen - (size_t)(&buff[buflen] - mntpt_end); in build_path_with_parent() 919 build_path(vnode_t first_vp, char *buff, int buflen, int *outlen, int flags, vfs_context_t ctx) in build_path() argument 921 return build_path_with_parent(first_vp, NULL, buff, buflen, outlen, NULL, flags, ctx); in build_path()
|
| /xnu-11215/iokit/Kernel/ |
| H A D | IOPMrootDomain.cpp | 12331 unsigned outlen; member 12385 if (swd_zip_var.outlen + len > SWD_COMPRESSED_BUFSIZE) { 12391 *(swd_zip_var.outbuf + swd_zip_var.outlen + i) = *(buf + i); 12393 swd_zip_var.outlen += len; 12429 swd_zip_var.outlen = 0; 12484 LOG("Total output size %d\n", swd_zip_var.outlen); 12490 return swd_zip_var.outlen; 12626 int outlen = 0; local 12634 if (outlen) { 12635 max_chunks = outlen / (2096 - 200); [all …]
|