Searched refs:Width (Results 1 - 25 of 502) sorted by relevance

1234567891011>>

/external/sfntly/cpp/src/test/
H A Dhdmx_test.cc52 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(
[all...]
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp40 uint64_t Width = Target.getTypeWidth(PtrDiff); local
43 Width = 2 * Width;
44 return std::make_pair(Width, Align);
H A DMicrosoftCXXABI.cpp172 uint64_t Width = Ptrs * PtrSize + Ints * IntSize; local
174 Width = llvm::RoundUpToAlignment(Width, Align);
175 return std::make_pair(Width, Align);
/external/chromium/chrome/browser/ui/gtk/
H A Dcairo_cached_surface.h34 int Width() const;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dlines.c71 if (ctx->Line.Width == width)
75 ctx->Line.Width = width;
131 ctx->Line.Width = 1.0;
H A Dscissor.c72 width == ctx->Scissor.Width &&
79 ctx->Scissor.Width = width;
98 ctx->Scissor.Width = 0;
H A Dviewport.c81 ctx->Viewport.Width = width;
93 ctx->Viewport.Width, ctx->Viewport.Height,
139 ctx->Viewport.Width, ctx->Viewport.Height,
166 ctx->Viewport.Width = 0;
/external/libvpx/libvpx/vp8/common/arm/
H A Dbilinearfilter_arm.c25 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/mesa3d/src/mesa/main/
H A Dlines.c71 if (ctx->Line.Width == width)
75 ctx->Line.Width = width;
131 ctx->Line.Width = 1.0;
H A Dscissor.c72 width == ctx->Scissor.Width &&
79 ctx->Scissor.Width = width;
98 ctx->Scissor.Width = 0;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texture.c70 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/
H A Ds_texture.c70 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/
H A Dconvolve_test.cc198 int Width() const { return GET_PARAM(0); } function in class:__anon20535::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/chromium_org/chrome/test/chromedriver/
H A Dbasic_types.h36 int Width() const;
H A Dbasic_types.cc38 int WebRect::Width() const { return size.width; } function in class:WebRect
/external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/Win32/
H A DesUtil_TGA.c40 Width, member in struct:__anon10529
81 *width = Header.Width;
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsmall_glyph_metrics.h50 int32_t Width();
70 int32_t Width();
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglmode.c93 mode->Width = EGL_DONT_CARE;
110 mode->Width = attrib_list[++i];
111 if (mode->Width <= 0) {
163 if (min->Width != EGL_DONT_CARE && c->Width < min->Width)
188 return m->Width;
H A Deglmode.h49 EGLint Width, Height; /* size in pixels */ member in struct:_egl_mode
/external/llvm/include/llvm/IR/
H A DDataLayout.h210 bool isLegalInteger(unsigned Width) const {
212 if (LegalIntWidths[i] == Width)
217 bool isIllegalInteger(unsigned Width) const {
218 return !isLegalInteger(Width);
230 bool fitsInLegalInteger(unsigned Width) const {
232 if (Width <= LegalIntWidths[i])
369 /// least as big as Width bits.
370 Type *getSmallestLegalIntType(LLVMContext &C, unsigned Width = 0) const;
/external/mesa3d/src/egl/main/
H A Deglmode.c93 mode->Width = EGL_DONT_CARE;
110 mode->Width = attrib_list[++i];
111 if (mode->Width <= 0) {
163 if (min->Width != EGL_DONT_CARE && c->Width < min->Width)
188 return m->Width;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGForeignObjectElement.h53 DECLARE_ANIMATED_LENGTH(Width, width)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_tex_copy.c81 assert(timg->base.Base.Width >= dstx + width);
92 x, y, rrb->base.Base.Width, rrb->base.Base.Height, (uint32_t) src_offset, rrb->pitch/rrb->cpp);
129 rrb->base.Base.Width, rrb->base.Base.Height, x, y,
132 timg->base.Base.Width, timg->base.Base.Height,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_tex_copy.c81 assert(timg->base.Base.Width >= dstx + width);
92 x, y, rrb->base.Base.Width, rrb->base.Base.Height, (uint32_t) src_offset, rrb->pitch/rrb->cpp);
129 rrb->base.Base.Width, rrb->base.Base.Height, x, y,
132 timg->base.Base.Width, timg->base.Base.Height,
/external/chromium_org/third_party/skia/include/ports/
H A DSkFontStyle.h27 enum Width { enum in class:SkFontStyle

Completed in 1577 milliseconds

1234567891011>>