SECRET_SIZE        44 maint/gnulib/tests/test-explicit_bzero.c static char zero[SECRET_SIZE] = { 0 };
SECRET_SIZE        53 maint/gnulib/tests/test-explicit_bzero.c static char stbuf[SECRET_SIZE];
SECRET_SIZE        58 maint/gnulib/tests/test-explicit_bzero.c   memcpy (stbuf, SECRET, SECRET_SIZE);
SECRET_SIZE        59 maint/gnulib/tests/test-explicit_bzero.c   explicit_bzero (stbuf, SECRET_SIZE);
SECRET_SIZE        60 maint/gnulib/tests/test-explicit_bzero.c   ASSERT (memcmp (zero, stbuf, SECRET_SIZE) == 0);
SECRET_SIZE       114 maint/gnulib/tests/test-explicit_bzero.c   char *heapbuf = (char *) malloc (SECRET_SIZE);
SECRET_SIZE       116 maint/gnulib/tests/test-explicit_bzero.c   memcpy (heapbuf, SECRET, SECRET_SIZE);
SECRET_SIZE       117 maint/gnulib/tests/test-explicit_bzero.c   explicit_bzero (heapbuf, SECRET_SIZE);
SECRET_SIZE       119 maint/gnulib/tests/test-explicit_bzero.c   if (is_range_mapped (addr, addr + SECRET_SIZE))
SECRET_SIZE       123 maint/gnulib/tests/test-explicit_bzero.c       ASSERT (memcmp (heapbuf, SECRET, SECRET_SIZE) != 0);
SECRET_SIZE       143 maint/gnulib/tests/test-explicit_bzero.c   char stackbuf[SECRET_SIZE];
SECRET_SIZE       146 maint/gnulib/tests/test-explicit_bzero.c       memcpy (stackbuf, SECRET, SECRET_SIZE);
SECRET_SIZE       147 maint/gnulib/tests/test-explicit_bzero.c       explicit_bzero (stackbuf, SECRET_SIZE);
SECRET_SIZE       157 maint/gnulib/tests/test-explicit_bzero.c       return memcmp (zero, last_stackbuf, SECRET_SIZE) != 0;