Searched defs:Width (Results 51 - 75 of 111) sorted by relevance

12345

/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.cpp1031 DECLARE_PDF_NAME(Width); variable
1064 HANDLE_NAME_ABBR(key, Width, W);
/external/chromium_org/ui/gfx/image/
H A Dimage.cc206 virtual int Width() const = 0;
227 virtual int Width() const OVERRIDE {
273 virtual int Width() const OVERRIDE {
307 virtual int Width() const OVERRIDE {
340 virtual int Width() const OVERRIDE {
729 int Image::Width() const { function in class:gfx::Image
732 return GetRepresentation(DefaultRepresentationType(), true)->Width();
/external/clang/include/clang/Basic/
H A DSpecifiers.h74 /*DeclSpec::TSW*/ unsigned Width : 2; member in struct:clang::WrittenBuiltinSpecs
/external/giflib/
H A Dgif_lib.h47 GifWord Left, Top, Width, Height; /* Current image dimensions. */ member in struct:GifImageDesc
216 int GifQuantizeBuffer(unsigned int Width, unsigned int Height,
/external/libvpx/libvpx/test/
H A Dconvolve_test.cc198 int Width() const { return GET_PARAM(0); } function in class:__anon24774::ConvolveTest
201 const int center = (kOuterBlockSize - Width()) / 2;
210 i % kOuterBlockSize >= (BorderLeft() + Width()));
265 Width(), Height()));
270 for (int x = 0; x < Width(); ++x)
282 Width(), Height()));
287 for (int x = 0; x < Width(); ++x)
299 Width(), Height()));
304 for (int x = 0; x < Width(); ++x)
355 Width(), Heigh
[all...]
/external/libvpx/libvpx/vp8/common/
H A Donyx.h102 int Width; member in struct:__anon24854
H A Donyxc_int.h74 int Width; member in struct:VP8Common
H A Dpostproc.c495 * unsigned int Width width of plane
514 unsigned int Width, unsigned int Height, int Pitch)
523 for (j = 0; j < Width; j++)
735 dest->y_width = oci->Width;
748 int width = (oci->Width + 15) & ~15;
1196 dest->y_width = oci->Width;
510 vp8_plane_add_noise_c(unsigned char *Start, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, int Pitch) argument
/external/llvm/include/llvm/Support/
H A DScaledNumber.h85 const int Width = getWidth<DigitsT>(); local
86 if (Width == 64 || Digits <= std::numeric_limits<DigitsT>::max())
90 int Shift = 64 - Width - countLeadingZeros(Digits);
425 static void dump(uint64_t D, int16_t E, int Width);
426 static raw_ostream &print(raw_ostream &OS, uint64_t D, int16_t E, int Width,
428 static std::string toString(uint64_t D, int16_t E, int Width,
504 static const int Width = sizeof(DigitsType) * 8; member in class:llvm::ScaledNumber
505 static_assert(Width <= 64, "invalid integer width for digits");
547 if (Scale > 0 || Scale <= -Width)
598 return ScaledNumberBase::toString(Digits, Scale, Width, Precisio
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp1194 unsigned Width = getRegClass(LdSt->getDesc(), 0, TRI, MF)->getSize(); local
1195 Offset = LdSt->getOperand(2).getImm() * Width;
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp194 /// @param Width - The byte width of this immediate in the instruction
198 /// immediate in the instruction using the Address, Offset and Width. If that
207 uint64_t Width, MCInst &MI,
210 Offset, Width);
205 tryAddingSymbolicOperand(int64_t Value, bool isBranch, uint64_t Address, uint64_t Offset, uint64_t Width, MCInst &MI, const MCDisassembler *Dis) argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp577 unsigned Width; // The width extracted. member in struct:__anon26247::LoweredPHIRecord
580 : PN(pn), Shift(Sh), Width(Ty->getPrimitiveSizeInBits()) {}
584 : PN(pn), Shift(Sh), Width(0) {}
599 (Val.Width>>3);
604 LHS.Width == RHS.Width;
H A DInstCombineVectorOps.cpp68 unsigned Width = VTy->getNumElements(); local
69 if (EltNo >= Width) // Out of range access.
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp438 unsigned Width = cast<VectorType>(Val0->getType())->getNumElements(); variable
442 for (unsigned i=0; i<Width; ++i) {
443 Constant *CI = ConstantInt::get(I32, Ran->Rand() % (Width*2));
/external/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp521 // Width is the number of bits per hex number.
524 unsigned Width) {
525 assert(Width <= 32 && "Width too large");
526 unsigned Digits = (Width + 3) / 4;
527 for (unsigned i = 0, e = Bits.size(); i < e; i += Width) {
529 for (unsigned j = 0; j != Width && i + j != e; ++j)
522 printBitVectorAsHex(raw_ostream &OS, const BitVector &Bits, unsigned Width) argument
/external/lzma/CPP/7zip/UI/Console/
H A DList.cpp123 int Width; member in struct:CFieldInfo
133 int Width; member in struct:CFieldInfoInit
198 fieldInfo.Width = fieldInfoInit.Width;
244 ((fieldInfo.PropID == kpidPath) ? 0: fieldInfo.Width), fieldInfo.Name);
254 for (int i = 0; i < fieldInfo.Width; i++)
316 int width = (fieldInfo.PropID == kpidPath) ? 0: fieldInfo.Width;
377 PrintNumberString(fieldInfo.TextAdjustment, fieldInfo.Width, size);
379 PrintNumberString(fieldInfo.TextAdjustment, fieldInfo.Width, compressedSize);
395 PrintString(fieldInfo.TextAdjustment, fieldInfo.Width,
[all...]
/external/opencv/cxcore/include/
H A Dcvwimage.h82 // int w = im.Width();
89 // for (int c = 0; c < im->Width(); ++c) {
192 int Width() const {return image_->width; } function in class:cv::WImage
330 Allocate(src.Width(), src.Height());
387 Allocate(src.Width(), src.Height());
533 if (IsNull() || WImage<T>::Width() != width ||
544 if (IsNull() || WImage<T>::Width() != width || WImage<T>::Height() != height) {
/external/opencv/otherlibs/highgui/
H A Dhighgui.h371 int Width() { return !m_img ? 0 : !m_img->roi ? m_img->width : m_img->roi->width; }; function in class:CvvImage
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusTypes.h141 Width = Height = 0.0f;
146 Width = size.Width;
153 Width = width;
159 return SizeF(Width + sz.Width,
165 return SizeF(Width - sz.Width,
171 return (Width == sz.Width)
181 REAL Width; member in class:SizeF
237 INT Width; member in class:Size
550 REAL Width; member in class:RectF
753 INT Width; member in class:Rect
[all...]
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.cpp1031 DECLARE_PDF_NAME(Width); variable
1064 HANDLE_NAME_ABBR(key, Width, W);
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dconvolve_test.cc331 int Width() const { return GET_PARAM(0); } function in class:__anon12976::ConvolveTest
334 const int center = (kOuterBlockSize - Width()) / 2;
343 i % kOuterBlockSize >= (BorderLeft() + Width()));
521 Width(), Height()));
526 for (int x = 0; x < Width(); ++x)
539 Width(), Height()));
544 for (int x = 0; x < Width(); ++x)
557 Width(), Height()));
562 for (int x = 0; x < Width(); ++x)
621 Width(), Heigh
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dpostproc.c499 * unsigned int Width width of plane
518 unsigned int Width, unsigned int Height, int Pitch)
527 for (j = 0; j < Width; j++)
739 dest->y_width = oci->Width;
752 int width = (oci->Width + 15) & ~15;
1200 dest->y_width = oci->Width;
514 vp8_plane_add_noise_c(unsigned char *Start, char *noise, char blackclamp[16], char whiteclamp[16], char bothclamp[16], unsigned int Width, unsigned int Height, int Pitch) argument
/external/jhead/
H A Djhead.h99 int Height, Width; member in struct:__anon22666
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp374 unsigned Width = Index->getType()->getIntegerBitWidth(); local
375 if (DL->getPointerSizeInBits(AS) > Width)
379 APInt IndexScale(Width, 0), IndexOffset(Width, 0);
H A DValueTracking.cpp1499 unsigned Width = CI->getBitWidth(); local
1500 if (isPowerOf2_32(Width) && Width > 8) {

Completed in 3967 milliseconds

12345