Searched refs:pool (Results 1 - 25 of 117) sorted by relevance

12345

/vbox/src/libs/xpcom18a4/nsprpub/lib/ds/
H A Dplarena.c58 #define COUNT(pool,what) (pool)->stats.what++
60 #define COUNT(pool,what) /* nothing */
108 PLArenaPool *pool, const char *name, PRUint32 size, PRUint32 align)
116 pool->mask = PR_BITMASK(PR_CeilingLog2(align));
117 pool->first.next = NULL;
118 pool->first.base = pool->first.avail = pool->first.limit =
119 (PRUword)PL_ARENA_ALIGN(pool,
107 PL_InitArenaPool( PLArenaPool *pool, const char *name, PRUint32 size, PRUint32 align) argument
157 PL_ArenaAllocate(PLArenaPool *pool, PRUint32 nb) argument
237 PL_ArenaGrow( PLArenaPool *pool, void *p, PRUint32 size, PRUint32 incr) argument
252 FreeArenaList(PLArenaPool *pool, PLArena *head, PRBool reallyFree) argument
292 PL_ArenaRelease(PLArenaPool *pool, char *mark) argument
305 PL_FreeArenaPool(PLArenaPool *pool) argument
311 PL_FinishArenaPool(PLArenaPool *pool) argument
363 PL_ArenaCountAllocation(PLArenaPool *pool, PRUint32 nb) argument
372 PL_ArenaCountInplaceGrowth( PLArenaPool *pool, PRUint32 size, PRUint32 incr) argument
378 PL_ArenaCountGrowth( PLArenaPool *pool, PRUint32 size, PRUint32 incr) argument
390 PL_ArenaCountRelease(PLArenaPool *pool, char *mark) argument
395 PL_ArenaCountRetract(PLArenaPool *pool, char *mark) argument
[all...]
H A Dplarenas.h58 ** Allocate an arena pool as specified by the parameters.
73 ** Destroy an arena pool previously allocated by PL_AllocArenaPool().
79 PR_EXTERN(PRStatus) PL_DestroyArenaPool(PLArenaPool *pool, PRBool checkEmpty);
84 ** Initialize an arena pool with the given name for debugging and metering,
88 PLArenaPool *pool, const char *name, PRUint32 size, PRUint32 align);
96 ** Free the arenas in pool. The user may continue to allocate from pool
98 ** again unless PL_FinishArenaPool(pool) has been called.
100 PR_EXTERN(void) PL_FreeArenaPool(PLArenaPool *pool); variable
103 ** Free the arenas in pool an
105 PR_EXTERN(void) PL_FinishArenaPool(PLArenaPool *pool); variable
110 PR_EXTERN(void) PL_CompactArenaPool(PLArenaPool *pool); variable
[all...]
H A Dplarena.h68 PRUint32 narenas; /* number of arenas in pool */
84 PLArena first; /* first arena in pool list */
99 #define PL_ARENA_ALIGN(pool, n) (((PRUword)(n) + PL_ARENA_CONST_ALIGN_MASK) \
102 #define PL_INIT_ARENA_POOL(pool, name, size) \
103 PL_InitArenaPool(pool, name, size, PL_ARENA_CONST_ALIGN_MASK + 1)
105 #define PL_ARENA_ALIGN(pool, n) (((PRUword)(n) + (pool)->mask) & ~(pool)->mask)
108 #define PL_ARENA_ALLOCATE(p, pool, nb) \
110 PLArena *_a = (pool)
[all...]
H A Dplhash.h89 void * (PR_CALLBACK *allocTable)(void *pool, PRSize size);
90 void (PR_CALLBACK *freeTable)(void *pool, void *item);
91 PLHashEntry * (PR_CALLBACK *allocEntry)(void *pool, const void *key);
92 void (PR_CALLBACK *freeEntry)(void *pool, PLHashEntry *he, PRUintn flag);
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_bufpool.h20 DECLEXPORT(void) crBufferPoolFree( CRBufferPool *pool ); variable
21 DECLEXPORT(void) crBufferPoolCallbackFree(CRBufferPool *pool, CRBufferPoolDeleteCallback pfnDelete);
23 DECLEXPORT(void) crBufferPoolPush( CRBufferPool *pool, void *buf, unsigned int bytes );
24 DECLEXPORT(void *) crBufferPoolPop( CRBufferPool *pool, unsigned int bytes );
26 DECLEXPORT(int) crBufferPoolGetNumBuffers( CRBufferPool *pool ); variable
27 DECLEXPORT(int) crBufferPoolGetMaxBuffers( CRBufferPool *pool ); variable
H A Dcr_hash.h30 DECLEXPORT(void) crFreeHashIdPool( CRHashIdPool *pool ); variable
31 DECLEXPORT(GLboolean) crHashIdPoolIsIdFree( const CRHashIdPool *pool, GLuint id );
32 DECLEXPORT(GLuint) crHashIdPoolAllocBlock( CRHashIdPool *pool, GLuint count );
33 DECLEXPORT(void) crHashIdPoolFreeBlock( CRHashIdPool *pool, GLuint first, GLuint count );
35 DECLEXPORT(GLboolean) crHashIdPoolAllocId( CRHashIdPool *pool, GLuint id );
36 DECLEXPORT(void) crHashIdWalkKeys( CRHashIdPool *pool, CRHashIdWalkKeys walkFunc , void *data);
42 /* to ensure hash table pool id consistency, there is no crHashTableFreeKeys/UnregisterKey,
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dbufpool.c13 * New (version 1.4) buffer pool implementation.
15 * Now, each buffer in the pool can be a different size.
20 * really wasn't good for anything since we always grew the buffer pool
25 * more than about 10-15 buffers in the pool, that's OK. A binary tree
28 * MCH: BufferPoolPop will now return the smallest buffer in the pool that
56 crBufferPoolGetNumBuffers( CRBufferPool *pool )
58 if ( pool )
59 return pool->numBuffers;
64 crBufferPoolGetMaxBuffers( CRBufferPool *pool )
66 if ( pool )
74 CRBufferPool *pool = crCalloc(sizeof(CRBufferPool)); local
96 crBufferPoolCallbackFree(CRBufferPool *pool, CRBufferPoolDeleteCallback pfnDelete) argument
110 crBufferPoolPush( CRBufferPool *pool, void *buf, unsigned int bytes ) argument
133 crBufferPoolPop( CRBufferPool *pool, unsigned int bytes ) argument
[all...]
H A Didpool.c30 CRIdPool *pool = (CRIdPool *) crCalloc(sizeof(CRIdPool)); local
31 pool->freeList = (FreeElem *) crCalloc(sizeof(FreeElem));
32 pool->freeList->min = 1;
33 pool->freeList->max = CR_MAXUINT;
34 pool->freeList->next = NULL;
35 pool->freeList->prev = NULL;
36 return pool;
39 void crFreeIdPool( CRIdPool *pool )
42 for (i = pool->freeList; i; i = next)
47 crFree(pool);
54 crIdPoolAllocBlock( CRIdPool *pool, GLuint count ) argument
114 crIdPoolFreeBlock( CRIdPool *pool, GLuint first, GLuint count ) argument
220 crIdPoolAllocId( CRIdPool *pool, GLuint id ) argument
265 crIdPoolIsIdFree( const CRIdPool *pool, GLuint id ) argument
285 crIdPoolIsIdUsed( const CRIdPool *pool, GLuint id ) argument
[all...]
H A Dhash.c50 CRHashIdPool *pool; local
57 pool = (CRHashIdPool *) crCalloc(sizeof(CRHashIdPool));
59 RTListInit(&pool->freeList);
62 RTListAppend(&pool->freeList, &elem->Node);
63 pool->min = min;
64 pool->max = max;
65 return pool;
73 void crFreeHashIdPool( CRHashIdPool *pool )
76 RTListForEachSafe(&pool->freeList, i, next, FreeElem, Node)
81 crFree(pool);
85 crHashIdPoolDbgCheckConsistency(CRHashIdPool *pool) argument
110 crHashIdPoolDbgCheckUsed( const CRHashIdPool *pool, GLuint start, GLuint count, GLboolean fUsed ) argument
138 crHashIdPoolAllocBlock( CRHashIdPool *pool, GLuint count ) argument
173 crHashIdPoolFreeBlock( CRHashIdPool *pool, GLuint first, GLuint count ) argument
265 crHashIdPoolAllocId( CRHashIdPool *pool, GLuint id ) argument
331 crHashIdPoolIsIdFree( const CRHashIdPool *pool, GLuint id ) argument
347 crHashIdWalkKeys( CRHashIdPool *pool, CRHashIdWalkKeys walkFunc , void *data) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A Dpool.h1 /* $NetBSD: pool.h,v 1.54 2006/08/20 09:35:25 yamt Exp $ */
66 /* The pool cache group. */
69 pcg_list; /* link in the pool cache's group list */
81 pc_poollist; /* entry on pool's group list */
88 struct pool *pc_pool; /* parent pool */
105 void *(*pa_alloc)(struct pool *, int);
106 void (*pa_free)(struct pool *, void *);
111 TAILQ_HEAD(, pool) pa_list; /* list of pools using this allocator */
125 struct pool { struct
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DAttrValid.h47 * Attribute pool validation valid values and defaults
86 #define XpGetStringAttr(pContext, pool, oid) \
87 (const char*)XpGetOneAttribute(pContext, pool, (char*)XpOidString(oid))
88 #define XpPutStringAttr(pContext, pool, oid, value) \
89 XpPutOneAttribute(pContext, pool, XpOidString(oid), value)
97 XPAttributes pool,
101 XPAttributes pool,
105 XPAttributes pool,
113 XPAttributes pool,
117 XPAttributes pool,
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DAttrValid.h47 * Attribute pool validation valid values and defaults
86 #define XpGetStringAttr(pContext, pool, oid) \
87 (const char*)XpGetOneAttribute(pContext, pool, (char*)XpOidString(oid))
88 #define XpPutStringAttr(pContext, pool, oid, value) \
89 XpPutOneAttribute(pContext, pool, XpOidString(oid), value)
97 XPAttributes pool,
101 XPAttributes pool,
105 XPAttributes pool,
113 XPAttributes pool,
117 XPAttributes pool,
[all...]
/vbox/src/apps/svnsync-vbox/
H A Dmain.c276 apr_pool_t *pool)
281 SVN_ERR(svn_ra_get_file(session, path, revision, NULL, NULL, &props, pool));
333 get_lock(svn_ra_session_t *session, apr_pool_t *pool)
341 apr_err = apr_gethostname(hostname_str, sizeof(hostname_str), pool);
345 mylocktoken = svn_string_createf(pool, "%s:%s", hostname_str,
346 svn_uuid_generate(pool));
348 subpool = svn_pool_create(pool);
365 (pool, _("Failed to get lock on destination "
387 apr_pool_t *pool);
398 apr_pool_t *pool)
266 get_props_sync(svn_ra_session_t *session, const char *default_process, svn_boolean_t parent_deflt, svn_boolean_t parent_rec, const char *path, svn_revnum_t revision, svn_boolean_t *proc, svn_boolean_t *deflt, svn_boolean_t *rec, apr_pool_t *pool) argument
332 get_lock(svn_ra_session_t *session, apr_pool_t *pool) argument
394 with_locked(svn_ra_session_t *session, with_locked_func_t func, void *baton, apr_pool_t *pool) argument
427 open_tmp_file(apr_file_t **fp, void *callback_baton, apr_pool_t *pool) argument
452 check_if_session_is_at_repos_root(svn_ra_session_t *sess, const char *url, apr_pool_t *pool) argument
483 copy_revprops(svn_ra_session_t *from_session, svn_ra_session_t *to_session, svn_revnum_t rev, svn_revnum_t rev_to, svn_boolean_t sync, apr_pool_t *pool) argument
643 init_set_target_revision(void *edit_baton, svn_revnum_t target_revision, apr_pool_t *pool) argument
657 init_open_root(void *edit_baton, svn_revnum_t base_revision, apr_pool_t *pool, void **root_baton) argument
682 init_add_directory(const char *path, void *parent_baton, const char *copyfrom_path, svn_revnum_t copyfrom_rev, apr_pool_t *pool, void **child_baton) argument
720 init_close_directory(void *dir_baton, apr_pool_t *pool) argument
735 init_add_file(const char *path, void *parent_baton, const char *copyfrom_path, svn_revnum_t copyfrom_rev, apr_pool_t *pool, void **file_baton) argument
773 init_apply_textdelta(void *file_baton, const char *base_checksum, apr_pool_t *pool, svn_txdelta_window_handler_t *handler, void **handler_baton) argument
800 init_close_file(void *file_baton, const char *text_checksum, apr_pool_t *pool) argument
817 init_change_file_prop(void *file_baton, const char *name, const svn_string_t *value, apr_pool_t *pool) argument
852 init_change_dir_prop(void *dir_baton, const char *name, const svn_string_t *value, apr_pool_t *pool) argument
887 init_close_edit(void *edit_baton, apr_pool_t *pool) argument
907 get_init_editor(const svn_delta_editor_t *wrapped_editor, void *wrapped_edit_baton, svn_revnum_t start_rev, svn_ra_session_t *prop_session, const char *default_process, svn_boolean_t replace_externals, svn_boolean_t replace_license, const svn_delta_editor_t **editor, void **edit_baton, apr_pool_t *pool) argument
969 init_commit_callback(const svn_commit_info_t *commit_info, void *baton, apr_pool_t *pool) argument
988 do_initialize(svn_ra_session_t *to_session, void *b, apr_pool_t *pool) argument
1140 initialize_cmd(apr_getopt_t *os, void *b, apr_pool_t *pool) argument
1248 lookup_revnum(svn_ra_session_t *to_session, svn_revnum_t revnum, apr_pool_t *pool) argument
1268 copy_file(const char *src_path, svn_revnum_t src_rev, const char *dst_path, void *file_baton, void *wrapped_parent_node_baton, svn_ra_session_t *from_session, apr_pool_t *pool) argument
1342 copy_dir_rec(const char *src_path, svn_revnum_t src_rev, const char *dst_path, void *dir_baton, void *wrapped_parent_node_baton, svn_ra_session_t *from_session, apr_pool_t *pool) argument
1421 set_target_revision(void *edit_baton, svn_revnum_t target_revision, apr_pool_t *pool) argument
1434 open_root(void *edit_baton, svn_revnum_t base_revision, apr_pool_t *pool, void **root_baton) argument
1477 delete_entry(const char *path, svn_revnum_t base_revision, void *parent_baton, apr_pool_t *pool) argument
1540 add_directory(const char *path, void *parent_baton, const char *copyfrom_path, svn_revnum_t copyfrom_rev, apr_pool_t *pool, void **child_baton) argument
1659 open_directory(const char *path, void *parent_baton, svn_revnum_t base_revision, apr_pool_t *pool, void **child_baton) argument
1804 add_file(const char *path, void *parent_baton, const char *copyfrom_path, svn_revnum_t copyfrom_rev, apr_pool_t *pool, void **file_baton) argument
1902 open_file(const char *path, void *parent_baton, svn_revnum_t base_revision, apr_pool_t *pool, void **file_baton) argument
2022 apply_textdelta(void *file_baton, const char *base_checksum, apr_pool_t *pool, svn_txdelta_window_handler_t *handler, void **handler_baton) argument
2057 close_file(void *file_baton, const char *text_checksum, apr_pool_t *pool) argument
2074 absent_file(const char *path, void *file_baton, apr_pool_t *pool) argument
2090 close_directory(void *dir_baton, apr_pool_t *pool) argument
2105 absent_directory(const char *path, void *dir_baton, apr_pool_t *pool) argument
2122 change_file_prop(void *file_baton, const char *name, const svn_string_t *value, apr_pool_t *pool) argument
2162 change_dir_prop(void *dir_baton, const char *name, const svn_string_t *value, apr_pool_t *pool) argument
2202 close_edit(void *edit_baton, apr_pool_t *pool) argument
2255 get_sync_editor(const svn_delta_editor_t *wrapped_editor, void *wrapped_edit_baton, svn_revnum_t base_revision, svn_revnum_t start_rev, svn_revnum_t current, svn_ra_session_t *prop_session_from, svn_ra_session_t *prop_session_to, const char *default_process, svn_boolean_t replace_externals, svn_boolean_t replace_license, const char *to_url, const svn_delta_editor_t **editor, void **edit_baton, apr_pool_t *pool) argument
2331 commit_callback(const svn_commit_info_t *commit_info, void *baton, apr_pool_t *pool) argument
2368 open_source_session(svn_ra_session_t **from_session, svn_string_t **last_merged_rev, svn_revnum_t *start_rev, svn_ra_session_t *to_session, svn_ra_callbacks2_t *callbacks, apr_hash_t *config, void *baton, apr_pool_t *pool) argument
2443 do_synchronize(svn_ra_session_t *to_session, void *b, apr_pool_t *pool) argument
2775 synchronize_cmd(apr_getopt_t *os, void *b, apr_pool_t *pool) argument
2839 do_copy_revprops(svn_ra_session_t *to_session, void *b, apr_pool_t *pool) argument
2878 copy_revprops_cmd(apr_getopt_t *os, void *b, apr_pool_t *pool) argument
2935 help_cmd(apr_getopt_t *os, void *baton, apr_pool_t *pool) argument
2988 apr_pool_t *pool; local
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Ddict.c129 xmlDictStringsPtr pool; local
133 pool = dict->strings;
134 while (pool != NULL) {
135 if (pool->end - pool->free > namelen)
137 if (pool->size > size) size = pool->size;
138 pool = pool->next;
143 if (pool
181 xmlDictStringsPtr pool; local
501 xmlDictStringsPtr pool, nextp; local
866 xmlDictStringsPtr pool; local
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/src/
H A Dxpt_xdr.c45 CheckForRepeat(XPTCursor *cursor, void **addrp, XPTPool pool, PRUint32 len,
52 ((cursor)->pool == XPT_HEADER \
62 ((cursor)->state->pool->data[CURS_POOL_OFFSET(cursor)])
73 ((cursor)->pool == XPT_HEADER ? \
81 (CURS_POOL_OFFSET(cursor) + (space) > (cursor)->state->pool->allocated ? \
84 (cursor)->state->pool, \
85 (cursor)->state->pool->allocated, \
99 /* increase the data allocation for the pool by XPT_GROW_CHUNK */
187 state->pool = XPT_NEW(arena, XPTDatapool);
189 if (!state->pool)
237 XPT_GetXDRDataLength(XPTState *state, XPTPool pool, PRUint32 *len) argument
243 XPT_GetXDRData(XPTState *state, XPTPool pool, char **data, PRUint32 *len) argument
268 GrowPool(XPTArena *arena, XPTDatapool *pool, PRUint32 old_size, PRUint32 exact, PRUint32 at_least) argument
511 CheckForRepeat(XPTCursor *cursor, void **addrp, XPTPool pool, PRUint32 len, XPTCursor *new_cursor, PRBool *already) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/slang/
H A Dslang_mem.h40 _slang_delete_mempool(slang_mempool *pool);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dresource.c54 static DWORD resource_access_from_pool(enum wined3d_pool pool) argument
56 switch (pool)
71 FIXME("Unhandled pool %#x.\n", pool);
92 DWORD usage, enum wined3d_pool pool, UINT width, UINT height, UINT depth, UINT size,
110 resource->pool = pool;
111 resource->access_flags = resource_access_from_pool(pool);
130 if (pool == WINED3D_POOL_SYSTEM_MEM && pvClientMem)
139 if (pool
89 resource_init(struct wined3d_resource *resource, struct wined3d_device *device, enum wined3d_resource_type type, const struct wined3d_format *format, enum wined3d_multisample_type multisample_type, UINT multisample_quality, DWORD usage, enum wined3d_pool pool, UINT width, UINT height, UINT depth, UINT size, void *parent, const struct wined3d_parent_ops *parent_ops, const struct wined3d_resource_ops *resource_ops , HANDLE *shared_handle , void *pvClientMem ) argument
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/public/
H A Dxpt_xdr.h125 XPTDatapool *pool; member in struct:XPTState
138 XPTPool pool; member in struct:XPTCursor
147 XPT_MakeCursor(XPTState *state, XPTPool pool, PRUint32 len, XPTCursor *cursor);
161 XPT_GetXDRDataLength(XPTState *state, XPTPool pool, PRUint32 *len);
164 XPT_GetXDRData(XPTState *state, XPTPool pool, char **data, PRUint32 *len);
215 #define XPT_PREAMBLE_(cursor, addrp, pool, size, new_curs, already) \
218 !CheckForRepeat(cursor, (void **)addrp, pool, \
226 #define XPT_PREAMBLE_NO_ALLOC(cursor, addrp, pool, size, new_curs, already) \
228 XPT_PREAMBLE_(cursor, addrp, pool, size, new_curs, already) \
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DVBoxIChatTheaterWrapper.m161 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
178 [pool release];
183 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
188 [pool release];
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dcltsrv.c169 CSPool_t pool; /* statistics on worker threads */ member in struct:CSServer_s
643 static PRStatus CreateWorker(CSServer_t *server, CSPool_t *pool) argument
673 CSPool_t *pool = &server->pool; local
677 ("\t\tWorker(0x%p): started [%u]\n", me, pool->workers + 1));
681 pool->workers += 1; /* define our existance */
685 while (pool->accepting >= server->workers.accepting)
690 me, pool->accepting));
691 rv = PR_WaitCondVar(pool->acceptComplete, PR_INTERVAL_NO_TIMEOUT);
701 pool
[all...]
H A Dprovider.c171 CSPool_t pool; /* statistics on worker threads */ member in struct:CSServer_s
857 static PRStatus CreateWorker(CSServer_t *server, CSPool_t *pool) argument
881 CSPool_t *pool = &server->pool; local
887 ("\t\tWorker(0x%p): started [%u]\n", me, pool->workers + 1));
891 pool->workers += 1; /* define our existance */
895 while (pool->accepting >= server->workers.accepting)
900 me, pool->accepting));
901 rv = PR_WaitCondVar(pool->acceptComplete, PR_INTERVAL_NO_TIMEOUT);
911 pool
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/
H A DVBoxWineEx.h40 D3DPOOL pool, IDirect3DTexture9 **texture, HANDLE *shared_handle,
46 D3DPOOL pool, IDirect3DCubeTexture9 **texture, HANDLE *shared_handle,
95 D3DPOOL pool, IDirect3DTexture9 **texture, HANDLE *shared_handle,
101 D3DPOOL pool, IDirect3DCubeTexture9 **texture, HANDLE *shared_handle,
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/
H A DVBoxWineEx.h40 D3DPOOL pool, IDirect3DTexture9 **texture, HANDLE *shared_handle,
46 D3DPOOL pool, IDirect3DCubeTexture9 **texture, HANDLE *shared_handle,
95 D3DPOOL pool, IDirect3DTexture9 **texture, HANDLE *shared_handle,
101 D3DPOOL pool, IDirect3DCubeTexture9 **texture, HANDLE *shared_handle,
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dresource.c41 WINED3DPOOL pool, IUnknown *parent, const struct wined3d_parent_ops *parent_ops
54 resource->pool = pool;
66 if (pool == WINED3DPOOL_SYSTEMMEM && pvClientMem)
75 if (pool == WINED3DPOOL_DEFAULT && shared_handle)
101 if (pool == WINED3DPOOL_DEFAULT)
127 if (This->resource.pool == WINED3DPOOL_DEFAULT) {
128 TRACE("Decrementing device memory pool by %u\n", This->resource.size);
39 resource_init(IWineD3DResource *iface, WINED3DRESOURCETYPE resource_type, IWineD3DDeviceImpl *device, UINT size, DWORD usage, const struct wined3d_format_desc *format_desc, WINED3DPOOL pool, IUnknown *parent, const struct wined3d_parent_ops *parent_ops , HANDLE *shared_handle , void *pvClientMem ) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Dd3d8_private.h196 UINT depth, DWORD usage, enum wined3d_format_id format, enum wined3d_pool pool) DECLSPEC_HIDDEN;
224 D3DFORMAT format, DWORD flags, DWORD usage, D3DPOOL pool, D3DMULTISAMPLE_TYPE multisample_type,
238 UINT size, DWORD usage, DWORD fvf, D3DPOOL pool) DECLSPEC_HIDDEN;
251 UINT size, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
263 UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
265 UINT width, UINT height, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;
267 UINT width, UINT height, UINT depth, UINT levels, DWORD usage, D3DFORMAT format, D3DPOOL pool) DECLSPEC_HIDDEN;

Completed in 206 milliseconds

12345