Searched defs:mem (Results 51 - 75 of 81) sorted by relevance

1234

/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/
H A Dath5k.c288 void *mem; local
323 mem = ioremap(pdev->membase, 0x10000);
324 if (!mem) {
361 sc->iobase = mem;
438 iounmap(mem);
/vbox/src/VBox/ExtPacks/VNC/
H A DVBoxVNC.cpp32 #include <iprt/mem.h>
880 unsigned char *mem = (unsigned char *)malloc(pPointer->u16Width * pPointer->u16Height * VNC_SIZEOFRGBA); local
881 cursor->richSource = mem;
902 *(mem++) = *(color + (i * pPointer->u16Width *3 + j * 3 + 2));
903 *(mem++) = *(color + (i * pPointer->u16Width *3 + j * 3 + 1));
904 *(mem++) = *(color + (i * pPointer->u16Width *3 + j * 3));
905 *(mem++) = 0xff;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsTextFormatter.cpp1398 void nsTextFormatter::smprintf_free(PRUnichar *mem) argument
1400 PR_DELETE(mem);
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdesktop.c1397 void *mem = malloc(size); local
1398 if (mem == NULL)
1403 return mem;
1421 char *mem = strdup(s); local
1422 if (mem == NULL)
1427 return mem;
1434 void *mem; local
1438 mem = realloc(oldmem, size);
1439 if (mem == NULL)
1444 return mem;
1449 xfree(void *mem) argument
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dxmllint.c343 myFreeFunc(void *mem) argument
345 xmlMemFree(mem);
363 myReallocFunc(void *mem, size_t size) argument
367 ret = xmlMemRealloc(mem, size);
H A Druntest.c646 static int compareFileMem(const char *filename, const char *mem, int size) { argument
666 if (memcmp(bytes, &mem[idx], res) != 0) {
669 if (bytes[ix] != mem[idx+ix])
681 static int loadMem(const char *filename, const char **mem, int *size) { argument
706 *mem = base;
711 static int unloadMem(const char *mem) { argument
712 free((char *)mem);
4277 int mem; local
4313 mem = xmlMemUsed();
4326 else if (xmlMemUsed() != mem) {
[all...]
H A DxmlIO.c2712 * @mem: the memory input
2722 xmlParserInputBufferCreateMem(const char *mem, int size, xmlCharEncoding enc) { argument
2727 if (mem == NULL) return(NULL);
2731 ret->context = (void *) mem;
2734 errcode = xmlBufferAdd(ret->buffer, (const xmlChar *) mem, size);
2746 * @mem: the memory input
2758 xmlParserInputBufferCreateStatic(const char *mem, int size, argument
2763 if (mem == NULL) return(NULL);
2771 ret->buffer = xmlBufferCreateStatic((void *)mem, (size_t) size);
2782 ret->context = (void *) mem;
[all...]
H A Dtree.c6645 * @mem: the memory area
6655 xmlBufferCreateStatic(void *mem, size_t size) { argument
6658 if ((mem == NULL) || (size == 0))
6669 ret->content = (xmlChar *) mem;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/linking/
H A Dprlink.c116 # include <iprt/mem.h>
631 PR_FreeLibraryName(char *mem) argument
633 PR_smprintf_free(mem);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k.h453 void *mem; member in struct:ath_softc
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface.c729 void *mem; local
747 mem = HeapAlloc(GetProcessHeap(), 0, src_pitch * This->pow2Height);
749 mem = This->resource.allocatedMemory;
753 This, This->texture_level, format, type, mem);
765 glGetTexImage(This->texture_target, This->texture_level, format, type, mem);
824 src_data = mem;
834 HeapFree(GetProcessHeap(), 0, mem); local
1008 const BYTE *mem = NULL; local
1060 mem = (BYTE *)(((ULONG_PTR) This->resource.heapMemory + (RESOURCE_ALIGNMENT - 1)) & ~(RESOURCE_ALIGNMENT - 1));
1064 if (format_desc->Flags & WINED3DFMT_FLAG_COMPRESSED && mem)
1484 BYTE *mem; local
1657 if (This->resource.format_desc->format == WINED3DFMT_P8_UINT) HeapFree(GetProcessHeap(), 0, mem); local
1698 HeapFree(GetProcessHeap(), 0, mem); local
1720 HeapFree(GetProcessHeap(), 0, mem); local
2061 flush_to_framebuffer_drawpixels(IWineD3DSurfaceImpl *This, GLenum fmt, GLenum type, UINT bpp, const BYTE *mem) argument
4212 BYTE *mem; local
4353 HeapFree(GetProcessHeap(), 0, mem); local
5028 BYTE *mem; local
5147 HeapFree(GetProcessHeap(), 0, mem); local
5255 HeapFree(GetProcessHeap(), 0, mem); local
[all...]
H A Dglsl_shader.c5025 void *mem = HeapAlloc(GetProcessHeap(), 0, size); local
5027 if (!mem)
5033 heap->entries = mem;
H A Ddevice.c5708 HeapFree(GetProcessHeap(), 0, patch->mem);
5736 HeapFree(GetProcessHeap(), 0, patch->mem);
6342 char *mem, *bits = rect.pBits; local
6354 mem = HeapAlloc(GetProcessHeap(), 0, width * height * bpp);
6356 memcpy(&mem[width * bpp * i], &bits[rect.Pitch * i], width * bpp);
6383 glTexImage2D(GL_TEXTURE_2D, 0, intfmt, width, height, 0, format, type, mem);
6384 HeapFree(GetProcessHeap(), 0, mem); local
/vbox/src/libs/xpcom18a4/xpcom/components/
H A DnsComponentManager.cpp258 void *mem; local
260 PL_ARENA_ALLOCATE(mem, arena, len+1);
261 if (mem)
262 memcpy(mem, s, len+1);
263 return NS_STATIC_CAST(char *, mem);
1171 void *mem; local
1172 PL_ARENA_ALLOCATE(mem, &mArena, sizeof(nsFactoryEntry));
1173 if (!mem)
1176 nsFactoryEntry *entry = new (mem) nsFactoryEntry(aClass, values[4], lengths[4], loadertype);
2116 void *mem; local
2177 void *mem; local
2639 void *mem; local
2805 void *mem; local
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dglsl_shader.c5157 void *mem = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size); local
5160 void *mem;
5167 mem = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
5170 if (!mem)
5176 heap->entries = mem;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddevice.c4697 char *mem, *bits = map_desc.data; local
4708 mem = HeapAlloc(GetProcessHeap(), 0, width * height * bpp);
4710 memcpy(&mem[width * bpp * i], &bits[map_desc.row_pitch * i], width * bpp);
4727 gl_info->gl_ops.gl.p_glTexImage2D(GL_TEXTURE_2D, 0, intfmt, width, height, 0, gl_format, type, mem);
4729 HeapFree(GetProcessHeap(), 0, mem); local
H A Dsurface.c2430 void *mem; local
2449 mem = HeapAlloc(GetProcessHeap(), 0, src_pitch * surface->pow2Height);
2453 mem = surface->resource.allocatedMemory;
2457 surface, surface->texture_level, gl_format, gl_type, mem);
2474 gl_format, gl_type, mem);
2532 src_data = mem;
2542 HeapFree(GetProcessHeap(), 0, mem); local
2940 const BYTE *mem = NULL; local
3000 mem = (BYTE *)(((ULONG_PTR)surface->resource.heapMemory
3005 if (format->flags & WINED3DFMT_FLAG_COMPRESSED && mem)
3526 wined3d_surface_set_mem(struct wined3d_surface *surface, void *mem, UINT pitch) argument
4454 BYTE *mem; local
4623 HeapFree(GetProcessHeap(), 0, mem); local
4666 HeapFree(GetProcessHeap(), 0, mem); local
4688 HeapFree(GetProcessHeap(), 0, mem); local
4792 flush_to_framebuffer_drawpixels(struct wined3d_surface *surface, const RECT *rect, GLenum fmt, GLenum type, UINT bpp, const BYTE *mem) argument
6305 BYTE *mem; local
6388 HeapFree(GetProcessHeap(), 0, mem); local
6404 BYTE *mem; local
6555 HeapFree(GetProcessHeap(), 0, mem); local
[all...]
H A Dglsl_shader.c6372 void *mem = HeapAlloc(GetProcessHeap(), 0, size); local
6374 if (!mem)
6380 heap->entries = mem;
/vbox/src/libs/xpcom18a4/xpcom/build/
H A Dmalloc.c1623 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1634 the malloc code, but "mem" is the pointer that is returned to the
1637 Chunks always begin on even word boundries, so the mem portion
1647 mem-> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1698 #define mem2chunk(mem) ((mchunkptr)((char*)(mem) - 2*SIZE_SZ))
2334 /* mem is aligned */
3458 void fREe(Void_t* mem)
3460 void fREe(mem) Void_t* mem;
3449 fREe(Void_t* mem) argument
4157 Void_t* mem = mALLOc(n_elements * elem_size); local
4207 cFREe(Void_t *mem) argument
4303 mUSABLe(Void_t* mem) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/common/
H A Dxf86str.h519 xf86AccessPtr mem; member in struct:__anon3067
921 unsigned char **mem,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86str.h601 xf86AccessPtr mem; member in struct:__anon7663
1037 unsigned char **mem,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86str.h601 xf86AccessPtr mem; member in struct:__anon8025
1037 unsigned char **mem,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxf86str.h593 xf86AccessPtr mem; member in struct:__anon8341
1029 unsigned char **mem,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dxf86str.h586 xf86AccessPtr mem; member in struct:__anon8649
1010 unsigned char **mem,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86str.h597 xf86AccessPtr mem; member in struct:__anon4816
1033 unsigned char **mem,

Completed in 352 milliseconds

1234