Searched defs:border (Results 1 - 25 of 75) sorted by relevance

123

/external/opencv3/modules/imgproc/perf/
H A Dperf_sepfilters.cpp45 BorderType3x3 border = get<3>(GetParam()); local
52 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 3, 1, 0, border);
70 BorderType3x3ROI border = get<3>(GetParam()); local
80 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 3, 1, 0, border);
98 BorderType border = get<3>(GetParam()); local
105 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 5, 1, 0, border);
123 BorderTypeROI border = get<3>(GetParam()); local
133 TEST_CYCLE() Sobel(src, dst, ddepth, dx, dy, 5, 1, 0, border);
153 BorderType3x3 border = get<3>(GetParam()); local
160 TEST_CYCLE() Scharr(src, dst, ddepth, dx, dy, 1, 0, border);
178 BorderType3x3ROI border = get<3>(GetParam()); local
206 BorderType3x3 border = get<3>(GetParam()); local
231 BorderType3x3ROI border = get<3>(GetParam()); local
[all...]
/external/skia/tools/
H A Dskpmaker.cpp23 DEFINE_int32(border, 4, "Width of the black border around the image.");
30 // Create a 'width' by 'height' skp with a 'border'-wide black border around
32 static void make_skp(SkScalar width, SkScalar height, SkScalar border, SkColor color, argument
42 r.inset(border, border);
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dwindow_capture_utils.cc33 DesktopSize border = DesktopSize(GetSystemMetrics(SM_CXSIZEFRAME), local
36 rect.left + border.width(),
38 rect.right - border.width(),
39 rect.bottom - border.height());
/external/freetype/src/gzip/
H A Dinfblock.c18 local const uInt border[] = { /* Order of the bit length code lengths */ variable
242 s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
246 s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
/external/giflib/
H A Dgif_font.c209 const int border,
230 border + TextWidth * GIF_FONT_WIDTH + border - 1,
231 border + LineCount * GIF_FONT_HEIGHT + border - 1, bg);
242 GifDrawText8x8(Image, x + border + (leadspace * GIF_FONT_WIDTH),
243 y + border + (GIF_FONT_HEIGHT * i++), cp, fg);
248 GifDrawBox(Image, x, y, border + TextWidth * GIF_FONT_WIDTH + border,
249 border
206 GifDrawBoxedText8x8(SavedImage *Image, const int x, const int y, const char *legend, const int border, const int bg, const int fg) argument
[all...]
/external/mesa3d/src/glx/
H A Dindirect_texture_compression.c79 GLint border, GLsizei image_size,
106 __GLX_PUT_LONG(24, border);
123 __GLX_PUT_LONG(28, border);
196 GLint border, GLsizei image_size,
200 border, image_size, data,
209 GLint border, GLsizei image_size,
213 border, image_size, data,
222 GLsizei depth, GLint border,
241 __GLX_PUT_LONG(28, border);
257 __GLX_PUT_LONG(32, border);
76 CompressedTexImage1D2D(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const GLvoid * data, CARD32 rop) argument
194 __indirect_glCompressedTexImage1DARB(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLint border, GLsizei image_size, const GLvoid * data) argument
206 __indirect_glCompressedTexImage2DARB(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLint border, GLsizei image_size, const GLvoid * data) argument
219 __indirect_glCompressedTexImage3DARB(GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei image_size, const GLvoid * data) argument
[all...]
/external/opencv3/modules/cudaarithm/test/
H A Dtest_core.cpp372 int border; local
381 border = GET_PARAM(3);
394 cv::cuda::GpuMat dst = createMat(cv::Size(size.width + 2 * border, size.height + 2 * border), type, useRoi);
395 cv::cuda::copyMakeBorder(loadMat(src, useRoi), dst, border, border, border, border, borderType, val); local
398 cv::copyMakeBorder(src, dst_gold, border, border, borde
[all...]
/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)
94 ybf->border = border;
97 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
108 vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) argument
137 vpx_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, int use_highbitdepth, int border, int byte_alignment, vpx_codec_frame_buffer_t *fb, vpx_get_frame_buffer_cb_fn_t cb, void *cb_priv) argument
285 vpx_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int ss_x, int ss_y, int use_highbitdepth, int border, int byte_alignment) argument
[all...]
/external/libvpx/libvpx/vpx_scale/
H A Dyv12config.h53 int border; member in struct:yv12_buffer_config
70 int width, int height, int border);
72 int width, int height, int border);
80 int border, int byte_alignment);
94 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/opencv3/modules/cudafilters/test/
H A Dtest_filters.cpp636 cv::Size border = cv::Size(kernel.cols + (iterations + 1) * kernel.cols + 2, kernel.rows + (iterations + 1) * kernel.rows + 2); local
638 EXPECT_MAT_NEAR(getInnerROI(dst_gold, border), getInnerROI(dst, border), 0.0);
/external/skia/gm/
H A Dimagescalealigned.cpp81 const SkRect border = SkRect::MakeIWH(kSegLen, kSegLen).makeInset(.5f, .5f); local
84 surface->getCanvas()->drawRect(border, paint);
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_imgproc.cpp67 int, // border type
111 BorderType, // border type
117 TestUtils::Border border; local
136 border = randomBorder(0, MAX_VALUE << 2);
144 dstBorder.top += border.top;
145 dstBorder.lef += border.lef;
146 dstBorder.rig += border.rig;
147 dstBorder.bot += border.bot;
167 OCL_OFF(cv::copyMakeBorder(src_roi, dst_roi, border.top, border
[all...]
/external/pdfium/xfa/src/fxfa/src/app/
H A Dxfa_ffpushbutton.cpp124 CXFA_Border border = m_pDataAcc->GetBorder(); local
125 if (border.IsExistInXML() &&
126 (border.GetPresence() == XFA_ATTRIBUTEENUM_Visible)) {
127 CXFA_Edge edge = border.GetEdge(0);
/external/skia/samplecode/
H A DSampleAtlas.cpp194 const SkScalar border = kMaxScale * kCellSize; variable
196 r.outset(border, border);
/external/libvncserver/libvncserver/
H A Dselbox.c207 int border,SelectionChangedHookPtr selChangedHook)
226 if(y2-y1<selData.textH*2+3*border)
230 selData.x1 = x1+border;
231 selData.y1 = y1+border;
232 selData.y2 = y2-selData.textH-3*border;
233 selData.x2 = x2-2*border;
238 selData.buttonWidth= k = 4*border+(i<j?j:i);
240 if(selData.okBX<x1+border) /* too narrow! */
245 selData.okY = y2-border;
203 rfbSelectBox(rfbScreenInfoPtr rfbScreen,rfbFontDataPtr font, char** list, int x1,int y1,int x2,int y2, rfbPixel colour,rfbPixel backColour, int border,SelectionChangedHookPtr selChangedHook) argument
/external/mesa3d/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/mesa3d/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);
H A Dx11_screen.c197 unsigned int w, h, border; local
201 &x, &y, &w, &h, &border, &depth);
/external/opencv3/modules/ts/include/opencv2/ts/
H A Docl_test.hpp260 Border border = { local
266 return border;
269 void randomSubMat(Mat& whole, Mat& subMat, const Size& roiSize, const Border& border, int type, double minVal, double maxVal) argument
271 Size wholeSize = Size(roiSize.width + border.lef + border.rig, roiSize.height + border.top + border.bot);
273 subMat = whole(Rect(border.lef, border.top, roiSize.width, roiSize.height));
/external/toybox/kconfig/lxdialog/
H A Ddialog.h109 struct dialog_color border; member in struct:dialog_info
199 chtype border);
/external/aac/libSBRdec/src/
H A Denv_extr.cpp914 /* open and close frame border */
995 int pointer_bits = 0, nEnv = 0, b = 0, border, i, n = 0, local
1108 pFrameInfo->borders[0] = 0; /* first border */
1109 border = temp + numberTimeSlots; /* A -> aR */
1110 i = b-1; /* frame info index for last border */
1111 pFrameInfo->borders[i] = border; /* last border */
1115 border -= (2 * temp + 2); /* R -> r */
1116 pFrameInfo->borders[--i] = border;
1136 /* Calculate noise floor middle border
[all...]

Completed in 831 milliseconds

123