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

  /src/crypto/external/bsd/openssl/dist/providers/implementations/storemgmt/
file_store_any2obj.c 115 size_t mem_len = 0, mem_want; local
134 mem_len += mem_want;
149 if (!BUF_MEM_grow(mem, mem_len + mem_want)) {
155 ok = BIO_read(in, &mem->data[mem_len], mem_want) == (int)mem_want;
156 mem_len += mem_want;
184 size_t mem_len = 0, mem_want; local
201 mem_len += mem_want;
216 if (!BUF_MEM_grow(mem, mem_len + mem_want)) {
222 ok = BIO_read(in, &mem->data[mem_len], mem_want) == (int)mem_want;
223 mem_len += mem_want
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/implementations/storemgmt/
file_store_any2obj.c 161 size_t mem_len = 0, mem_want; local
180 mem_len += mem_want;
194 if (!BUF_MEM_grow(mem, mem_len + mem_want)) {
200 ok = BIO_read(in, &mem->data[mem_len], mem_want) == (int)mem_want;
201 mem_len += mem_want;
231 size_t mem_len = 0, mem_want; local
248 mem_len += mem_want;
262 if (!BUF_MEM_grow(mem, mem_len + mem_want)) {
268 ok = BIO_read(in, &mem->data[mem_len], mem_want) == (int)mem_want;
269 mem_len += mem_want
    [all...]
  /src/external/bsd/openldap/dist/contrib/slapd-modules/ppm/
ppm.c 556 int mem_len = MEM_INIT_SZ; local
560 int mem_len = ppErrmsg->bv_len; local
598 mem_len = realloc_error_message(&szErrStr, mem_len,
600 mem_len = realloc_error_message(origmsg, &szErrStr, mem_len,
711 mem_len = realloc_error_message(&szErrStr, mem_len,
713 mem_len = realloc_error_message(origmsg, &szErrStr, mem_len,
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
dgst.c 563 size_t i, e = 0, length = strlen(file), newline_count = 0, mem_len = 0; local
570 mem_len = length + newline_count + 1;
571 file_cpy = app_malloc(mem_len, file);
  /src/crypto/external/bsd/openssl/dist/apps/
dgst.c 520 size_t i, e = 0, length = strlen(file), newline_count = 0, mem_len = 0; local
527 mem_len = length + newline_count + 1;
528 file_cpy = app_malloc(mem_len, file);
  /src/crypto/external/bsd/openssl.old/dist/apps/
dgst.c 472 size_t i, e = 0, length = strlen(file), newline_count = 0, mem_len = 0; local
479 mem_len = length + newline_count + 1;
480 file_cpy = app_malloc(mem_len, file);
  /src/external/gpl3/gdb/dist/gdbserver/
remote-utils.cc 1493 unsigned int mem_len; local
1498 decode_m_packet (&cs.own_buf[1], &mem_addr, &mem_len);
1499 mem_buf = (unsigned char *) xmalloc (mem_len);
1500 if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
1501 bin2hex (mem_buf, cs.own_buf, mem_len);
1510 decode_x_packet (&cs.own_buf[1], &mem_addr, &mem_len);
1511 mem_buf = (unsigned char *) xmalloc (mem_len);
1512 if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
1518 new_len = remote_escape_output (mem_buf, mem_len, 1,
1524 if (out_len_units != mem_len)
1623 unsigned int mem_len; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbserver/
remote-utils.cc 1481 unsigned int mem_len; local
1483 decode_m_packet (&cs.own_buf[1], &mem_addr, &mem_len);
1484 mem_buf = (unsigned char *) xmalloc (mem_len);
1485 if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
1486 bin2hex (mem_buf, cs.own_buf, mem_len);
1574 unsigned int mem_len; local
1578 decode_m_packet (&cs.own_buf[1], &mem_addr, &mem_len);
1579 mem_buf = (unsigned char *) xmalloc (mem_len);
1580 if (read_inferior_memory (mem_addr, mem_buf, mem_len) == 0)
1581 bin2hex (mem_buf, cs.own_buf, mem_len);
    [all...]
  /src/sys/arch/shark/ofw/
ofw.c 1457 int mem_len; local
1462 (mem_len = OF_getproplen(phandle, "reg")) <= 0 ||
1463 (OFphysmem = (struct mem_region *)ofw_malloc(mem_len)) == 0 ||
1464 OF_getprop(phandle, "reg", OFphysmem, mem_len) != mem_len ||
1471 nOFphysmem = mem_len / sizeof(struct mem_region);

Completed in 32 milliseconds