Lines Matching +full:num +full:- +full:strings

18 .\" Set up some character translations and predefined strings.  \*(-- will
24 .tr \(*W-
27 . ds -- \(*W-
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
37 . ds -- \|\(em\|
45 .\" Escape single quotes in literal strings from groff's Unicode transform.
71 .\" Fear. Run. Save yourself. No user-serviceable parts.
81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
99 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
100 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
101 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
102 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
104 . \" troff and (daisy-wheel) nroff accents
123 . ds d- d\h'-1'\(ga
124 . ds D- D\h'-1'\(hy
134 .TH OPENSSL_MALLOC 3ossl "2023-09-19" "3.0.11" "OpenSSL"
157 \&\- Memory allocation functions
165 \& void *OPENSSL_malloc(size_t num);
166 \& void *OPENSSL_zalloc(size_t num);
167 \& void *OPENSSL_realloc(void *addr, size_t num);
174 \& void *OPENSSL_clear_realloc(void *p, size_t old_len, size_t num);
175 \& void OPENSSL_clear_free(void *str, size_t num);
178 \& void *CRYPTO_malloc(size_t num, const char *file, int line);
179 \& void *CRYPTO_zalloc(size_t num, const char *file, int line);
180 \& void *CRYPTO_realloc(void *p, size_t num, const char *file, int line);
183 \& char *CRYPTO_strndup(const char *p, size_t num, const char *file, int line);
184 \& void *CRYPTO_clear_realloc(void *p, size_t old_len, size_t num,
186 \& void CRYPTO_clear_free(void *str, size_t num, const char *, int);
188 \& typedef void *(*CRYPTO_malloc_fn)(size_t num, const char *file, int line);
189 \& typedef void *(*CRYPTO_realloc_fn)(void *addr, size_t num, const char *file,
206 hidden entirely by defining \fB\s-1OPENSSL_API_COMPAT\s0\fR with a suitable version value,
224 OpenSSL memory allocation is handled by the \fBOPENSSL_xxx\fR \s-1API.\s0 These are
226 parameters and call a lower-level \fBCRYPTO_xxx\fR \s-1API.\s0
263 If any of \fBmalloc_fn\fR, \fBrealloc_fn\fR, or \fBfree_fn\fR are \s-1NULL,\s0 then
269 If the library is built with the \f(CW\*(C`crypto\-mdebug\*(C'\fR option, then one
271 variables, \fB\s-1OPENSSL_MALLOC_FAILURES\s0\fR and \fB\s-1OPENSSL_MALLOC_FD\s0\fR,
277 respectively. If a pointer is \s-1NULL,\s0 then the corresponding count is not stored.
280 \&\fB\s-1OPENSSL_MALLOC_FAILURES\s0\fR controls how often allocations should fail.
288 If the variable \fB\s-1OPENSSL_MALLOC_FD\s0\fR is parsed as a positive integer, then
290 \&\fB\s-1OPENSSL_MALLOC_FAILURES\s0\fR described above. For every allocation it will log
314 return a pointer to allocated memory or \s-1NULL\s0 on error.
320 \&\fBCRYPTO_set_mem_debug()\fR, and \fBCRYPTO_mem_ctrl()\fR are deprecated and are no-ops that
321 always return \-1.
324 are deprecated and are no-ops that always return 0.
332 The memory-leak checking has been deprecated in OpenSSL 3.0 in favor of
336 Copyright 2016\-2022 The OpenSSL Project Authors. All Rights Reserved.
340 in the file \s-1LICENSE\s0 in the source distribution or at