mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
prefix internally used inline function with _
This commit is contained in:
parent
70b820d875
commit
f6e187f0a5
1 changed files with 6 additions and 6 deletions
|
|
@ -58,31 +58,31 @@ char *pa_xstrndup(const char *s, size_t l) PA_GCC_MALLOC;
|
||||||
void* pa_xmemdup(const void *p, size_t l) PA_GCC_MALLOC PA_GCC_ALLOC_SIZE(2);
|
void* pa_xmemdup(const void *p, size_t l) PA_GCC_MALLOC PA_GCC_ALLOC_SIZE(2);
|
||||||
|
|
||||||
/** Internal helper for pa_xnew() */
|
/** Internal helper for pa_xnew() */
|
||||||
static inline void* pa_xnew_internal(unsigned n, size_t k) {
|
static inline void* _pa_xnew_internal(unsigned n, size_t k) {
|
||||||
assert(n < INT_MAX/k);
|
assert(n < INT_MAX/k);
|
||||||
return pa_xmalloc(n*k);
|
return pa_xmalloc(n*k);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Allocate n new structures of the specified type. */
|
/** Allocate n new structures of the specified type. */
|
||||||
#define pa_xnew(type, n) ((type*) pa_xnew_internal((n), sizeof(type)))
|
#define pa_xnew(type, n) ((type*) _pa_xnew_internal((n), sizeof(type)))
|
||||||
|
|
||||||
/** Internal helper for pa_xnew0() */
|
/** Internal helper for pa_xnew0() */
|
||||||
static inline void* pa_xnew0_internal(unsigned n, size_t k) {
|
static inline void* _pa_xnew0_internal(unsigned n, size_t k) {
|
||||||
assert(n < INT_MAX/k);
|
assert(n < INT_MAX/k);
|
||||||
return pa_xmalloc0(n*k);
|
return pa_xmalloc0(n*k);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Same as pa_xnew() but set the memory to zero */
|
/** Same as pa_xnew() but set the memory to zero */
|
||||||
#define pa_xnew0(type, n) ((type*) pa_xnew0_internal((n), sizeof(type)))
|
#define pa_xnew0(type, n) ((type*) _pa_xnew0_internal((n), sizeof(type)))
|
||||||
|
|
||||||
/** Internal helper for pa_xnew0() */
|
/** Internal helper for pa_xnew0() */
|
||||||
static inline void* pa_xnewdup_internal(const void *p, unsigned n, size_t k) {
|
static inline void* _pa_xnewdup_internal(const void *p, unsigned n, size_t k) {
|
||||||
assert(n < INT_MAX/k);
|
assert(n < INT_MAX/k);
|
||||||
return pa_xmemdup(p, n*k);
|
return pa_xmemdup(p, n*k);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Same as pa_xnew() but set the memory to zero */
|
/** Same as pa_xnew() but set the memory to zero */
|
||||||
#define pa_xnewdup(type, p, n) ((type*) pa_xnewdup_internal((p), (n), sizeof(type)))
|
#define pa_xnewdup(type, p, n) ((type*) _pa_xnewdup_internal((p), (n), sizeof(type)))
|
||||||
|
|
||||||
PA_C_DECL_END
|
PA_C_DECL_END
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue