HomeSort by relevance Sort by last modified time
    Searched full:pic_ (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/third_party/libwebp/enc/
syntax.c 43 const WebPPicture* const pic = enc->pic_;
56 const WebPPicture* const pic = enc->pic_;
81 const WebPPicture* const pic = enc->pic_;
155 WebPPicture* const pic = enc->pic_;
277 WebPPicture* const pic = enc->pic_;
281 buffer[3] = enc->pic_->colorspace & WEBP_CSP_UV_MASK;
339 if (enc->pic_->stats) {
340 enc->pic_->stats->header_bytes[0] = (int)((pos2 - pos1 + 7) >> 3);
341 enc->pic_->stats->header_bytes[1] = (int)((pos3 - pos2 + 7) >> 3);
342 enc->pic_->stats->alpha_data_size = (int)enc->alpha_data_size_
    [all...]
layer.c 25 enc->use_layer_ = (enc->pic_->u0 != NULL);
vp8li.h 28 const WebPPicture* pic_; // input picture. member in struct:__anon14026
iterator.c 62 it->y_stride_ = enc->pic_->y_stride;
63 it->uv_stride_ = enc->pic_->uv_stride;
76 if (delta && enc->pic_->progress_hook) {
80 return WebPReportProgress(enc->pic_, percent, &enc->percent_);
109 const WebPPicture* const pic = enc->pic_;
152 const WebPPicture* const pic = enc->pic_;
alpha.c 184 const WebPPicture* const pic = enc->pic_;
354 enc->has_alpha_ = WebPPictureHasTransparency(enc->pic_);
389 return WebPReportProgress(enc->pic_, enc->percent_ + 20, &enc->percent_);
webpenc.c 268 enc->pic_ = picture;
307 WebPAuxStats* stats = enc->pic_->stats;
318 WebPAuxStats* const stats = enc->pic_->stats;
334 WebPReportProgress(enc->pic_, 100, &enc->percent_); // done!
frame.c 233 if (enc->pic_->stats != NULL) {
235 enc->pic_->stats->segment_size[n] = p[n];
656 WebPPicture* const pic = enc->pic_;
804 return WebPReportProgress(enc->pic_, final_percent, &enc->percent_);
838 if (enc->pic_->stats) { // finalize byte counters...
955 ok = ok && WebPReportProgress(enc->pic_, enc->percent_ + 20, &enc->percent_);
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCTargetDesc.cpp 59 // pic13 PIC_ Small GOT < 2^13 bytes
60 // pic32 PIC_ Medium GOT < 2^32 bytes
71 CM = RM == Reloc::PIC_ ? CodeModel::Medium : CodeModel::Small;
  /external/webp/src/enc/
syntax.c 43 const WebPPicture* const pic = enc->pic_;
56 const WebPPicture* const pic = enc->pic_;
81 const WebPPicture* const pic = enc->pic_;
155 WebPPicture* const pic = enc->pic_;
277 WebPPicture* const pic = enc->pic_;
281 buffer[3] = enc->pic_->colorspace & WEBP_CSP_UV_MASK;
339 if (enc->pic_->stats) {
340 enc->pic_->stats->header_bytes[0] = (int)((pos2 - pos1 + 7) >> 3);
341 enc->pic_->stats->header_bytes[1] = (int)((pos3 - pos2 + 7) >> 3);
342 enc->pic_->stats->alpha_data_size = (int)enc->alpha_data_size_
    [all...]
layer.c 25 enc->use_layer_ = (enc->pic_->u0 != NULL);
vp8li.h 28 const WebPPicture* pic_; // input picture. member in struct:__anon30392
iterator.c 62 it->y_stride_ = enc->pic_->y_stride;
63 it->uv_stride_ = enc->pic_->uv_stride;
76 if (delta && enc->pic_->progress_hook) {
80 return WebPReportProgress(enc->pic_, percent, &enc->percent_);
109 const WebPPicture* const pic = enc->pic_;
152 const WebPPicture* const pic = enc->pic_;
alpha.c 184 const WebPPicture* const pic = enc->pic_;
354 enc->has_alpha_ = WebPPictureHasTransparency(enc->pic_);
389 return WebPReportProgress(enc->pic_, enc->percent_ + 20, &enc->percent_);
webpenc.c 268 enc->pic_ = picture;
307 WebPAuxStats* stats = enc->pic_->stats;
318 WebPAuxStats* const stats = enc->pic_->stats;
334 WebPReportProgress(enc->pic_, 100, &enc->percent_); // done!
  /external/llvm/include/llvm/Support/
CodeGen.h 25 enum Model { Default, Static, PIC_, DynamicNoPIC };
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 241 PersonalityEncoding = (RelocM == Reloc::PIC_)
244 LSDAEncoding = (RelocM == Reloc::PIC_)
247 FDEEncoding = (RelocM == Reloc::PIC_)
250 TTypeEncoding = (RelocM == Reloc::PIC_)
254 if (RelocM == Reloc::PIC_) {
279 if (RelocM == Reloc::PIC_) {
302 if (RelocM == Reloc::PIC_) {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 67 if (RM == Reloc::PIC_ || RM == Reloc::Default)
MipsMCTargetDesc.cpp 113 RM = Reloc::PIC_;
  /external/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp 53 IsPIC(TM.getRelocationModel() == Reloc::PIC_),
Mips16HardFloat.cpp 244 if (Subtarget.getRelocationModel() == Reloc::PIC_)
373 if (Subtarget.getRelocationModel() != Reloc::PIC_ ) {
387 bool PicMode = Subtarget.getRelocationModel() == Reloc::PIC_;
MipsLongBranch.cpp 68 IsPIC(TM.getRelocationModel() == Reloc::PIC_),
190 TM.getRelocationModel() == Reloc::PIC_)))
412 if ((TM.getRelocationModel() == Reloc::PIC_) &&
450 if (TM.getRelocationModel() == Reloc::PIC_) {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 321 RM = Reloc::PIC_;
325 RM = Reloc::PIC_;
336 RM = Reloc::PIC_;
344 RM = Reloc::PIC_;
  /external/llvm/lib/Target/PowerPC/
PPCCodeEmitter.cpp 133 assert(TM.getRelocationModel() == Reloc::PIC_);
159 if (TM.getRelocationModel() == Reloc::PIC_) {
  /external/llvm/lib/Target/ARM/
ARMInstrInfo.cpp 106 if (TM->getRelocationModel() != Reloc::PIC_)
  /external/llvm/lib/Target/
TargetMachineC.cpp 99 RM = Reloc::PIC_;

Completed in 871 milliseconds

1 2 3