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

1 2 3 4 5 6 7 8 91011>>

  /external/sfntly/cpp/src/test/
hdmx_test.cc 52 EXPECT_EQ(hdmx_table->Width(0, 0), HDMX_MAX_WIDTH[0]);
53 EXPECT_EQ(hdmx_table->Width(0, 19), HDMX_MAX_WIDTH[0]);
54 EXPECT_EQ(hdmx_table->Width(0, 623), HDMX_MAX_WIDTH[0]);
55 EXPECT_EQ(hdmx_table->Width(1, 0), HDMX_MAX_WIDTH[1]);
56 EXPECT_EQ(hdmx_table->Width(1, 19), HDMX_MAX_WIDTH[1]);
57 EXPECT_EQ(hdmx_table->Width(1, 623), HDMX_MAX_WIDTH[1]);
58 EXPECT_EQ(hdmx_table->Width(2, 0), HDMX_MAX_WIDTH[2]);
59 EXPECT_EQ(hdmx_table->Width(2, 19), HDMX_MAX_WIDTH[2]);
60 EXPECT_EQ(hdmx_table->Width(2, 623), HDMX_MAX_WIDTH[2]);
61 EXPECT_EQ(hdmx_table->Width(3, 0), HDMX_MAX_WIDTH[3])
    [all...]
  /external/llvm/include/llvm/Support/
Format.h 118 unsigned Width;
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) {
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) {
138 return FormattedString(Str, Width, true)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 62 INT Width;
66 Size(): Width(0), Height(0) {}
67 Size(INT width, INT height): Width(width), Height(height) {}
68 Size(const Size& size): Width(size.Width), Height(size.Height) {}
71 return Width == 0 && Height == 0;
74 return Width == size.Width && Height == size.Height
    [all...]
gdiplusmetaheader.h 84 INT Width;
102 rect->Width = Width;
  /external/libcxxabi/test/
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;
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, Depth> -O3 11.515 33.134 libc++abi 188% faste
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
dynamic_cast_stress.cpp 45 template <std::size_t Width, std::size_t Depth>
47 : public makeB<typename std::__make_tuple_indices<Width>::type, Depth>
55 const std::size_t Width = 10;
57 A<Width, Depth> a;
58 typedef B<Width/2, Depth> Destination;
59 // typedef A<Width, Depth> Destination;
61 Destination* b = dynamic_cast<Destination*>((C<Width/2, 0>*)&a);
76 B<Width/2, Depth> -O3 48.334 93.190 libc++abi 93% faster
77 B<Width/2, Depth> -Os 58.535 94.103 libc++abi 61% faster
78 A<Width, Depth> -O3 11.515 33.134 libc++abi 188% faste
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
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;
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, Depth> -O3 11.515 33.134 libc++abi 188% faste
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonBitTracker.h 46 unsigned getNextPhysReg(unsigned PReg, unsigned Width) const;
53 uint16_t Width;
54 ExtType() : Type(0), Width(0) {}
55 ExtType(char t, uint16_t w) : Type(t), Width(w) {}
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 28 unsigned Width;
32 Column(StringRef Str, unsigned Width)
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 - 3) << "..."
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/
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);
  /external/mesa3d/src/mesa/main/
