Searched refs:ap (Results 1 – 7 of 7) sorted by relevance
/lib/ |
A D | kasprintf.c | 15 char *kvasprintf(gfp_t gfp, const char *fmt, va_list ap) in kvasprintf() argument 21 va_copy(aq, ap); in kvasprintf() 29 second = vsnprintf(p, first+1, fmt, ap); in kvasprintf() 43 const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list ap) in kvasprintf_const() argument 48 return kstrdup_const(va_arg(ap, const char*), gfp); in kvasprintf_const() 49 return kvasprintf(gfp, fmt, ap); in kvasprintf_const() 55 va_list ap; in kasprintf() local 58 va_start(ap, fmt); in kasprintf() 59 p = kvasprintf(gfp, fmt, ap); in kasprintf() 60 va_end(ap); in kasprintf()
|
A D | seq_buf.c | 95 va_list ap; in seq_buf_printf() local 98 va_start(ap, fmt); in seq_buf_printf() 99 ret = seq_buf_vprintf(s, fmt, ap); in seq_buf_printf() 100 va_end(ap); in seq_buf_printf()
|
/lib/tests/ |
A D | scanf_kunit.c | 23 va_list ap); 29 va_list ap, ap_copy; in _test() local 32 va_start(ap, n_args); in _test() 33 va_copy(ap_copy, ap); in _test() 44 va_end(ap); in _test() 78 va_list ap) in check_ulong() argument 111 va_list ap) in check_ushort() argument 120 va_list ap) in check_short() argument 129 va_list ap) in check_uchar() argument 303 va_list ap; in append_fmt() local [all …]
|
A D | printf_kunit.c | 43 int elen, const char *fmt, va_list ap) in do_test() argument 51 va_copy(aq, ap); in do_test() 112 va_list ap; in __test() local 123 va_start(ap, fmt); in __test() 131 do_test(kunittest, file, line, BUF_SIZE, expect, elen, fmt, ap); in __test() 134 do_test(kunittest, file, line, rand, expect, elen, fmt, ap); in __test() 135 do_test(kunittest, file, line, 0, expect, elen, fmt, ap); in __test() 137 p = kvasprintf(GFP_KERNEL, fmt, ap); in __test() 147 va_end(ap); in __test()
|
/lib/crypto/ |
A D | gf128mul.c | 297 u8 *ap = (u8 *)a; in gf128mul_64k_bbe() local 301 *r = t->t[0]->t[ap[15]]; in gf128mul_64k_bbe() 303 be128_xor(r, r, &t->t[i]->t[ap[15 - i]]); in gf128mul_64k_bbe() 348 u8 *ap = (u8 *)a; in gf128mul_4k_lle() local 352 *r = t->t[ap[15]]; in gf128mul_4k_lle() 355 be128_xor(r, r, &t->t[ap[i]]); in gf128mul_4k_lle()
|
/lib/crypto/mpi/ |
A D | mpiutil.c | 77 void mpi_assign_limb_space(MPI a, mpi_ptr_t ap, unsigned nlimbs) in mpi_assign_limb_space() argument 80 a->d = ap; in mpi_assign_limb_space()
|
A D | mpi-internal.h | 137 void mpi_assign_limb_space(MPI a, mpi_ptr_t ap, unsigned nlimbs);
|
Completed in 9 milliseconds