Searched defs:border (Results 26 - 50 of 141) sorted by relevance

123456

/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
H A Dyv12config.c51 int width, int height, int border) {
55 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
56 int yplane_size = (aligned_height + 2 * border) * y_stride;
62 int uvplane_size = (uv_height + border) * uv_stride;
73 /* Only support allocating buffers that have a border that's a multiple
74 * of 32. The border restriction is required to get 16-byte alignment of
78 if (border & 0x1f)
97 ybf->border = border;
100 ybf->y_buffer = ybf->buffer_alloc + (border * y_strid
50 vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) argument
111 vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) argument
140 vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, int use_highbitdepth, int border, vpx_codec_frame_buffer_t *fb, vpx_get_frame_buffer_cb_fn_t cb, void *cb_priv) argument
285 vp9_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, int use_highbitdepth, int border) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/
H A Dyv12config.h52 int border; member in struct:yv12_buffer_config
63 int width, int height, int border);
65 int width, int height, int border);
73 int border);
86 int border,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di830_texstate.c128 GLubyte border[4]; local
304 /* convert border color from float to ubyte */
305 CLAMPED_FLOAT_TO_UBYTE(border[0], sampler->BorderColor.f[0]);
306 CLAMPED_FLOAT_TO_UBYTE(border[1], sampler->BorderColor.f[1]);
307 CLAMPED_FLOAT_TO_UBYTE(border[2], sampler->BorderColor.f[2]);
308 CLAMPED_FLOAT_TO_UBYTE(border[3], sampler->BorderColor.f[3]);
310 state[I830_TEXREG_TM0S4] = PACK_COLOR_8888(border[3],
311 border[0],
312 border[1],
313 border[
[all...]
H A Di915_texstate.c146 GLubyte border[4]; local
291 * result in sampling border values if we don't set the T wrap to
297 /* 3D textures don't seem to respect the border color.
358 /* convert border color from float to ubyte */
359 CLAMPED_FLOAT_TO_UBYTE(border[0], sampler->BorderColor.f[0]);
360 CLAMPED_FLOAT_TO_UBYTE(border[1], sampler->BorderColor.f[1]);
361 CLAMPED_FLOAT_TO_UBYTE(border[2], sampler->BorderColor.f[2]);
362 CLAMPED_FLOAT_TO_UBYTE(border[3], sampler->BorderColor.f[3]);
365 /* GL specs that border color for depth textures is taken from the
369 state[I915_TEXREG_SS4] = PACK_COLOR_8888(border[
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_gen_mipmap.c222 uint border = srcImage->Border; local
250 dstDepth, border, srcImage->InternalFormat,
/external/chromium_org/ui/views/controls/button/
H A Dlabel_button_border.cc18 #include "ui/views/border.h"
35 void PaintHelper(LabelButtonBorder* border, argument
41 border->GetPainter(extra.button.is_focused,
45 painter = border->GetPainter(false, Button::GetButtonStateFrom(state));
/external/chromium_org/ui/views/window/
H A Ddialog_delegate_unittest.cc192 const int border = frame->bubble_border()->GetBorderThickness(); local
198 { border, HTSYSMENU },
199 { border + 10, HTSYSMENU },
200 { border + 20, HTCAPTION },
201 { border + 40, HTCLIENT },
202 { border + 50, HTCLIENT },
209 << " with border: " << border << ", at point " << cases[i].point;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java32 public HTMLTable (final String width, final String border, final String cellpadding, final String cellspacing) argument
39 if (border != null) attrs.set (Attribute.BORDER, border);
/external/libvpx/libvpx/vpx_scale/generic/
H A Dyv12config.c48 int width, int height, int border) {
52 int y_stride = ((aligned_width + 2 * border) + 31) & ~31;
53 int yplane_size = (aligned_height + 2 * border) * y_stride;
59 int uvplane_size = (uv_height + border) * uv_stride;
70 /* Only support allocating buffers that have a border that's a multiple
71 * of 32. The border restriction is required to get 16-byte alignment of
75 if (border & 0x1f)
92 ybf->border = border;
95 ybf->y_buffer = ybf->buffer_alloc + (border * y_strid
47 vp8_yv12_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) argument
106 vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) argument
135 vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, int border, vpx_codec_frame_buffer_t *fb, vpx_get_frame_buffer_cb_fn_t cb, void *cb_priv) argument
242 vp9_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, int border) argument
[all...]
/external/libvpx/libvpx/vpx_scale/
H A Dyv12config.h51 int border; member in struct:yv12_buffer_config
59 int width, int height, int border);
61 int width, int height, int border);
66 int border);
76 int border,
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di830_texstate.c128 GLubyte border[4]; local
304 /* convert border color from float to ubyte */
305 CLAMPED_FLOAT_TO_UBYTE(border[0], sampler->BorderColor.f[0]);
306 CLAMPED_FLOAT_TO_UBYTE(border[1], sampler->BorderColor.f[1]);
307 CLAMPED_FLOAT_TO_UBYTE(border[2], sampler->BorderColor.f[2]);
308 CLAMPED_FLOAT_TO_UBYTE(border[3], sampler->BorderColor.f[3]);
310 state[I830_TEXREG_TM0S4] = PACK_COLOR_8888(border[3],
311 border[0],
312 border[1],
313 border[
[all...]
H A Di915_texstate.c146 GLubyte border[4]; local
291 * result in sampling border values if we don't set the T wrap to
297 /* 3D textures don't seem to respect the border color.
358 /* convert border color from float to ubyte */
359 CLAMPED_FLOAT_TO_UBYTE(border[0], sampler->BorderColor.f[0]);
360 CLAMPED_FLOAT_TO_UBYTE(border[1], sampler->BorderColor.f[1]);
361 CLAMPED_FLOAT_TO_UBYTE(border[2], sampler->BorderColor.f[2]);
362 CLAMPED_FLOAT_TO_UBYTE(border[3], sampler->BorderColor.f[3]);
365 /* GL specs that border color for depth textures is taken from the
369 state[I915_TEXREG_SS4] = PACK_COLOR_8888(border[
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_gen_mipmap.c222 uint border = srcImage->Border; local
250 dstDepth, border, srcImage->InternalFormat,
/external/chromium_org/cc/layers/
H A Dnine_patch_layer_impl.cc48 const gfx::Rect& border,
55 border_ == border && fill_center_ == fill_center)
59 border_ = border;
66 // |border| is in layer space. It cannot exceed the bounds of the layer.
70 // Sanity Check on |border|
109 // NinePatch border widths in layer space.
47 SetLayout(const gfx::Rect& aperture, const gfx::Rect& border, bool fill_center) argument
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_border.cc72 scoped_ptr<views::LabelButtonBorder> border)
75 border_(border.Pass()),
70 Gtk2Border(Gtk2UI* gtk2_ui, views::LabelButton* owning_button, scoped_ptr<views::LabelButtonBorder> border) argument
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dbrowser_action_view.cc250 scoped_ptr<LabelButtonBorder> border = LabelButton::CreateDefaultBorder(); local
251 border->set_insets(gfx::Insets(kBorderInset, kBorderInset,
253 return border.Pass();
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_textures.cc572 GLint border = 0; local
591 border,
618 GLint border = 0; local
631 target, level, internal_format, 0, 0, width, height, border))
H A Dmailbox_manager_unittest.cc63 GLint border,
74 border,
55 SetLevelInfo( Texture* texture, GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, bool cleared) argument
/external/chromium_org/mojo/examples/media_viewer/
H A Dmedia_viewer.cc38 #include "ui/views/border.h"
95 scoped_ptr<views::Painter> CreatePainter(SkColor border, SkColor background) { argument
102 paint.setColor(border);
/external/chromium_org/ash/ime/
H A Dcandidate_window_view.cc16 #include "ui/views/border.h"
88 // InformationTextArea's border is drawn as a separator, it should appear
121 // Sets the border thickness for top/bottom.
155 // Set the background and the border of the view.
308 CandidateWindowBorder* border = static_cast<CandidateWindowBorder*>( local
311 border->set_offset(max_shortcut_width);
313 border->set_offset(0);
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_avatar_icon_util.cc41 // optional border independently of the scale factor.
59 AvatarBorder border);
80 AvatarBorder border)
86 border_(border) {
110 // The border should be square.
112 // Reset the x and y for the square border.
117 // Draw a gray border on the inside of the avatar.
120 // Offset the rectangle by a half pixel so the border is drawn within the
218 // Source for a centered, sized icon. GAIA images get a border.
246 // The image requires no border o
76 AvatarImageSource(gfx::ImageSkia avatar, const gfx::Size& canvas_size, int width, AvatarPosition position, AvatarBorder border) argument
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_file_io.cc783 const char* border = "__border__"; local
784 const int32_t border_size = strlen(border);
791 memcpy(&extended_buf_1[0], border, border_size);
792 memcpy(buf_1 + size_1, border, border_size);
799 memcpy(&extended_buf_2[0], border, border_size);
800 memcpy(buf_2 + size_2, border, border_size);
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c421 int border) {
431 border);
446 border);
416 vp9_denoiser_alloc(VP9_DENOISER *denoiser, int width, int height, int ssx, int ssy, int use_highbitdepth, int border) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_state_derived.c603 const float border[4],
616 return util_pack_z(PIPE_FORMAT_Z16_UNORM, border[0]);
620 return util_pack_z(PIPE_FORMAT_X8Z24_UNORM, border[0]);
622 return util_pack_z(PIPE_FORMAT_Z16_UNORM, border[0]) << 16;
631 util_format_unswizzle_4f(border_swizzled, border, desc->swizzle);
645 /* Add 1/32 to round the border color instead of truncating. */
646 /* The Y component is used for the border color. */
776 /* Set the border color. */
602 r300_get_border_color(enum pipe_format format, const float border[4], boolean is_r500) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
H A Dnative_ximage.c102 unsigned int w, h, border, depth; local
105 &root, &x, &y, &w, &h, &border, &depth);

Completed in 935 milliseconds

123456