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

  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_map11.c 114 VSTRING *ext_buf = vstring_alloc(100); local
120 quote_822_local(ext_buf, STR(int_buf));
121 tree->head = tok822_scan(STR(ext_buf), &tree->tail);
123 vstring_free(ext_buf);
  /src/sys/arch/mips/cavium/dev/
if_cnmac.c 1178 vaddr_t ext_buf; local
1203 ext_buf = addr & ~(ext_size - 1);
1204 MEXTADD(m, ext_buf, ext_size, 0, cnmac_buf_ext_free, NULL);
  /src/sys/sys/
mbuf.h 258 char *ext_buf; /* start of buffer */ member in struct:_m_ext_storage
481 (m)->m_ext_storage.ext_buf = malloc((size), 0, (how)); \
482 if ((m)->m_ext_storage.ext_buf != NULL) { \
484 (m)->m_data = (m)->m_ext.ext_buf; \
497 (m)->m_data = (m)->m_ext.ext_buf = (char *)(buf); \
506 (((m)->m_flags & M_EXT) ? (m)->m_ext.ext_buf : \
554 ((m)->m_flags & M_EXT ? (m)->m_ext.ext_buf + (m)->m_ext.ext_size - \
  /src/crypto/external/bsd/openssl/dist/apps/
s_client.c 278 unsigned char ext_buf[4 + 65536]; local
282 ext_buf[0] = (unsigned char)(ext_type >> 8);
283 ext_buf[1] = (unsigned char)(ext_type);
284 ext_buf[2] = (unsigned char)(inlen >> 8);
285 ext_buf[3] = (unsigned char)(inlen);
286 memcpy(ext_buf + 4, in, inlen);
290 PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_client.c 412 unsigned char ext_buf[4 + 65536]; local
416 ext_buf[0] = (unsigned char)(ext_type >> 8);
417 ext_buf[1] = (unsigned char)(ext_type);
418 ext_buf[2] = (unsigned char)(inlen >> 8);
419 ext_buf[3] = (unsigned char)(inlen);
420 memcpy(ext_buf + 4, in, inlen);
424 PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);
  /src/crypto/external/apache2/openssl/dist/apps/
s_client.c 323 unsigned char ext_buf[4 + 65536]; local
327 ext_buf[0] = (unsigned char)(ext_type >> 8);
328 ext_buf[1] = (unsigned char)(ext_type);
329 ext_buf[2] = (unsigned char)(inlen >> 8);
330 ext_buf[3] = (unsigned char)(inlen);
331 memcpy(ext_buf + 4, in, inlen);
335 PEM_write_bio(bio_c_out, pem_name, "", ext_buf, 4 + inlen);

Completed in 48 milliseconds