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

1 2 3 4 5

  /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);
mips.h 6 PCIBus *pci_gt64120_init(qemu_irq *pic);
  /external/skia/tools/
pinspect.cpp 36 SkPicture* pic = SkNEW_ARGS(SkPicture, (&stream)); local
37 printf("picture size:[%d %d]\n", pic->width(), pic->height());
38 return pic;
41 static void dumpOps(SkPicture* pic) {
45 canvas.drawPicture(*pic);
67 SkAutoTUnref<SkPicture> pic(inspect(argv[index]));
69 dumpOps(pic);
  /external/webp/src/enc/
syntax.c 30 static int PutPaddingByte(const WebPPicture* const pic) {
33 return !!pic->writer(pad_byte, 1, pic);
41 const WebPPicture* const pic = enc->pic_; local
47 if (!pic->writer(riff, sizeof(riff), pic)) {
54 const WebPPicture* const pic = enc->pic_; local
61 assert(pic->width >= 1 && pic->height >= 1);
62 assert(pic->width <= MAX_CANVAS_SIZE && pic->height <= MAX_CANVAS_SIZE)
79 const WebPPicture* const pic = enc->pic_; local
153 WebPPicture* const pic = enc->pic_; local
275 WebPPicture* const pic = enc->pic_; local
355 WebPPicture* const pic = enc->pic_; local
    [all...]
webpenc.c 335 int WebPEncodingSetError(const WebPPicture* const pic,
339 ((WebPPicture*)pic)->error_code = error;
343 int WebPReportProgress(const WebPPicture* const pic,
347 if (pic->progress_hook && !pic->progress_hook(percent, pic)) {
349 WebPEncodingSetError(pic, VP8_ENC_ERROR_USER_ABORT);
357 int WebPEncode(const WebPConfig* config, WebPPicture* pic) {
360 if (pic == NULL)
362 WebPEncodingSetError(pic, VP8_ENC_OK); // all ok so fa
    [all...]
picture.c 207 static void SnapTopLeftPosition(const WebPPicture* const pic,
209 if (!pic->use_argb) {
210 const int is_yuv422 = IS_YUV_CSP(pic->colorspace, WEBP_YUV422);
211 if (IS_YUV_CSP(pic->colorspace, WEBP_YUV420) || is_yuv422) {
219 static int AdjustAndCheckRectangle(const WebPPicture* const pic,
222 SnapTopLeftPosition(pic, left, top);
225 if ((*left) + width > pic->width) return 0;
226 if ((*top) + height > pic->height) return 0;
318 int WebPPictureCrop(WebPPicture* pic,
322 if (pic == NULL) return 0
1055 WebPPicture pic; local
    [all...]
alpha.c 163 const WebPPicture* const pic = enc->pic_; local
164 const int width = pic->width;
165 const int height = pic->height;
175 assert(enc != NULL && pic != NULL && pic->a != NULL);
178 assert(pic->a_stride >= width);
195 CopyPlane(pic->a, pic->a_stride, quant_alpha, width, width, height);
214 effort_level, NULL, &bw, pic->stats);
240 if (pic->stats != NULL) best_stats = *pic->stats
    [all...]
iterator.c 107 const WebPPicture* const pic = enc->pic_; local
108 const uint8_t* const ysrc = pic->y + (y * pic->y_stride + x) * 16;
109 const uint8_t* const usrc = pic->u + (y * pic->uv_stride + x) * 8;
110 const uint8_t* const vsrc = pic->v + (y * pic->uv_stride + x) * 8;
114 int w = (pic->width - x * 16);
115 int h = (pic->height - y * 16);
121 ImportBlock(ysrc, pic->y_stride, ydst, w, h, 16)
150 const WebPPicture* const pic = enc->pic_; local
    [all...]
vp8l.c 46 static int AnalyzeAndCreatePalette(const WebPPicture* const pic,
54 const uint32_t* argb = pic->argb;
55 const int width = pic->width;
56 const int height = pic->height;
86 argb += pic->argb_stride;
145 const WebPPicture* const pic = enc->pic_; local
146 assert(pic != NULL && pic->argb != NULL);
149 AnalyzeAndCreatePalette(pic, enc->palette_, &enc->palette_size_);
163 if (!AnalyzeEntropy(pic->argb, pic->width, pic->height, pic->argb_stride
842 const WebPPicture* const pic = enc->pic_; local
    [all...]
  /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) .
45 $(RM) -rf pic
Makefile.darwin-lib 16 $(E) " MKDIR pic"
17 $(Q) mkdir -p pic
26 $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
28 $(Q) $(MV) pic/$(BSD_LIB) .
48 $(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);
  /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);
573 cachepic_t *pic; local
578 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++)
579 if (!strcmp (path, pic->name))
580 return &pic->pic
    [all...]
  /external/clang/test/Analysis/engine/
replay-without-inlining.c 37 static void readILBM(IB *st, Info *pic) {
39 pic->usedtobeundef.w = 5;
52 Info pic; local
56 readILBM(&st,&pic);
57 return pic.usedtobeundef.w; // No undefined value warning here.
  /cts/tests/tests/graphics/src/android/graphics/cts/
PictureTest.java 63 Picture pic = new Picture(picture); local
66 pic.draw(canvas);
67 checkSize(pic);
  /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
  /external/skia/tests/
PictureTest.cpp 67 SkPicture* pic = new SkPicture; local
68 SkCanvas* canvas = pic->beginRecording(1000, 1000);
72 pic->endRecording();
73 return pic;
91 static void draw(SkPicture* pic, const SkRect& subset, SkBitmap* result) {
100 canvas.drawPicture(*pic);
181 SkAutoTUnref<SkPicture> pic(record_bitmaps(bm, pos, N, procs[k]));
189 SkAutoDataUnref data(SkPictureUtils::GatherPixelRefs(pic, r));
203 draw(pic, r, &result);
206 SkData* data = SkPictureUtils::GatherPixelRefs(pic, r)
    [all...]

Completed in 887 milliseconds

1 2 3 4 5