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

1 2

  /external/chromium/chrome/browser/ui/gtk/
cairo_cached_surface.cc 23 int CairoCachedSurface::Width() const {
custom_button.cc 62 int CustomDrawButtonBase::Width() const {
63 return surfaces_[0]->Width();
95 cairo_translate(cairo_context, widget->allocation.width, 0.0f);
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/
onyxd.h 29 int Width;
onyx.h 104 int Width; // width of data passed to the compressor
onyxc_int.h 91 int Width;
  /external/llvm/lib/Support/
TargetRegistry.cpp 104 size_t Width = 0;
109 Width = std::max(Width, Targets.back().first.size());
117 OS.indent(Width - Targets[i].first.size()) << " - "
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.h 26 unsigned Base, Width, Offset;
28 : Base(B), Width(W), Offset(O) { }
38 void addField(unsigned Base, unsigned Width, unsigned Offset) {
39 Fields.push_back(EncodingField(Base, Width, Offset));
FixedLenDecoderEmitter.cpp 238 // Width of instructions
748 << "(insn, " << OI->Base << ", " << OI->Width
755 << "(insn, " << OI->Base << ", " << OI->Width
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
MosaicTypes.h 40 inline int Width()
72 int width, height; member in class:MosaicFrame
80 width = _width;
84 image = ImageUtils::allocateImage(width, height, ImageUtils::IMAGE_TYPE_NUM_CHANNELS);
100 return (image + (width*height));
108 return (image + (width*height*2));
116 ImageType U = image + (width*height);
117 return U[y*width+x];
125 ImageType U = image + (width*height*2);
126 return U[y*width+x]
139 double width; member in struct:__anon17032
    [all...]
  /external/libvpx/vp8/decoder/
decodframe.c 603 const int Width = pc->Width;
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;
625 "Invalid frame width");
635 if (vp8_alloc_frame_buffers(pc, pc->Width, pc->Height)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 81 unsigned Width = PTy->getNumElements();
82 if (EltNo >= Width) // Out of range access.
InstCombinePHI.cpp 577 unsigned Width; // The width extracted.
580 : PN(pn), Shift(Sh), Width(Ty->getPrimitiveSizeInBits()) {}
584 : PN(pn), Shift(Sh), Width(0) {}
599 (Val.Width>>3);
604 LHS.Width == RHS.Width;
    [all...]
  /external/clang/include/clang/Basic/
Specifiers.h 19 /// \brief Specifies the width of a type, e.g., short, long, or long long.
71 /*DeclSpec::TSW*/ unsigned Width : 2;
  /external/opencv/cxcore/include/
cvwimage.h 68 // Thus (c,r) is usually in the domain [0, width) X [0, height)
82 // int w = im.Width();
89 // for (int c = 0; c < im->Width(); ++c) {
192 int Width() const {return image_->width; }
235 WImageView<T> View(int c, int r, int width, int height);
271 WImageViewC<T, C> View(int c, int r, int width, int height);
310 WImageBuffer(int width, int height, int nchannels) : WImage<T>(0) {
311 Allocate(width, height, nchannels);
320 void Allocate(int width, int height, int nchannels)
    [all...]
  /external/giflib/
gif_lib.h 79 GifWord Left, Top, Width, Height, /* Current image dimensions. */
148 int Width, int GifHeight, int GifInterlace,
222 int QuantizeBuffer(unsigned int Width, unsigned int Height,
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 342 unsigned Width = cast<IntegerType>(Index->getType())->getBitWidth();
343 if (TD->getPointerSizeInBits() > Width)
347 APInt IndexScale(Width, 0), IndexOffset(Width, 0);
    [all...]
ValueTracking.cpp 58 /// same width as the vector element, and the bit is set only if it is true
    [all...]
  /external/opencv/otherlibs/highgui/
highgui.h 171 CVAPI(CvCapture*) cvCreateSocketCapture( const char *address, const char* port, int width, int height );
252 return !img ? 0 : !img->roi ? img->width : img->roi->width;
303 dr.right = sr.x + sr.width;
316 roi.width = r.right - r.left;
342 virtual bool Create( int width, int height, int bits_per_pixel, int image_origin = 0 );
370 /* width and height of ROI */
371 int Width() { return !m_img ? 0 : !m_img->roi ? m_img->width : m_img->roi->width; };
    [all...]
  /frameworks/media/libvideoeditor/vss/common/inc/
M4WRITER_common.h 132 M4OSA_UInt32 width; /**< Frame Width */ member in struct:__anon15949
192 M4OSA_UInt32 Width ;
  /external/jhead/
jhead.h 80 int Height, Width;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MotionEstimationMB.c 102 OMX_U32 Width=0, Height=0, MaxXPart, MaxYPart,MaxSubXPart,MaxSubYPart;
108 Width = 16;
112 Width = 16;
116 Width = 8;
120 Width = 8;
319 MaxXPart = 16/Width;
335 Width = 8;
339 Width = 8;
343 Width = 4;
347 Width = 4
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 716 // IV Widening - Extend the width of an IV to cover its widest uses.
749 /// the final width of the IV before actually widening it.
756 uint64_t Width = SE->getTypeSizeInBits(Ty);
757 if (TD && !TD->isLegalInteger(Width))
770 if (Width > SE->getTypeSizeInBits(WI.WidestNativeType))
    [all...]
  /external/webrtc/src/modules/interface/
module_common_types.h 71 WebRtc_UWord16 width; // size member in struct:webrtc::RTPVideoHeader
459 * Get frame width
461 WebRtc_UWord32 Width() const {return _width;}
467 * Set frame width
469 void SetWidth(const WebRtc_UWord32 width) {_width = width;}
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 415 milliseconds

1 2