Searched refs:Width (Results 1 - 25 of 114) sorted by relevance

12345

/external/libvpx/vp8/common/
H A Dg_common.h13 extern void (*vp8_plane_add_noise)(unsigned char *Start, unsigned int Width, unsigned int Height, int Pitch, int DPitch, int q);
18 int Width,
H A Donyxd.h29 int Width; member in struct:__anon8204
H A Dfilter.c362 * INT32 Width : Block width
384 int Width,
392 filter_block2d_bil_first_pass(src_ptr, FData, src_pitch, Height + 1, Width, HFilter);
395 filter_block2d_bil_second_pass(FData, dst_ptr, dst_pitch, Height, Width, VFilter);
376 filter_block2d_bil( unsigned char *src_ptr, unsigned char *dst_ptr, unsigned int src_pitch, unsigned int dst_pitch, const short *HFilter, const short *VFilter, int Width, int Height ) argument
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFloatRectHaiku.cpp39 , m_size(rect.Width() + 1, rect.Height() + 1)
/external/chromium/chrome/browser/ui/gtk/
H A Dcairo_cached_surface.h34 int Width() const;
H A Dcairo_cached_surface.cc23 int CairoCachedSurface::Width() const { function in class:CairoCachedSurface
H A Dcustom_button.cc62 int CustomDrawButtonBase::Width() const { function in class:CustomDrawButtonBase
63 return surfaces_[0]->Width();
101 gfx::Rect bounds = gfx::Rect(0, 0, pixbuf->Width(), 0);
333 gtk_widget_set_size_request(widget(), button_base_.Width(),
/external/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.c25 int Width,
32 vp8_filter_block2d_bil_first_pass_armv6(src_ptr, FData, src_pitch, Height + 1, Width, HFilter);
35 vp8_filter_block2d_bil_second_pass_armv6(FData, dst_ptr, dst_pitch, Height, Width, VFilter);
17 vp8_filter_block2d_bil_armv6( unsigned char *src_ptr, unsigned char *dst_ptr, unsigned int src_pitch, unsigned int dst_pitch, const short *HFilter, const short *VFilter, int Width, int Height ) argument
/external/llvm/include/llvm/Target/
H A DTargetData.h171 bool isLegalInteger(unsigned Width) const {
173 if (LegalIntWidths[i] == Width)
178 bool isIllegalInteger(unsigned Width) const {
179 return !isLegalInteger(Width);
191 bool fitsInLegalInteger(unsigned Width) const {
193 if (Width <= LegalIntWidths[i])
/external/llvm/lib/Support/
H A DTargetRegistry.cpp145 size_t Width = 0; local
150 Width = std::max(Width, Targets.back().first.size());
158 OS.indent(Width - Targets[i].first.size()) << " - "
/external/webkit/Source/WebCore/svg/
H A DSVGForeignObjectElement.h59 DECLARE_ANIMATED_LENGTH(Width, width)
H A DSVGRectElement.h59 DECLARE_ANIMATED_LENGTH(Width, width)
H A DSVGFilterElement.h72 DECLARE_ANIMATED_LENGTH(Width, width)
H A DSVGFilterPrimitiveStandardAttributes.h78 DECLARE_ANIMATED_LENGTH(Width, width)
H A DSVGImageElement.h72 DECLARE_ANIMATED_LENGTH(Width, width)
H A DSVGMaskElement.h65 DECLARE_ANIMATED_LENGTH(Width, width)
H A DSVGPatternElement.h73 DECLARE_ANIMATED_LENGTH(Width, width)
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h24 APSIntType(uint32_t Width, bool Unsigned) argument
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
/external/skia/src/images/
H A DSkMovie_gif.cpp133 src += imageDesc.Width;
137 src += imageDesc.Width * ((imageDesc.Height - row + rowStep - 1) / rowStep);
145 GifWord copyWidth = frame->ImageDesc.Width;
177 GifWord copyWidth = frame->ImageDesc.Width;
189 srcPad = frame->ImageDesc.Width - copyWidth;
192 src += frame->ImageDesc.Width;
285 && covered->ImageDesc.Left + covered->ImageDesc.Width <=
286 target->ImageDesc.Left + target->ImageDesc.Width
313 cur->ImageDesc.Width, cur->ImageDesc.Height,
/external/clang/include/clang/Basic/
H A DSpecifiers.h73 /*DeclSpec::TSW*/ unsigned Width : 2; member in struct:clang::WrittenBuiltinSpecs
/external/giflib/
H A Dgif_lib.h79 GifWord Left, Top, Width, Height, /* Current image dimensions. */ member in struct:GifImageDesc
148 int Width, int GifHeight, int GifInterlace,
222 int QuantizeBuffer(unsigned int Width, unsigned int Height,
H A Dgifalloc.c223 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
382 CopyFrom->ImageDesc.Width);
389 CopyFrom->ImageDesc.Width);
/external/libvpx/vp8/decoder/
H A Ddecodframe.c603 const int Width = pc->Width; local
611 pc->Width = (data[3] | (data[4] << 8)) & 0x3fff;
617 if (Width != pc->Width || Height != pc->Height)
621 if (pc->Width <= 0)
623 pc->Width = Width;
635 if (vp8_alloc_frame_buffers(pc, pc->Width, pc->Height))
641 vp8mt_alloc_temp_buffers(pbi, pc->Width, prev_mb_row
[all...]
/external/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp40 unsigned Base, Width, Offset; member in struct:__anon9327::EncodingField
42 : Base(B), Width(W), Offset(O) { }
52 void addField(unsigned Base, unsigned Width, unsigned Offset) { argument
53 Fields.push_back(EncodingField(Base, Width, Offset));
331 // Width of instructions
1068 << "(insn, " << OI->Base << ", " << OI->Width
1075 << "(insn, " << OI->Base << ", " << OI->Width
1779 unsigned Width = 0;
1792 OpInfo.addField(Base, Width, Offset);
1794 Width
[all...]
/external/llvm/lib/Analysis/
H A DIVUsers.cpp133 uint64_t Width = SE->getTypeSizeInBits(I->getType());
134 if (Width > 64 || (TD && !TD->isLegalInteger(Width)))

Completed in 1011 milliseconds

12345