Home
last modified time | relevance | path

Searched refs:nchars (Results 1 – 3 of 3) sorted by relevance

/glibc-2.36/string/
Dstratcliff.c61 size_t nchars = size / sizeof (CHAR); in do_test() local
84 if (nchars > 64) in do_test()
85 nchars64 = nchars - 64; in do_test()
89 if (nchars > 128) in do_test()
90 max128 = nchars - 128; in do_test()
95 mprotect (adr + 2 * nchars, size, PROT_NONE); in do_test()
96 adr += nchars; in do_test()
99 mprotect (dest + 2 * nchars, size, PROT_NONE); in do_test()
100 dest += nchars; in do_test()
102 MEMSET (adr, L('T'), nchars); in do_test()
[all …]
/glibc-2.36/manual/
Dfilesys.texi1388 ssize_t nchars = readlink (filename, buffer, size);
1389 if (nchars < 0)
1394 if (nchars < size)
/glibc-2.36/ChangeLog.old/
DChangeLog.1936694 * string/stratcliff.c (do_test): Declare size, nchars, inner,
36696 %Zd with %zu in printf. Update "MAX (0, nchars - 128)" and
36697 "MAX (outer, nchars - 64)" to support unsigned outer and
36698 nchars. Also exit loop when outer == 0.