/external/quake/quake/src/WinQuake/ |
D | draw.cpp | 66 cachepic_t *pic; in Draw_CachePic() local 70 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic() 71 if (!strcmp (path, pic->name)) in Draw_CachePic() 79 strcpy (pic->name, path); in Draw_CachePic() 82 dat = Cache_Check (&pic->cache); in Draw_CachePic() 90 COM_LoadCacheFile (path, &pic->cache); in Draw_CachePic() 92 dat = (qpic_t *)pic->cache.data; in Draw_CachePic() 289 void Draw_Pic (int x, int y, qpic_t *pic) in Draw_Pic() argument 296 (x + pic->width > vid.width) || in Draw_Pic() 298 (y + pic->height > vid.height)) in Draw_Pic() [all …]
|
D | gl_draw.cpp | 495 qpic_t pic; member 514 int GL_LoadPicTexture (qpic_t *pic) in GL_LoadPicTexture() argument 516 return GL_LoadTexture ("", pic->width, pic->height, pic->data, false, true); in GL_LoadPicTexture() 571 cachepic_t *pic; in Draw_CachePic() local 576 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic() 577 if (!strcmp (path, pic->name)) in Draw_CachePic() 578 return &pic->pic; in Draw_CachePic() 583 strcpy (pic->name, path); in Draw_CachePic() 599 pic->pic.width = dat->width; in Draw_CachePic() 600 pic->pic.height = dat->height; in Draw_CachePic() [all …]
|
D | wad.cpp | 28 void SwapPic (qpic_t *pic); 154 void SwapPic (qpic_t *pic) in SwapPic() argument 156 pic->width = LittleLong(pic->width); in SwapPic() 157 pic->height = LittleLong(pic->height); in SwapPic()
|
D | sbar.cpp | 66 void M_DrawPic (int x, int y, qpic_t *pic); 260 void Sbar_DrawPic (int x, int y, qpic_t *pic) in Sbar_DrawPic() argument 263 Draw_Pic (x /* + ((vid.width - 320)>>1)*/, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawPic() 265 Draw_Pic (x + ((vid.width - 320)>>1), y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawPic() 273 void Sbar_DrawTransPic (int x, int y, qpic_t *pic) in Sbar_DrawTransPic() argument 276 Draw_TransPic (x /*+ ((vid.width - 320)>>1)*/, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawTransPic() 278 Draw_TransPic (x + ((vid.width - 320)>>1), y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawTransPic() 1092 qpic_t *pic; in Sbar_DeathmatchOverlay() local 1102 pic = Draw_CachePic ("gfx/ranking.lmp"); in Sbar_DeathmatchOverlay() 1103 M_DrawPic ((320-pic->width)/2, 8, pic); in Sbar_DeathmatchOverlay() [all …]
|
D | gl_screen.cpp | 462 qpic_t *pic; in SCR_DrawPause() local 470 pic = Draw_CachePic ("gfx/pause.lmp"); in SCR_DrawPause() 471 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawPause() 472 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawPause() 484 qpic_t *pic; in SCR_DrawLoading() local 489 pic = Draw_CachePic ("gfx/loading.lmp"); in SCR_DrawLoading() 490 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawLoading() 491 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawLoading()
|
D | screen.cpp | 404 qpic_t *pic; in SCR_DrawPause() local 412 pic = Draw_CachePic ("gfx/pause.lmp"); in SCR_DrawPause() 413 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawPause() 414 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawPause() 426 qpic_t *pic; in SCR_DrawLoading() local 431 pic = Draw_CachePic ("gfx/loading.lmp"); in SCR_DrawLoading() 432 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawLoading() 433 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawLoading()
|
D | draw.h | 29 void Draw_Pic (int x, int y, qpic_t *pic); 30 void Draw_TransPic (int x, int y, qpic_t *pic); 31 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation);
|
/external/quake/quake/src/QW/client/ |
D | draw.c | 66 cachepic_t *pic; in Draw_CachePic() local 70 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic() 71 if (!strcmp (path, pic->name)) in Draw_CachePic() 79 strcpy (pic->name, path); in Draw_CachePic() 82 dat = Cache_Check (&pic->cache); in Draw_CachePic() 90 COM_LoadCacheFile (path, &pic->cache); in Draw_CachePic() 92 dat = (qpic_t *)pic->cache.data; in Draw_CachePic() 344 void Draw_Pic (int x, int y, qpic_t *pic) in Draw_Pic() argument 351 (x + pic->width > vid.width) || in Draw_Pic() 353 (y + pic->height > vid.height)) in Draw_Pic() [all …]
|
D | gl_draw.c | 177 qpic_t pic; member 240 cachepic_t *pic; in Draw_CachePic() local 245 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic() 246 if (!strcmp (path, pic->name)) in Draw_CachePic() 247 return &pic->pic; in Draw_CachePic() 252 strcpy (pic->name, path); in Draw_CachePic() 268 pic->pic.width = dat->width; in Draw_CachePic() 269 pic->pic.height = dat->height; in Draw_CachePic() 271 gl = (glpic_t *)pic->pic.data; in Draw_CachePic() 278 return &pic->pic; in Draw_CachePic() [all …]
|
D | wad.c | 28 void SwapPic (qpic_t *pic); 154 void SwapPic (qpic_t *pic) in SwapPic() argument 156 pic->width = LittleLong(pic->width); in SwapPic() 157 pic->height = LittleLong(pic->height); in SwapPic()
|
D | draw.h | 29 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height); 30 void Draw_Pic (int x, int y, qpic_t *pic); 31 void Draw_TransPic (int x, int y, qpic_t *pic); 32 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation);
|
D | sbar.c | 232 void Sbar_DrawPic (int x, int y, qpic_t *pic) in Sbar_DrawPic() argument 234 Draw_Pic (x /* + ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawPic() 244 void Sbar_DrawSubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height) in Sbar_DrawSubPic() argument 246 Draw_SubPic (x, y+(vid.height-SBAR_HEIGHT), pic, srcx, srcy, width, height); in Sbar_DrawSubPic() 255 void Sbar_DrawTransPic (int x, int y, qpic_t *pic) in Sbar_DrawTransPic() argument 257 Draw_TransPic (x /*+ ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawTransPic() 900 qpic_t *pic; in Sbar_TeamOverlay() local 920 pic = Draw_CachePic ("gfx/ranking.lmp"); in Sbar_TeamOverlay() 921 Draw_Pic (160-pic->width/2, 0, pic); in Sbar_TeamOverlay() 993 qpic_t *pic; in Sbar_DeathmatchOverlay() local [all …]
|
D | gl_screen.c | 497 qpic_t *pic; in SCR_DrawPause() local 505 pic = Draw_CachePic ("gfx/pause.lmp"); in SCR_DrawPause() 506 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawPause() 507 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawPause() 519 qpic_t *pic; in SCR_DrawLoading() local 524 pic = Draw_CachePic ("gfx/loading.lmp"); in SCR_DrawLoading() 525 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawLoading() 526 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawLoading()
|
/external/libpng/scripts/ |
D | makefile.os2 | 56 png.o png.pic.o: png.h pngconf.h 57 pngerror.o pngerror.pic.o: png.h pngconf.h 58 pngrio.o pngrio.pic.o: png.h pngconf.h 59 pngwio.o pngwio.pic.o: png.h pngconf.h 60 pngmem.o pngmem.pic.o: png.h pngconf.h 61 pngset.o pngset.pic.o: png.h pngconf.h 62 pngget.o pngget.pic.o: png.h pngconf.h 63 pngread.o pngread.pic.o: png.h pngconf.h 64 pngrtran.o pngrtran.pic.o: png.h pngconf.h 65 pngrutil.o pngrutil.pic.o: png.h pngconf.h [all …]
|
D | makefile.cygwin | 117 OBJSDLL = $(OBJS:.o=.pic.o) 119 .SUFFIXES: .c .o .pic.o 123 %.pic.o : CFLAGS += -DPNG_BUILD_DLL 124 %.pic.o : %.c
|
D | makefile.mingw | 117 OBJSDLL = $(OBJS:.o=.pic.o) 119 .SUFFIXES: .c .o .pic.o 123 %.pic.o : CFLAGS += -DPNG_BUILD_DLL 124 %.pic.o : %.c
|
D | makefile.darwin | 72 OBJSDLL = $(OBJS:.o=.pic.o) 74 .SUFFIXES: .c .o .pic.o 76 .c.pic.o:
|
D | makefile.sco | 71 OBJSDLL = $(OBJS:.o=.pic.o) 73 .SUFFIXES: .c .o .pic.o 75 .c.pic.o:
|
/external/libpng/contrib/gregbook/ |
D | Makefile.mingw32 | 67 ROBJSd = $(RPNG)$(O) readpng.pic$(O) 68 ROBJS2d = $(RPNG2)$(O) readpng2.pic$(O) 69 WOBJSd = $(WPNG)$(O) writepng.pic$(O) 90 %.pic$(O): %.c 120 readpng$(O) readpng.pic$(O): readpng.c readpng.h 121 readpng2$(O) readpng2.pic$(O): readpng2.c readpng2.h 122 writepng$(O) writepng.pic$(O): writepng.c writepng.h
|
/external/qemu/hw/ |
D | audiodev.h | 5 int SB16_init(qemu_irq *pic); 8 int Adlib_init(qemu_irq *pic); 11 int GUS_init(qemu_irq *pic); 17 int cs4231a_init(qemu_irq *pic);
|
D | pci.h | 180 typedef void (*pci_set_irq_fn)(qemu_irq *pic, int irq_num, int level); 184 qemu_irq *pic, int devfn_min, int nirq); 240 PCIBus *pci_prep_init(qemu_irq *pic); 245 qemu_irq *pic, PCIBus **bus2, PCIBus **bus3); 249 qemu_irq *pic, int devfn_min, int nirq);
|
/external/e2fsprogs/lib/ |
D | Makefile.bsd-lib | 17 @mkdir -p pic 25 (cd pic; ld -Bshareable -o $(BSD_LIB) $(OBJS)) 26 $(MV) pic/$(BSD_LIB) . 44 $(RM) -rf pic
|
D | Makefile.darwin-lib | 17 @mkdir -p pic 26 @(cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \ 28 @$(MV) pic/$(BSD_LIB) . 47 $(RM) -rf pic
|
/external/protobuf/m4/ |
D | ltoptions.m4 | 81 _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) 323 # implement the --with-pic flag, and support the `pic-only' and `no-pic' 327 [AC_ARG_WITH([pic], optwith 328 [AS_HELP_STRING([--with-pic], 338 LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) 339 LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) 343 [_LT_SET_OPTION([LT_INIT], [pic-only]) 346 put the `pic-only' option into LT_INIT's first parameter.])
|
/external/libpcap/ |
D | pcap1.h | 127 struct pcap1_info_container pic; member 135 struct pcap1_info_container pic; member 152 struct pcap1_info_container pic; member 158 struct pcap1_info_container pic; member
|