Home
last modified time | relevance | path

Searched refs:string (Results 1 – 9 of 9) sorted by relevance

/lib/
Dtest_scanf.c27 typedef int (*check_fn)(const void *check_data, const char *string,
31 _test(check_fn fn, const void *check_data, const char *string, const char *fmt, in _test() argument
41 ret = vsscanf(string, fmt, ap_copy); in _test()
46 string, fmt, ret, n_args); in _test()
50 ret = (*fn)(check_data, string, fmt, n_args, ap); in _test()
78 static int __init check_ull(const void *check_data, const char *string, in check_ull() argument
83 _check_numbers_template("%llu", pval, string, fmt, n_args, ap); in check_ull()
86 static int __init check_ll(const void *check_data, const char *string, in check_ll() argument
91 _check_numbers_template("%lld", pval, string, fmt, n_args, ap); in check_ll()
94 static int __init check_ulong(const void *check_data, const char *string, in check_ulong() argument
[all …]
Dasn1_encoder.c271 u32 tag, const unsigned char *string, int len) in asn1_encode_tag() argument
279 if (!string && WARN(len > 127, in asn1_encode_tag()
286 if (!string && len > 0) { in asn1_encode_tag()
305 if (!string) in asn1_encode_tag()
311 memcpy(data, string, len); in asn1_encode_tag()
330 const unsigned char *string, u32 len) in asn1_encode_octet_string() argument
352 memcpy(data, string, len); in asn1_encode_octet_string()
Dvsprintf.c721 char *string(char *buf, char *end, const char *s, in string() function
967 buf = string(buf, end, hd->disk_name, spec); in bdev_name()
1790 return string(buf, end, output, spec); in fourcc_string()
1954 return string(buf, end, __clk_get_name(clk), spec); in clock()
1972 buf = string(buf, end, names->name, default_str_spec); in format_flags()
2040 buf = string(buf, end, pff[i].name, default_str_spec); in format_page_flags()
2120 buf = string(buf, end, fwnode_get_name_prefix(__fwnode), in fwnode_full_name_string()
2122 buf = string(buf, end, fwnode_get_name(__fwnode), in fwnode_full_name_string()
2177 buf = string(buf, end, p, str_spec); in device_node_string()
2187 buf = string(buf, end, p, str_spec); in device_node_string()
[all …]
DMakefile30 lib-y := ctype.o string.o vsprintf.o cmdline.o \
424 $(srctree)/include/linux/fortify-string.h \
439 $(obj)/string.o: $(obj)/$(TEST_FORTIFY_LOG)
DKconfig.kgdb73 string "KGDB: which internal kgdb tests to run"
77 This is the command string to send the kgdb test suite on
Dstring_helpers.c944 int match_string(const char * const *array, size_t n, const char *string) in match_string() argument
953 if (!strcmp(item, string)) in match_string()
DKconfig.debug119 function, module, format string, and line number. This mechanism
623 string "Char sequence that enables magic SysRq over serial"
630 If unsure, leave an empty string and the option will not be enabled.
2362 tristate "Test string functions at runtime"
2567 Enable this option to test the kernel's string (<linux/stringhash.h>), and
/lib/kunit/
DMakefile6 string-stream.o \
23 obj-$(CONFIG_KUNIT_TEST) += string-stream-test.o
/lib/crypto/mpi/
Dmpicoder.c202 MPI mpi_scanval(const char *string) in mpi_scanval() argument
210 if (mpi_fromstr(a, string)) { in mpi_scanval()