/external/libvpx/libvpx/vp8/common/ |
H A D | onyxd.h | 31 int Width; member in struct:__anon11192
|
H A D | filter.c | 361 * INT32 Width : Block width 383 int Width, 391 filter_block2d_bil_first_pass(src_ptr, FData, src_pitch, Height + 1, Width, HFilter); 394 filter_block2d_bil_second_pass(FData, dst_ptr, dst_pitch, Height, Width, VFilter); 375 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/mesa3d/src/egl/main/ |
H A D | eglmode.h | 49 EGLint Width, Height; /* size in pixels */ member in struct:_egl_mode
|
H A D | eglimage.h | 48 EGLint Width; member in struct:_egl_image_attribs
|
H A D | eglsurface.h | 55 EGLint Width, Height; member in struct:_egl_surface
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
H A D | image_util_bitmap_impl.py | 13 def Width(bitmap): function
|
H A D | image_util_numpy_impl.py | 21 def Width(image): function 40 metadata['size'] = (Width(image), Height(image)) 111 width = max(Width(image1), Width(image2)) 115 self_image[0:Height(image1), 0:Width(image1)] = image1 116 other_image[0:Height(image2), 0:Width(image2)] = image2
|
/external/libcxxabi/test/ |
H A D | dynamic_cast_stress.pass.cpp | 44 template <std::size_t Width, std::size_t Depth> 46 : public makeB<typename std::__make_tuple_indices<Width>::type, Depth> 52 const std::size_t Width = 10; local 54 A<Width, Depth> a; 55 typedef B<Width/2, Depth> Destination; 56 // typedef A<Width, Depth> Destination; 60 b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a); 74 B<Width/2, Depth> -O3 48.334 93.190 libc++abi 93% faster 75 B<Width/2, Depth> -Os 58.535 94.103 libc++abi 61% faster 76 A<Width, Dept [all...] |
/external/libvpx/libvpx/vp8/common/arm/ |
H A D | bilinearfilter_arm.c | 25 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/lib/Support/ |
H A D | Unicode.cpp | 356 int Width = charWidth(buf[0]); local 357 if (Width < 0) 359 ColumnWidth += Width;
|
H A D | TargetRegistry.cpp | 121 size_t Width = 0; local 124 Width = std::max(Width, Targets.back().first.size()); 132 OS.indent(Width - Targets[i].first.size()) << " - "
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonBitTracker.h | 46 unsigned getNextPhysReg(unsigned PReg, unsigned Width) const; 53 uint16_t Width; member in struct:llvm::HexagonEvaluator::ExtType 54 ExtType() : Type(0), Width(0) {} 55 ExtType(char t, uint16_t w) : Type(t), Width(w) {}
|
/external/chromium-trace/catapult/telemetry/telemetry/util/ |
H A D | image_util.py | 32 def Width(image): function 33 """Width of the image.""" 34 return impl.Width(image)
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | APSIntType.h | 25 APSIntType(uint32_t Width, bool Unsigned) argument 26 : BitWidth(Width), IsUnsigned(Unsigned) {}
|
/external/clang/lib/AST/ |
H A D | ItaniumCXXABI.cpp | 107 uint64_t Width = Target.getTypeWidth(PtrDiff); variable 110 Width = 2 * Width; 111 return std::make_pair(Width, Align);
|
H A D | MicrosoftCXXABI.cpp | 251 uint64_t Width = Ptrs * PtrSize + Ints * IntSize; local 265 Width = llvm::RoundUpToAlignment(Width, Align); 266 return std::make_pair(Width, Align);
|
/external/sfntly/cpp/src/sfntly/table/core/ |
H A D | horizontal_device_metrics_table.cc | 59 int32_t HorizontalDeviceMetricsTable::Width(int32_t record_index, function in class:sfntly::HorizontalDeviceMetricsTable
|
/external/dng_sdk/source/ |
H A D | dng_image.h | 201 uint32 Width () const function in class:dng_image
|
H A D | dng_resample.h | 134 uint32 Width () const function in class:dng_resample_weights 218 uint32 Width () const function in class:dng_resample_weights_2d
|
/external/llvm/include/llvm/Support/ |
H A D | Format.h | 118 unsigned Width; member in class:llvm::FormattedString 124 : Str(S), Width(W), RightJustify(R) { } 128 /// \p Width characters. If \p Str is larger that \p Width, full string 130 inline FormattedString left_justify(StringRef Str, unsigned Width) { argument 131 return FormattedString(Str, Width, false); 135 /// \p Width characters. If \p Str is larger that \p Width, full string 137 inline FormattedString right_justify(StringRef Str, unsigned Width) { argument 138 return FormattedString(Str, Width, tru 145 unsigned Width; member in class:llvm::FormattedNumber 164 format_hex(uint64_t N, unsigned Width, bool Upper = false) argument 177 format_hex_no_prefix(uint64_t N, unsigned Width, bool Upper = false) argument 189 format_decimal(int64_t N, unsigned Width) argument [all...] |
/external/llvm/lib/Target/X86/ |
H A D | X86TargetObjectFile.cpp | 126 unsigned Width = (AI.getBitWidth() / 8) * 2; local 129 assert(Width >= Size && "hex string is too large!"); 130 HexString.insert(HexString.begin(), Width - Size, '0');
|
/external/llvm/tools/llvm-cov/ |
H A D | CoverageReport.cpp | 28 unsigned Width; member in struct:__anon13065::Column 32 Column(StringRef Str, unsigned Width) argument 33 : Str(Str), Width(Width), Trim(WidthTrim), Alignment(LeftAlignment) {} 55 if (Str.size() <= Width) { 57 OS.indent(Width - Str.size()); 62 OS.indent(Width - Str.size()); 71 OS << Str.substr(0, Width); 74 OS << "..." << Str.substr(Str.size() - Width + 3); 77 OS << Str.substr(0, Width 82 column(StringRef Str, unsigned Width) argument 87 column(StringRef Str, unsigned Width, const T &Value) argument [all...] |
/external/pdfium/third_party/libtiff/ |
H A D | tif_fax3.h | 86 unsigned char Width; /* width of code in bits */ member in struct:__anon15356 201 for (t = 0; t < TabEnt->Width; t++) \ 205 ClrBits(TabEnt->Width); \ 213 for (t = 0; t < TabEnt->Width; t++) \ 217 ClrBits(TabEnt->Width); \ 230 ClrBits(TabEnt->Width); \ 235 ClrBits(TabEnt->Width); \
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
H A D | big_glyph_metrics.cc | 34 int32_t BigGlyphMetrics::Width() { function in class:sfntly::BigGlyphMetrics 84 int32_t BigGlyphMetrics::Builder::Width() { function in class:sfntly::BigGlyphMetrics::Builder
|
H A D | small_glyph_metrics.cc | 34 int32_t SmallGlyphMetrics::Width() { function in class:sfntly::SmallGlyphMetrics 72 int32_t SmallGlyphMetrics::Builder::Width() { function in class:sfntly::SmallGlyphMetrics::Builder
|