lines.c 34 * Set the line width.
36 * \param width line width in pixels.
41 _mesa_LineWidth( GLfloat width )
47 _mesa_debug(ctx, "glLineWidth %f\n", width);
49 if (width<=0.0) {
71 if (ctx->Line.Width == width)
75 ctx->Line.Width = width;
    [all...]
scissor.c 36 _mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height )
42 _mesa_debug(ctx, "glScissor %d %d %d %d\n", x, y, width, height);
44 if (width < 0 || height < 0) {
49 _mesa_set_scissor(ctx, x, y, width, height);
57 * \param width width of the scissor box.
68 GLint x, GLint y, GLsizei width, GLsizei height)
72 width == ctx->Scissor.Width &&
79 ctx->Scissor.Width = width
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/
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);
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DBase.cpp 80 static_cast<UINT>(m_renderTargetSize.Width),
108 static_cast<UINT>(m_renderTargetSize.Width),
137 m_renderTargetSize.Width,
144 void Direct3DBase::UpdateForRenderResolutionChange(float width, float height)
146 m_renderTargetSize.Width = width;
158 void Direct3DBase::UpdateForWindowSizeChange(float width, float height)
160 m_windowBounds.Width = width;
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DBase.cpp 80 static_cast<UINT>(m_renderTargetSize.Width),
108 static_cast<UINT>(m_renderTargetSize.Width),
137 m_renderTargetSize.Width,
144 void Direct3DBase::UpdateForRenderResolutionChange(float width, float height)
146 m_renderTargetSize.Width = width;
158 void Direct3DBase::UpdateForWindowSizeChange(float width, float height)
160 m_windowBounds.Width = width;
Direct3DInterop.cpp 73 if (renderResolution.Width != m_renderResolution.Width ||
80 m_renderer->UpdateForRenderResolutionChange(m_renderResolution.Width, m_renderResolution.Height);
108 m_renderer->UpdateForWindowSizeChange(WindowBounds.Width, WindowBounds.Height);
109 m_renderer->UpdateForRenderResolutionChange(m_renderResolution.Width, m_renderResolution.Height);
145 void Direct3DInterop::CreateTexture(const Platform::Array<int>^ buffer,int width,int height, OCVFilterType filter)
149 cv::Mat Lena = cv::Mat(height, width, CV_8UC4);
150 memcpy(Lena.data, buffer->Data, 4 * height*width);
170 m_renderer->CreateTextureFromByte(Lena.data, width, height);
  /external/mesa3d/src/mesa/swrast/
s_texture.c 70 GLuint bytes = _mesa_format_image_size(texImage->TexFormat, texImage->Width,
80 swImg->RowStride = texImage->Width;
91 swImg->ImageOffsets[i] = i * texImage->Width * texImage->Height;
112 if ((texImage->Width == 1 || _mesa_is_pow_two(texImage->Width2)) &&
119 /* Compute Width/Height/DepthScale for mipmap lod computation */
127 swImg->WidthScale = (GLfloat) texImage->Width;
165 assert(x < texImage->Width || texImage->Width == 0);
167 assert(x + w <= texImage->Width);
200 stride = _mesa_format_row_stride(texImage->TexFormat, texImage->Width);
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
convolve_test.cc 198 int Width() const { return GET_PARAM(0); }
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(), Height())
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 25 APSIntType(uint32_t Width, bool Unsigned)
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
46 /// type's bit width and signedness.
99 /// signed integers of the same width.
  /external/sfntly/cpp/src/sfntly/table/bitmap/
big_glyph_metrics.h 54 int32_t Width();
55 void SetWidth(byte_t width);
83 int32_t Width();
small_glyph_metrics.h 50 int32_t Width();
51 void SetWidth(byte_t width);
70 int32_t Width();
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCameraStream.h 139 uint32_t Width,
178 uint32_t Width,
201 uint32_t Width,
242 uint32_t Width,
251 uint32_t Width,
279 uint32_t Width,
288 uint32_t Width,
  /external/llvm/include/llvm/IR/
DataLayout.h 64 /// vector, float) and type bit width.
139 /// This member is a signal that a requested alignment type and bit width were
143 /// This member is a signal that a requested pointer type and bit width were
236 /// on any known one. This returns false if the integer width is not legal.
238 /// The width is specified in bits.
239 bool isLegalInteger(unsigned Width) const {
241 if (LegalIntWidth == Width)
246 bool isIllegalInteger(unsigned Width) const { return !isLegalInteger(Width); }
304 bool fitsInLegalInteger(unsigned Width) const
    [all...]
  /external/mesa3d/src/egl/main/
eglmode.c 93 mode->Width = EGL_DONT_CARE;
110 mode->Width = attrib_list[++i];
111 if (mode->Width <= 0) {
112 _eglError(EGL_BAD_PARAMETER, "eglChooseModeMESA(width)");
163 if (min->Width != EGL_DONT_CARE && c->Width < min->Width)
188 return m->Width;
  /external/libvpx/libvpx/test/
convolve_test.cc 361 int Width() const { return GET_PARAM(0); }
364 const int center = (kOuterBlockSize - Width()) / 2;
373 i % kOuterBlockSize >= (BorderLeft() + Width()));
574 Width(), Height()));
579 for (int x = 0; x < Width(); ++x)
593 Width(), Height()));
598 for (int x = 0; x < Width(); ++x)
612 Width(), Height()));
617 for (int x = 0; x < Width(); ++x)
630 Width(), Height()))
    [all...]

Completed in 1014 milliseconds

1 2 3 4 5 6 7 8 91011>>