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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/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/libcxxabi/test/
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...]
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 59 uint64_t Width = Target.getTypeWidth(PtrDiff);
62 Width = 2 * Width;
63 return std::make_pair(Width, Align);
  /external/chromium_org/third_party/libvpx/source/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/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /external/libvpx/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/chromium_org/chrome/test/chromedriver/
basic_types.h 21 WebSize(int width, int height);
24 int width; member in struct:WebSize
30 WebRect(int x, int y, int width, int height);
36 int Width() const;
basic_types.cc 18 WebSize::WebSize() : width(0), height(0) {}
20 WebSize::WebSize(int width, int height) : width(width), height(height) {}
26 WebRect::WebRect(int x, int y, int width, int height)
27 : origin(x, y), size(width, height) {}
38 int WebRect::Width() const { return size.width; }
  /external/chromium_org/third_party/angle/util/
Event.h 24 int Width;
OSWindow.cpp 47 mWidth = event.Size.Width;
  /external/chromium_org/third_party/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();
  /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.
  /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/chromium_org/third_party/mesa/src/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/llvm/include/llvm/IR/
DataLayout.h 58 /// vector, float) and type bit width.
64 unsigned TypeBitWidth : 24; ///< Type bit width
84 uint32_t TypeByteWidth; ///< Type byte width
132 /// type and bit width were not found in the SmallVector.
136 /// type and bit width were not found in the DenseSet.
220 /// one. This returns false if the integer width is not legal.
222 /// The width is specified in bits.
224 bool isLegalInteger(unsigned Width) const {
226 if (LegalIntWidth == Width)
231 bool isIllegalInteger(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/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.h 87 virtual int32 GetYPitch() const { return frame()->Width(); }
88 virtual int32 GetUPitch() const { return (frame()->Width() + 1) / 2; }
89 virtual int32 GetVPitch() const { return (frame()->Width() + 1) / 2; }
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp 43 uint32_t Width,
53 Width,
146 uint32_t Width,
156 Width,

Completed in 894 milliseconds

1 2 3 4 5 6 7 8 91011>>