HomeSort by relevance Sort by last modified time
    Searched refs:pic (Results 101 - 125 of 198) sorted by null

1 2 3 45 6 7 8

  /external/skqp/resources/lua/
slides.lua 147 function new_drawable_picture(pic)
149 picture = pic,
150 width = pic:width(),
151 height = pic:height(),
  /external/u-boot/arch/arm/dts/
armada-xp-gp.dts 169 pic_pins: pic-pins-0 {
armada-xp-maxbcm.dts 168 pic_pins: pic-pins-0 {
  /external/webp/include/webp/
encode.h 451 WEBP_EXTERN int WebPPictureRescale(WebPPicture* pic, int width, int height);
522 WEBP_EXTERN void WebPBlendAlpha(WebPPicture* pic, uint32_t background_rgb);
  /external/webp/src/webp/
encode.h 451 WEBP_EXTERN int WebPPictureRescale(WebPPicture* pic, int width, int height);
522 WEBP_EXTERN void WebPBlendAlpha(WebPPicture* pic, uint32_t background_rgb);
  /external/skia/src/core/
SkRecorder.cpp 280 void SkRecorder::onDrawPicture(const SkPicture* pic, const SkMatrix* matrix, const SkPaint* paint) {
282 fApproxBytesUsedBySubPictures += pic->approximateBytesUsed();
283 this->append<SkRecords::DrawPicture>(this->copy(paint), sk_ref_sp(pic), matrix ? *matrix : SkMatrix::I());
286 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, pic->cullRect());
287 pic->playback(this);
  /external/skqp/src/core/
SkRecorder.cpp 276 void SkRecorder::onDrawPicture(const SkPicture* pic, const SkMatrix* matrix, const SkPaint* paint) {
278 fApproxBytesUsedBySubPictures += pic->approximateBytesUsed();
279 this->append<SkRecords::DrawPicture>(this->copy(paint), sk_ref_sp(pic), matrix ? *matrix : SkMatrix::I());
282 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, pic->cullRect());
283 pic->playback(this);
SkPicturePlayback.cpp 409 const auto* pic = fPictureData->getPicture(reader); local
412 canvas->drawPicture(pic);
418 const SkPicture* pic = fPictureData->getPicture(reader); local
421 canvas->drawPicture(pic, &matrix, paint);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
DocumentsSample.java 345 Uri pic = createDocument(cr, doc, "image/png", "pic.png"); local
349 log("created " + pic);
365 // And delete the first pic
366 if (deleteDocument(cr, pic)) {
367 log("deleted untouched pic");
369 log("FAILED TO DELETE PIC");
  /external/boringssl/win-x86/crypto/fipsmodule/
vpaes-x86.asm 480 call L$016pic
481 L$016pic:
483 lea ebx,[(_BORINGSSL_function_hit+5-L$016pic)+ebx]
559 call L$019pic
560 L$019pic:
562 lea ebx,[(_BORINGSSL_function_hit+4-L$019pic)+ebx]
ghash-x86.asm 728 call L$005pic
729 L$005pic:
731 lea ecx,[(L$bswap-L$005pic)+ecx]
795 call L$006pic
796 L$006pic:
798 lea ecx,[(L$bswap-L$006pic)+ecx]
852 call L$007pic
853 L$007pic:
855 lea ecx,[(L$bswap-L$007pic)+ecx]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_composite.c 209 xa_is_filter_accelerated(struct xa_picture *pic)
212 if (pic && !xa_filter_to_gallium(pic->filter, &filter))
  /external/skia/gm/
filterfastbounds.cpp 239 sk_sp<SkPicture> pic; variable
246 pic = rec.finishRecordingAsPicture();
250 create_paints(&pifPaints, SkPictureImageFilter::Make(pic));
multipicturedraw.cpp 214 sk_sp<SkPicture> pic(make_tri_picture());
228 canvas->drawPicture(pic);
233 pic = make_sub_picture(pic.get());
  /external/skqp/gm/
filterfastbounds.cpp 239 sk_sp<SkPicture> pic; variable
246 pic = rec.finishRecordingAsPicture();
250 create_paints(&pifPaints, SkPictureImageFilter::Make(pic));
multipicturedraw.cpp 214 sk_sp<SkPicture> pic(make_tri_picture());
228 canvas->drawPicture(pic);
233 pic = make_sub_picture(pic.get());
  /external/skia/fuzz/
FuzzMain.cpp 648 sk_sp<SkPicture> pic(SkPicturePriv::MakeFromBuffer(buf));
649 if (!pic) {
656 SkIRect size = pic->cullRect().roundOut();
660 canvas.drawPicture(pic);
  /external/skqp/fuzz/
FuzzMain.cpp 642 sk_sp<SkPicture> pic(SkPicturePriv::MakeFromBuffer(buf));
643 if (!pic) {
650 SkIRect size = pic->cullRect().roundOut();
654 canvas.drawPicture(pic);
  /external/u-boot/arch/arm/
config.mk 14 CFLAGS_NON_EFI := -fno-pic -ffixed-r9 -ffunction-sections -fdata-sections
130 PLATFORM_CPPFLAGS += $(call cc-option, -fno-pic)
  /device/google/contexthub/firmware/app/
app.mk 139 CFLAGS += -mno-pic-data-is-text-relative
140 CFLAGS += -msingle-pic-base
  /external/boringssl/src/crypto/perlasm/
x86asm.pl 45 &call(&label("pic"));
46 &set_label("pic");
48 &lea("ebx",&DWP("BORINGSSL_function_hit+$index"."-".&label("pic"),"ebx"));
342 $pic=0;
343 for (@ARGV) { $pic=1 if (/\-[fK]PIC/i); }
  /external/libvpx/libvpx/build/make/
configure.sh 863 # PIC is probably what we want when building shared libs
864 enabled shared && soft_enable pic
1139 enable_feature pic
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
regrtest.py     [all...]
  /external/skia/src/c/
sk_surface.cpp 132 static sk_picture_t* ToPicture(SkPicture* pic) {
133 return reinterpret_cast<sk_picture_t*>(pic);
  /external/skqp/src/c/
sk_surface.cpp 132 static sk_picture_t* ToPicture(SkPicture* pic) {
133 return reinterpret_cast<sk_picture_t*>(pic);

Completed in 3566 milliseconds

1 2 3 45 6 7 8