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

1 2

  /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);
PictureRenderer.cpp 673 SkPicture* pic; local
676 pic = fPicture;
678 pic = &fPictureClones[i];
683 (pic, fCanvasPool[i], fTileRects, start, end, &fCountdown));
  /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/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.
  /external/qemu/hw/
armv7m.c 162 static qemu_irq pic[64]; local
208 pic[i] = qdev_get_gpio_in(nvic, i);
240 return pic;
  /external/qemu/distrib/sdl-1.2.15/test/
testoverlay.c 17 SDL_Surface *screen, *pic; variable
484 pic = SDL_LoadBMP(bmpfile);
485 if ( pic == NULL ) {
520 newsurf=SDL_ConvertSurface(pic, &format, SDL_SWSURFACE);
527 SDL_FreeSurface(pic);
528 pic=newsurf;
532 overlay = SDL_CreateYUVOverlay(pic->w, pic->h, overlay_format, screen);
557 ConvertRGBtoYV12(pic,overlay,monochrome,luminance);
560 ConvertRGBtoUYVY(pic,overlay,monochrome,luminance)
    [all...]
  /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);
  /external/webkit/Source/WebCore/platform/qt/
QtMobileWebStyle.cpp 363 QPixmap pic = findComboButton(rect.size(), multiple, disabled); local
365 if (pic.isNull())
368 int x = (rect.width() - pic.width()) >> 1;
369 int y = (rect.height() - pic.height()) >> 1;
370 painter->drawPixmap(rect.x() + x, rect.y() + y, pic);
  /external/webp/src/enc/
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...]
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...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 249 protected void displayMap(Renderer r, Picture pic, int left) {
254 pic.setPosition(left, h / 20f);
256 pic.setWidth(128);
257 pic.setHeight(128);
258 pic.updateGeometricState();
259 rm.renderGeometry(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/quake/quake/src/QW/client/
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...]
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.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...]
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...]
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/skia/legacy/src/images/
SkImageDecoder_libwebp.cpp 533 WebPPicture pic; local
534 WebPPictureInit(&pic);
535 pic.width = bm.width();
536 pic.height = bm.height();
537 pic.writer = StreamWriter;
538 pic.custom_ptr = (void*)stream;
542 const int rgb_stride = pic.width * 3;
546 uint8_t* rgb = new uint8_t[rgb_stride * pic.height];
547 for (int y = 0; y < pic.height; ++y) {
549 pic.width, colors)
    [all...]
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 527 WebPPicture pic; local
528 WebPPictureInit(&pic);
529 pic.width = bm.width();
530 pic.height = bm.height();
531 pic.writer = StreamWriter;
532 pic.custom_ptr = (void*)stream;
536 const int rgb_stride = pic.width * 3;
540 uint8_t* rgb = new uint8_t[rgb_stride * pic.height];
541 for (int y = 0; y < pic.height; ++y) {
543 pic.width, colors)
    [all...]
  /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...]
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.c 357 #define pic 3.1415926535897932 macro
361 static double pi = pic,
362 twopi =pic * 2.0,
363 piover4 = pic / 4.0,
364 fouroverpi = 4.0 / pic,
365 piover2 = pic / 2.0;
549 temp += pic;
551 temp -= pic;
  /external/valgrind/main/perf/
fbench.c 353 #define pic 3.1415926535897932 macro
357 static double pi = pic,
358 twopi =pic * 2.0,
359 piover4 = pic / 4.0,
360 fouroverpi = 4.0 / pic,
361 piover2 = pic / 2.0;
545 temp += pic;
547 temp -= pic;
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 251 File pic = buildFile(mAppWidgetName); local
252 if (pic == null) {
257 pic.getParentFile().mkdirs();
260 fout = new FileOutputStream(pic);
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
FilterPostProcessor.java 212 Picture pic = new Picture("debug"); field in class:FilterPostProcessor

Completed in 2725 milliseconds

1 2