Searched defs:oldcount (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dldt.c336 unsigned short wine_ldt_realloc_entries( unsigned short sel, int oldcount, int newcount ) argument
340 if (oldcount < newcount) /* we need to add selectors */
346 if (index + newcount > LDT_SIZE) i = oldcount;
348 for (i = oldcount; i < newcount; i++)
353 wine_ldt_free_entries( sel, oldcount );
358 for (i = oldcount; i < newcount; i++)
363 else if (oldcount > newcount) /* we need to remove selectors */
365 wine_ldt_free_entries( sel + (newcount << 3), newcount - oldcount );

Completed in 43 milliseconds