Home
last modified time | relevance | path

Searched refs:out_ptr (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Filter-Util-Call/
H A DCall.xs59 char *out_ptr; in filter_call() local
73 out_ptr = SvPVX(my_sv) + BUF_OFFSET(my_sv) ; in filter_call()
81 sv_catpvn(buf_sv, out_ptr, maxlen > n ? n : maxlen ); in filter_call()
94 if ((p = ninstr(out_ptr, out_ptr + n, nl, nl + 1))) { in filter_call()
96 sv_catpvn(buf_sv, out_ptr, p - out_ptr + 1); in filter_call()
98 n = n - (p - out_ptr + 1); in filter_call()
99 BUF_OFFSET(my_sv) += (p - out_ptr + 1); in filter_call()
108 sv_catpvn(buf_sv, out_ptr, n) ; in filter_call()
/openbsd-src/lib/libcrypto/bytestring/
H A Dbs_cbs.c87 CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) in CBS_stow() argument
89 free(*out_ptr); in CBS_stow()
90 *out_ptr = NULL; in CBS_stow()
96 if ((*out_ptr = malloc(cbs->len)) == NULL) in CBS_stow()
99 memcpy(*out_ptr, cbs->data, cbs->len); in CBS_stow()
106 CBS_strdup(const CBS *cbs, char **out_ptr) in CBS_strdup() argument
108 free(*out_ptr); in CBS_strdup()
109 *out_ptr = NULL; in CBS_strdup()
114 *out_ptr = strndup((const char *)cbs->data, cbs->len); in CBS_strdup()
115 return (*out_ptr != NULL); in CBS_strdup()
H A Dbytestring.h72 * CBS_stow copies the current contents of |cbs| into |*out_ptr| and
73 * |*out_len|. If |*out_ptr| is not NULL, the contents are freed with
75 * success, |*out_ptr| should be freed with free. If |cbs| is empty,
76 * |*out_ptr| will be NULL.
78 int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len);
81 * CBS_strdup copies the current contents of |cbs| into |*out_ptr| as a
82 * NUL-terminated C string. If |*out_ptr| is not NULL, the contents are freed
84 * |*out_ptr| should be freed with free. If |cbs| contains NUL bytes,
87 int CBS_strdup(const CBS *cbs, char **out_ptr);
/openbsd-src/lib/libssl/
H A Dbs_cbs.c87 CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len) in CBS_stow() argument
89 free(*out_ptr); in CBS_stow()
90 *out_ptr = NULL; in CBS_stow()
96 if ((*out_ptr = malloc(cbs->len)) == NULL) in CBS_stow()
99 memcpy(*out_ptr, cbs->data, cbs->len); in CBS_stow()
106 CBS_strdup(const CBS *cbs, char **out_ptr) in CBS_strdup() argument
108 free(*out_ptr); in CBS_strdup()
109 *out_ptr = NULL; in CBS_strdup()
114 *out_ptr = strndup((const char *)cbs->data, cbs->len); in CBS_strdup()
115 return (*out_ptr != NULL); in CBS_strdup()
H A Dbytestring.h72 * CBS_stow copies the current contents of |cbs| into |*out_ptr| and
73 * |*out_len|. If |*out_ptr| is not NULL, the contents are freed with
75 * success, |*out_ptr| should be freed with free. If |cbs| is empty,
76 * |*out_ptr| will be NULL.
78 int CBS_stow(const CBS *cbs, uint8_t **out_ptr, size_t *out_len);
81 * CBS_strdup copies the current contents of |cbs| into |*out_ptr| as a
82 * NUL-terminated C string. If |*out_ptr| is not NULL, the contents are freed
84 * |*out_ptr| should be freed with free. If |cbs| contains NUL bytes,
87 int CBS_strdup(const CBS *cbs, char **out_ptr);
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dobjdump.c445 asymbol **in_ptr = symbols, **out_ptr = symbols; in remove_useless_symbols() local
459 *out_ptr++ = sym; in remove_useless_symbols()
461 return out_ptr - symbols; in remove_useless_symbols()
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dobjdump.c463 asymbol **in_ptr = symbols, **out_ptr = symbols; in remove_useless_symbols() local
477 *out_ptr++ = sym; in remove_useless_symbols()
479 return out_ptr - symbols; in remove_useless_symbols()
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DCxx2bPapers.csv16 "`P1132R8 <https://wg21.link/P1132R8>`__","LWG","out_ptr - a scalable output pointer abstraction","…
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Decoff.c2622 char *out_ptr; in _bfd_ecoff_write_object_contents() local
2635 out_ptr = (char *) reloc_buff; in _bfd_ecoff_write_object_contents()
2639 reloc_ptr_ptr++, out_ptr += external_reloc_size) in _bfd_ecoff_write_object_contents()
2708 (*swap_reloc_out) (abfd, &in, (void *) out_ptr); in _bfd_ecoff_write_object_contents()
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Decoff.c2764 char *out_ptr; local
2777 out_ptr = (char *) reloc_buff;
2780 reloc_ptr_ptr++, out_ptr += external_reloc_size)
2842 (*swap_reloc_out) (abfd, &in, (PTR) out_ptr);