Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
4dac6348
Commit
4dac6348
authored
Aug 20, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_arrays: remove unused macro _ARRAY_GROW
don't start variables with _, they have local scope anyway
parent
b1239508
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
32 deletions
+17
-32
include/vlc_arrays.h
include/vlc_arrays.h
+17
-32
No files found.
include/vlc_arrays.h
View file @
4dac6348
...
...
@@ -110,30 +110,27 @@ static inline void *realloc_down( void *ptr, size_t size )
#define TAB_FIND( count, tab, p, index ) \
do { \
int _i_;
\
(index) = -1;
\
for( _i_ = 0; _i_ < (count); _i_++ )
\
(index) = -1;
\
for( int i = 0; i < (count); i++ )
\
if( (tab)[i] == (p) )
\
{ \
if( (tab)[_i_] == (p) ) \
{ \
(index) = _i_; \
break; \
} \
(index) = i; \
break; \
} \
} while(0)
#define TAB_REMOVE( count, tab, p ) \
do { \
int
_i_index_;
\
TAB_FIND( count, tab, p,
_i_index_ );
\
if(
_i_index_ >= 0 )
\
int
i_index;
\
TAB_FIND( count, tab, p,
i_index );
\
if(
i_index >= 0 )
\
{ \
if( (count) > 1 ) \
{ \
memmove( ((void**)(tab) +
_i_index_
), \
((void**)(tab) +
_i_index_
+1), \
( (count) -
_i_index_
- 1 ) * sizeof( void* ) );\
memmove( ((void**)(tab) +
i_index
), \
((void**)(tab) +
i_index
+1), \
( (count) -
i_index
- 1 ) * sizeof( void* ) );\
} \
(count)--; \
if( (count) == 0 ) \
...
...
@@ -208,24 +205,6 @@ static inline void *realloc_down( void *ptr, size_t size )
_ARRAY_ALLOC(array, (int)(array.i_alloc * 1.5) ) \
}
#define _ARRAY_GROW(array,additional) { \
int i_first = (array).i_alloc; \
while( (array).i_alloc - i_first < additional ) \
{ \
if( (array).i_alloc < 10 ) \
_ARRAY_ALLOC(array, 10 ) \
else if( (array).i_alloc == (array).i_size ) \
_ARRAY_ALLOC(array, (int)((array).i_alloc * 1.5) ) \
else break; \
} \
}
#define _ARRAY_SHRINK(array) { \
if( (array).i_size > 10 && (array).i_size < (int)((array).i_alloc / 1.5) ) { \
_ARRAY_ALLOC(array, (array).i_size + 5); \
} \
}
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
/* API */
...
...
@@ -269,6 +248,12 @@ static inline void *realloc_down( void *ptr, size_t size )
(array).i_size++; \
} while(0)
#define _ARRAY_SHRINK(array) { \
if( (array).i_size > 10 && (array).i_size < (int)((array).i_alloc / 1.5) ) { \
_ARRAY_ALLOC(array, (array).i_size + 5); \
} \
}
#define ARRAY_REMOVE(array,pos) \
do { \
if( (array).i_size - (pos) - 1 ) \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment