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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
pic-err-2.s 1 ; Check that --pic isn't recognized for a.out files, specified by emulation.
4 ; { dg-options "--pic --em=crisaout" }
5 ; { dg-error ".* --pic is invalid" "" { target cris-*-* } 0 }
pic-err-3.s 1 ; Check that --pic isn't recognized for a.out files, with a.out the default.
4 ; { dg-options "--pic" }
5 ; { dg-error ".* --pic is invalid" "" { target cris-*-* } 0 }
rd-bkw5bpic.d 1 #as: --pic --underscore --em=criself --defsym extra=-818
rd-pic-2.d 2 #as: --underscore --em=criself --pic
4 # Check that 16-bit PIC relocs aren't overflowing.
  /external/v4l2_codec2/vda/
h264_dpb.cc 70 for (auto& pic : pics_) {
71 pic->dpb_position = i;
98 void H264DPB::StorePic(const scoped_refptr<H264Picture>& pic) {
100 DVLOG(3) << "Adding PicNum: " << pic->pic_num << " ref: " << (int)pic->ref
101 << " longterm: " << (int)pic->long_term << " to DPB";
102 pic->dpb_position = pics_.size();
103 pics_.push_back(pic);
121 for (const auto& pic : pics_) {
122 if (pic->ref && !pic->long_term && pic->pic_num == pic_num
    [all...]
h264_decoder.cc 100 bool H264Decoder::InitNonexistingPicture(scoped_refptr<H264Picture> pic,
102 pic->nonexisting = true;
103 pic->nal_ref_idc = 1;
104 pic->frame_num = pic->pic_num = frame_num;
105 pic->adaptive_ref_pic_marking_mode_flag = false;
106 pic->ref = true;
107 pic->long_term_reference_flag = false;
108 pic->field = H264Picture::FIELD_NONE;
110 return CalculatePicOrderCounts(pic);
566 scoped_refptr<H264Picture> pic; local
1187 scoped_refptr<H264Picture> pic = new H264Picture(); local
    [all...]
vp9_decoder.cc 137 scoped_refptr<VP9Picture> pic = accelerator_->CreateVP9Picture(); local
138 if (!pic)
152 pic->visible_rect = new_render_rect;
153 pic->frame_hdr.reset(curr_frame_hdr_.release());
155 if (!DecodeAndOutputPicture(pic)) {
162 void VP9Decoder::RefreshReferenceFrames(const scoped_refptr<VP9Picture>& pic) {
164 DCHECK(!pic->frame_hdr->IsKeyframe() || pic->frame_hdr->RefreshFlag(i));
165 if (pic->frame_hdr->RefreshFlag(i))
166 ref_frames_[i] = pic;
    [all...]
  /external/webp/src/enc/
picture_rescale_enc.c 39 static void SnapTopLeftPosition(const WebPPicture* const pic,
41 if (!pic->use_argb) {
48 static int AdjustAndCheckRectangle(const WebPPicture* const pic,
51 SnapTopLeftPosition(pic, left, top);
54 if ((*left) + width > pic->width) return 0;
55 if ((*top) + height > pic->height) return 0;
126 int WebPPictureCrop(WebPPicture* pic,
130 if (pic == NULL) return 0;
131 if (!AdjustAndCheckRectangle(pic, &left, &top, width, height)) return 0;
133 PictureGrabSpecs(pic, &tmp)
    [all...]
picture_tools_enc.c 90 void WebPCleanupTransparentArea(WebPPicture* pic) {
92 if (pic == NULL) return;
93 w = pic->width / SIZE;
94 h = pic->height / SIZE;
97 if (pic->use_argb) {
102 const int off = (y * pic->argb_stride + x) * SIZE;
103 if (IsTransparentARGBArea(pic->argb + off, pic->argb_stride, SIZE)) {
105 argb_value = pic->argb[off];
108 FlattenARGB(pic->argb + off, argb_value, pic->argb_stride, SIZE)
    [all...]
syntax_enc.c 29 static int PutPaddingByte(const WebPPicture* const pic) {
31 return !!pic->writer(pad_byte, 1, pic);
39 const WebPPicture* const pic = enc->pic_; local
45 if (!pic->writer(riff, sizeof(riff), pic)) {
52 const WebPPicture* const pic = enc->pic_; local
59 assert(pic->width >= 1 && pic->height >= 1);
60 assert(pic->width <= MAX_CANVAS_SIZE && pic->height <= MAX_CANVAS_SIZE)
77 const WebPPicture* const pic = enc->pic_; local
151 WebPPicture* const pic = enc->pic_; local
318 WebPPicture* const pic = enc->pic_; local
    [all...]
webp_enc.c 299 int WebPEncodingSetError(const WebPPicture* const pic,
303 ((WebPPicture*)pic)->error_code = error;
307 int WebPReportProgress(const WebPPicture* const pic,
311 if (pic->progress_hook && !pic->progress_hook(percent, pic)) {
313 WebPEncodingSetError(pic, VP8_ENC_ERROR_USER_ABORT);
321 int WebPEncode(const WebPConfig* config, WebPPicture* pic) {
323 if (pic == NULL) return 0;
325 WebPEncodingSetError(pic, VP8_ENC_OK); // all ok so fa
    [all...]
  /external/skia/tools/
pinspect.cpp 36 auto pic = SkPicture::MakeFromStream(&stream); local
37 if (nullptr == pic) {
42 pic->cullRect().fLeft, pic->cullRect().fTop,
43 pic->cullRect().fRight, pic->cullRect().fBottom);
44 return pic;
47 static void dumpOps(SkPicture* pic) {
51 canvas.drawPicture(pic);
73 auto pic(inspect(argv[index]))
    [all...]
  /external/skqp/tools/
pinspect.cpp 36 auto pic = SkPicture::MakeFromStream(&stream); local
37 if (nullptr == pic) {
42 pic->cullRect().fLeft, pic->cullRect().fTop,
43 pic->cullRect().fRight, pic->cullRect().fBottom);
44 return pic;
47 static void dumpOps(SkPicture* pic) {
51 canvas.drawPicture(pic);
73 auto pic(inspect(argv[index]))
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
attr-pic-opts-mno-pic.d 2 #name: C6X PIC attribute, -mno-pic
3 #as: -mno-pic
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-tic6x/
attr-pic-00.d 1 #name: C6X PIC attribute merging, 0 0
4 #source: attr-pic-0.s
5 #source: attr-pic-0.s
attr-pic-01.d 1 #name: C6X PIC attribute merging, 0 1
4 #source: attr-pic-0.s
5 #source: attr-pic-1.s
attr-pic-10.d 1 #name: C6X PIC attribute merging, 1 0
4 #source: attr-pic-1.s
5 #source: attr-pic-0.s
attr-pic-11.d 1 #name: C6X PIC attribute merging, 1 1
4 #source: attr-pic-1.s
5 #source: attr-pic-1.s
  /external/ImageMagick/Magick++/demo/
gravity.cpp 59 Image pic = base; local
60 pic.annotate( "NorthWest", Geometry(0,0,x,y), NorthWestGravity, angle );
61 pic.annotate( "North", Geometry(0,0,0,y), NorthGravity, angle );
62 pic.annotate( "NorthEast", Geometry(0,0,x,y), NorthEastGravity, angle );
63 pic.annotate( "East", Geometry(0,0,x,0), EastGravity, angle );
64 pic.annotate( "Center", Geometry(0,0,0,0), CenterGravity, angle );
65 pic.annotate( "SouthEast", Geometry(0,0,x,y), SouthEastGravity, angle );
66 pic.annotate( "South", Geometry(0,0,0,y), SouthGravity, angle );
67 pic.annotate( "SouthWest", Geometry(0,0,x,y), SouthWestGravity, angle );
68 pic.annotate( "West", Geometry(0,0,x,0), WestGravity, angle )
    [all...]
  /external/webp/include/webp/
extras.h 39 WEBP_EXTERN(int) WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic);
43 WEBP_EXTERN(int) WebPImportRGB4444(const uint8_t* rgb4444, WebPPicture* pic);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
pic-and-nonpic-2.d 1 #source: pic-and-nonpic-2a.s
2 #source: pic-and-nonpic-2b.s
12 41000: 0c010406 jal 41018 <\.pic\.foo@@V2>
16 00041018 <\.pic\.foo@@V2>:
pic-and-nonpic-3-error.d 1 #name: PIC and non-PIC test 3 (error)
2 #source: pic-and-nonpic-3b.s
4 #ld: tmpdir/pic-and-nonpic-3a.so -melf32btsmip -znocopyreloc
pic-and-nonpic-4-error.d 1 #name: PIC and non-PIC test 4 (error)
2 #source: pic-and-nonpic-4b.s
4 #ld: tmpdir/pic-and-nonpic-4a.so -melf32btsmip -znocopyreloc
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_vce_50.c 50 RVCE_CS(enc->pic.rate_ctrl.rate_ctrl_method); // encRateControlMethod
51 RVCE_CS(enc->pic.rate_ctrl.target_bitrate); // encRateControlTargetBitRate
52 RVCE_CS(enc->pic.rate_ctrl.peak_bitrate); // encRateControlPeakBitRate
53 RVCE_CS(enc->pic.rate_ctrl.frame_rate_num); // encRateControlFrameRateNum
55 RVCE_CS(enc->pic.quant_i_frames); // encQP_I
56 RVCE_CS(enc->pic.quant_p_frames); // encQP_P
57 RVCE_CS(enc->pic.quant_b_frames); // encQP_B
58 RVCE_CS(enc->pic.rate_ctrl.vbv_buffer_size); // encVBVBufferSize
59 RVCE_CS(enc->pic.rate_ctrl.frame_rate_den); // encRateControlFrameRateDen
63 RVCE_CS(enc->pic.rate_ctrl.target_bits_picture); // encTargetBitsPerPictur
    [all...]
radeon_uvd.c 292 static unsigned calc_ctx_size_h265_main10(struct ruvd_decoder *dec, struct pipe_h265_picture_desc *pic)
300 unsigned coeff_10bit = (pic->pps->sps->bit_depth_luma_minus8 || pic->pps->sps->bit_depth_chroma_minus8) ? 2 : 1;
309 block_size = (1 << (pic->pps->sps->log2_min_luma_coding_block_size_minus3 + 3));
310 log2_ctb_size = block_size + pic->pps->sps->log2_diff_max_min_luma_coding_block_size;
474 static struct ruvd_h264 get_h264_msg(struct ruvd_decoder *dec, struct pipe_h264_picture_desc *pic)
479 switch (pic->base.profile) {
500 result.sps_info_flags |= pic->pps->sps->direct_8x8_inference_flag << 0;
501 result.sps_info_flags |= pic->pps->sps->mb_adaptive_frame_field_flag << 1;
502 result.sps_info_flags |= pic->pps->sps->frame_mbs_only_flag << 2
    [all...]

Completed in 232 milliseconds

1 2 3 4 5 6 7 8 91011>>