HomeSort by: relevance | last modified time | path
    Searched defs:bufmem (Results 1 - 9 of 9) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/test/
bio_memleak_test.c 20 BUF_MEM bufmem; local
27 bufmem.length = sizeof(str);
28 bufmem.data = (char *)str;
29 bufmem.max = bufmem.length;
30 BIO_set_mem_buf(bio, &bufmem, BIO_NOCLOSE);
47 BUF_MEM *bufmem = NULL; local
54 BIO_get_mem_ptr(bio, &bufmem);
55 if (!TEST_ptr(bufmem))
61 if (!TEST_mem_eq(bufmem->data, bufmem->length, "Hello World\n", 12)
75 BUF_MEM *bufmem; local
110 BUF_MEM *bufmem; local
241 BUF_MEM bufmem; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
bio_memleak_test.c 20 BUF_MEM bufmem; local
27 bufmem.length = sizeof(str);
28 bufmem.data = (char *) str;
29 bufmem.max = bufmem.length;
30 BIO_set_mem_buf(bio, &bufmem, BIO_NOCLOSE);
47 BUF_MEM *bufmem = NULL; local
54 BIO_get_mem_ptr(bio, &bufmem);
55 if (!TEST_ptr(bufmem))
61 if (!TEST_mem_eq(bufmem->data, bufmem->length, "Hello World\n", 12)
75 BUF_MEM *bufmem; local
110 BUF_MEM *bufmem; local
241 BUF_MEM bufmem; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
bio_memleak_test.c 22 BUF_MEM bufmem; local
29 bufmem.length = sizeof(str);
30 bufmem.data = (char *) str;
31 bufmem.max = bufmem.length;
32 BIO_set_mem_buf(bio, &bufmem, BIO_NOCLOSE);
49 BUF_MEM *bufmem = NULL; local
56 BIO_get_mem_ptr(bio, &bufmem);
57 if (!TEST_ptr(bufmem))
63 if (!TEST_mem_eq(bufmem->data, bufmem->length, "Hello World\n", 12)
77 BUF_MEM *bufmem; local
112 BUF_MEM *bufmem; local
243 BUF_MEM bufmem; local
    [all...]
  /src/bin/pax/
buf_subs.c 70 * Need to change bufmem to dynamic allocation when the upper
74 static char bufmem[MAXBLK+BLKMULT]; /* i/o buffer + pushback id space */ variable
96 buf = &(bufmem[BLKMULT]);
144 buf = &(bufmem[BLKMULT]);
179 buf = &(bufmem[BLKMULT]);
  /src/usr.bin/systat/
bufcache.c 81 static uint64_t bufmem; variable
136 if (sysctlnametomib("vm.bufmem", mib, &len) == -1)
137 error("can't get \"vm.bufmem\" mib: %s",
140 len = sizeof(bufmem);
141 if (sysctl(mib, 2, &bufmem, &len, NULL, 0) == -1)
142 error("can't get \"vm.bufmem\": %s", strerror(errno));
147 pgwidth, nbuf, kbwidth, bufmem / 1024,
148 ((bufmem * 100.0) + 0.5) / getpagesize() / uvmexp.npages);
179 if (nbuf == 0 || bufmem == 0) {
201 (long)(v/1024), 100 * v / bufmem,
    [all...]
vmstat.c 480 static u_long bufmem; local
518 size = sizeof(bufmem);
519 if (sysctlbyname("vm.bufmem", &bufmem, &size, NULL, 0) < 0) {
543 putint((int) (bufmem / 1024), MEMROW + 3, MEMCOL + 5, 12);
544 putint((int) ((bufmem * 100) + 0.5) / s.uvmexp.pagesize / s.uvmexp.npages,
  /src/sys/kern/
vfs_bio.c 313 u_long bufmem; variable
487 bufmem = 0;
563 if (bufmem < bufmem_lowater)
567 if (bufmem > bufmem_hiwater)
583 (bufmem - bufmem_lowater))
603 if (bufmem < bufmem_lowater)
606 if (bufmem > bufmem_hiwater)
607 return bufmem - bufmem_hiwater;
615 MIN((bufmem - bufmem_lowater) / 16, pagedemand * PAGE_SIZE)));
1353 if ((bufmem += delta) > bufmem_hiwater)
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
masterdump.c 1639 char *bufmem; local
1644 bufmem = isc_mem_get(dctx->mctx, initial_buffer_length);
1646 isc_buffer_init(&buffer, bufmem, initial_buffer_length);
1710 char *bufmem; local
1719 bufmem = isc_mem_get(dctx->mctx, initial_buffer_length);
1721 isc_buffer_init(&buffer, bufmem, initial_buffer_length);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
masterdump.c 1671 char *bufmem; local
1676 bufmem = isc_mem_get(dctx->mctx, initial_buffer_length);
1678 isc_buffer_init(&buffer, bufmem, initial_buffer_length);
1743 char *bufmem; local
1752 bufmem = isc_mem_get(dctx->mctx, initial_buffer_length);
1754 isc_buffer_init(&buffer, bufmem, initial_buffer_length);
2018 char *bufmem; local
2037 bufmem = isc_mem_get(mctx, initial_buffer_length);
2039 isc_buffer_init(&buffer, bufmem, initial_buffer_length);

Completed in 35 milliseconds