HomeSort by relevance Sort by last modified time
    Searched refs:pic (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/qemu/hw/
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);
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);
goldfish_device.h 37 void goldfish_device_init(qemu_irq *pic, uint32_t base, uint32_t size, uint32_t irq, uint32_t irq_count);
pc.h 122 int pcspk_audio_init(qemu_irq *pic);
125 PCIBus *i440fx_init(PCIDevice **pi440fx_state, qemu_irq *pic);
157 qemu_irq *pic);
159 qemu_irq *pic);
goldfish_device.c 183 void goldfish_device_init(qemu_irq *pic, uint32_t base, uint32_t size, uint32_t irq, uint32_t irq_count)
185 goldfish_pic = pic;
  /external/e2fsprogs/lib/
Makefile.bsd-lib 16 @echo " MKDIR pic"
17 @mkdir -p pic
25 (cd pic; ld -Bshareable -o $(BSD_LIB) $(OBJS))
26 $(MV) pic/$(BSD_LIB) .
44 $(RM) -rf pic
Makefile.darwin-lib 16 @echo " MKDIR pic"
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/quake/quake/src/QW/client/
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);
wad.c 28 void SwapPic (qpic_t *pic);
154 void SwapPic (qpic_t *pic)
156 pic->width = LittleLong(pic->width);
157 pic->height = LittleLong(pic->height);
draw.c 66 cachepic_t *pic; local
70 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++)
71 if (!strcmp (path, pic->name))
79 strcpy (pic->name, path);
82 dat = Cache_Check (&pic->cache);
88 // load the pic from disk
90 COM_LoadCacheFile (path, &pic->cache);
92 dat = (qpic_t *)pic->cache.data;
344 void Draw_Pic (int x, int y, qpic_t *pic)
    [all...]
gl_draw.c 177 qpic_t pic; member in struct:cachepic_s
240 cachepic_t *pic; local
245 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++)
246 if (!strcmp (path, pic->name))
247 return &pic->pic;
252 strcpy (pic->name, path);
255 // load the pic from disk
268 pic->pic.width = dat->width
    [all...]
wad.h 75 void SwapPic (qpic_t *pic);
sbar.c 232 void Sbar_DrawPic (int x, int y, qpic_t *pic)
234 Draw_Pic (x /* + ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic);
244 void Sbar_DrawSubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height)
246 Draw_SubPic (x, y+(vid.height-SBAR_HEIGHT), pic, srcx, srcy, width, height);
255 void Sbar_DrawTransPic (int x, int y, qpic_t *pic)
257 Draw_TransPic (x /*+ ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic);
900 qpic_t *pic; local
920 pic = Draw_CachePic ("gfx/ranking.lmp");
921 Draw_Pic (160-pic->width/2, 0, pic);
993 qpic_t *pic; local
1322 qpic_t *pic; local
    [all...]
  /external/quake/quake/src/WinQuake/
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);
wad.cpp 28 void SwapPic (qpic_t *pic);
154 void SwapPic (qpic_t *pic)
156 pic->width = LittleLong(pic->width);
157 pic->height = LittleLong(pic->height);
draw.cpp 66 cachepic_t *pic; local
70 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++)
71 if (!strcmp (path, pic->name))
79 strcpy (pic->name, path);
82 dat = Cache_Check (&pic->cache);
88 // load the pic from disk
90 COM_LoadCacheFile (path, &pic->cache);
92 dat = (qpic_t *)pic->cache.data;
289 void Draw_Pic (int x, int y, qpic_t *pic)
    [all...]
wad.h 75 void SwapPic (qpic_t *pic);
gl_draw.cpp 495 qpic_t pic; member in struct:cachepic_s
514 int GL_LoadPicTexture (qpic_t *pic)
516 return GL_LoadTexture ("", pic->width, pic->height, pic->data, false, true);
571 cachepic_t *pic; local
576 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++)
577 if (!strcmp (path, pic->name))
578 return &pic->pic
    [all...]
gl_screen.cpp 462 qpic_t *pic; local
470 pic = Draw_CachePic ("gfx/pause.lmp");
471 Draw_Pic ( (vid.width - pic->width)/2,
472 (vid.height - 48 - pic->height)/2, pic);
484 qpic_t *pic; local
489 pic = Draw_CachePic ("gfx/loading.lmp");
490 Draw_Pic ( (vid.width - pic->width)/2,
491 (vid.height - 48 - pic->height)/2, pic);
    [all...]
screen.cpp 404 qpic_t *pic; local
412 pic = Draw_CachePic ("gfx/pause.lmp");
413 Draw_Pic ( (vid.width - pic->width)/2,
414 (vid.height - 48 - pic->height)/2, pic);
426 qpic_t *pic; local
431 pic = Draw_CachePic ("gfx/loading.lmp");
432 Draw_Pic ( (vid.width - pic->width)/2,
433 (vid.height - 48 - pic->height)/2, pic);
    [all...]
sbar.cpp 66 void M_DrawPic (int x, int y, qpic_t *pic);
260 void Sbar_DrawPic (int x, int y, qpic_t *pic)
263 Draw_Pic (x /* + ((vid.width - 320)>>1)*/, y + (vid.height-SBAR_HEIGHT), pic);
265 Draw_Pic (x + ((vid.width - 320)>>1), y + (vid.height-SBAR_HEIGHT), pic);
273 void Sbar_DrawTransPic (int x, int y, qpic_t *pic)
276 Draw_TransPic (x /*+ ((vid.width - 320)>>1)*/, y + (vid.height-SBAR_HEIGHT), pic);
278 Draw_TransPic (x + ((vid.width - 320)>>1), y + (vid.height-SBAR_HEIGHT), pic);
1092 qpic_t *pic; local
1102 pic = Draw_CachePic ("gfx/ranking.lmp");
1103 M_DrawPic ((320-pic->width)/2, 8, pic)
1173 qpic_t *pic; local
1275 qpic_t *pic; local
1321 qpic_t *pic; local
    [all...]
  /external/libpcap/
pcap1.h 127 struct pcap1_info_container pic; member in struct:pcap1_info_timestamp
135 struct pcap1_info_container pic; member in struct:pcap1_info_packet
152 struct pcap1_info_container pic; member in struct:pcap1_info_probe
158 struct pcap1_info_container pic; member in struct:pcap1_info_comment
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 115 Picture pic = new Picture(picture); local
118 pic.draw(canvas);
119 checkSize(pic);
  /external/srec/tools/grxmlcompile/
vocab.cpp 185 bool Pronunciation::getPIC( int pronIndex, int picIndex, std::string &pic )
214 pic = lphon + cphon + rphon;
242 std::string pic; local
243 getPIC(ii, jj, pic);
vocab.h 88 bool getPIC( int pronIndex, int picIndex, std::string &pic );

Completed in 781 milliseconds

1 2 3