HomeSort by relevance Sort by last modified time
    Searched refs:Width (Results 1 - 25 of 489) 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...]
  /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...]
  /external/chromium/chrome/browser/ui/gtk/
cairo_cached_surface.h 34 int Width() const;
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 40 uint64_t Width = Target.getTypeWidth(PtrDiff);
43 Width = 2 * Width;
44 return std::make_pair(Width, Align);
MicrosoftCXXABI.cpp 169 // to a pointer width if any are present and an int width otherwise.
172 uint64_t Width = Ptrs * PtrSize + Ints * IntSize;
174 Width = llvm::RoundUpToAlignment(Width, Align);
175 return std::make_pair(Width, Align);
  /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/WebKit/Source/core/svg/
SVGForeignObjectElement.h 53 DECLARE_ANIMATED_LENGTH(Width, width)
SVGFilterPrimitiveStandardAttributes.h 72 DECLARE_ANIMATED_LENGTH(Width, width)
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/Win32/
esUtil_TGA.c 40 Width,
64 int WinTGALoad( const char *fileName, char **buffer, int *width, int *height )
81 *width = Header.Width;
88 Buffer24= (RGBTRIPLE*)malloc(sizeof(RGBTRIPLE) * (*width) * (*height));
96 fread(Buffer24, sizeof(RGBTRIPLE), (*width) * (*height), fp);
98 *buffer= (LPSTR) malloc(3 * (*width) * (*height));
101 for( x = 0; x < *width; x++ )
103 int Index= y * (*width) + x;
106 Index= ((*height) - 1 - y) * (*width) + x
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 24 APSIntType(uint32_t Width, bool Unsigned)
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
45 /// type's bit width and signedness.
98 /// 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();
  /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 55 /// vector, float) and type bit width.
61 unsigned TypeBitWidth : 24; ///< Type bit width
81 uint32_t TypeBitWidth; ///< Type bit width
115 /// type and bit width were not found in the SmallVector.
119 /// type and bit width were not found in the DenseSet.
206 /// one. This returns false if the integer width is not legal.
208 /// The width is specified in bits.
210 bool isLegalInteger(unsigned Width) const {
212 if (LegalIntWidths[i] == Width)
217 bool isIllegalInteger(unsigned Width) const
    [all...]
  /external/llvm/include/llvm/Object/
RelocVisitor.h 33 // The width of the value; how many bytes to touch when applying the
35 char Width;
36 RelocToApply(const RelocToApply &In) : Value(In.Value), Width(In.Width) {}
37 RelocToApply(int64_t Value, char Width) : Value(Value), Width(Width) {}
38 RelocToApply() : Value(0), Width(0) {}
  /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;

Completed in 2110 milliseconds

1 2 3 4 5 6 7 8 91011>>