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

1 2 3 4 5 6 7 8

  /external/webp/src/mux/
animi.h 30 // x_offset, y_offset, width, height - (in/out) rectangle between the two
36 int is_lossless, float quality, int* const x_offset, int* const y_offset,
  /external/freetype/src/sfnt/
pngshim.h 34 FT_Int x_offset,
  /external/libxcam/xcore/interface/
feature_match.cpp 119 FeatureMatch::adjust_stitch_area (int dst_width, float &x_offset, Rect &stitch0, Rect &stitch1)
121 if (fabs (x_offset) < 5.0f)
125 // int final_overlap_width = stitch1.pos_x + stitch1.width + (dst_width - (stitch0.pos_x - x_offset + stitch0.width));
126 if ((stitch0.pos_x - x_offset + stitch0.width) > dst_width)
127 x_offset = dst_width - (stitch0.pos_x + stitch0.width);
128 int final_overlap_width = last_overlap_width + x_offset;
140 x_offset -= delta_offset;
feature_match.h 80 void adjust_stitch_area (int dst_width, float &x_offset, Rect &stitch0, Rect &stitch1);
  /external/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.h 32 int32_t x_offset() { return x_offset_; } function in class:sfntly::CompositeBitmapGlyph::Component
40 Component(int32_t glyph_code, int32_t x_offset, int32_t y_offset);
composite_bitmap_glyph.cc 84 int32_t x_offset,
86 : glyph_code_(glyph_code), x_offset_(x_offset), y_offset_(y_offset) {
  /external/harfbuzz_ng/src/
sample.py 75 x_offset = pos.x_offset variable
78 print("gid%d=%d@%d,%d+%d" % (gid, cluster, x_advance, x_offset, y_offset))
hb-ot-shape-fallback.cc 210 pos.x_offset = pos.y_offset = 0;
221 pos.x_offset += base_extents.x_bearing + base_extents.width - mark_extents.width / 2 - mark_extents.x_bearing;
224 pos.x_offset += base_extents.x_bearing - mark_extents.width / 2 - mark_extents.x_bearing;
235 pos.x_offset += base_extents.x_bearing + (base_extents.width - mark_extents.width) / 2 - mark_extents.x_bearing;
242 pos.x_offset += base_extents.x_bearing - mark_extents.x_bearing;
249 pos.x_offset += base_extents.x_bearing + base_extents.width - mark_extents.width - mark_extents.x_bearing;
321 base_extents.x_bearing += buffer->pos[base].x_offset;
327 hb_position_t x_offset = 0, y_offset = 0; local
329 x_offset -= buffer->pos[base].x_advance;
377 buffer->pos[i].x_offset += x_offset
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_variance_sse2.c 253 const uint16_t *src, ptrdiff_t src_stride, int x_offset, int y_offset, \
267 const uint8_t *src8, int src_stride, int x_offset, int y_offset, \
273 src, src_stride, x_offset, y_offset, dst, dst_stride, h, &sse, NULL, \
278 src + 16, src_stride, x_offset, y_offset, dst + 16, dst_stride, h, \
284 src + 32, src_stride, x_offset, y_offset, dst + 32, dst_stride, h, \
289 src + 48, src_stride, x_offset, y_offset, dst + 48, dst_stride, h, \
300 const uint8_t *src8, int src_stride, int x_offset, int y_offset, \
307 src, src_stride, x_offset, y_offset, dst, dst_stride, h, &sse, NULL, \
312 src + 16, src_stride, x_offset, y_offset, dst + 16, dst_stride, h, \
318 src + 32, src_stride, x_offset, y_offset, dst + 32, dst_stride, h,
    [all...]
variance_avx2.c 370 int x_offset) {
372 height, sum_reg, sse_reg, x_offset, 1);
418 int x_offset) {
422 (__m256i const *)(bilinear_filters_avx2 + (x_offset << 5)));
469 int x_offset, int y_offset) {
473 (__m256i const *)(bilinear_filters_avx2 + (x_offset << 5)));
521 int x_offset, int y_offset,
530 // x_offset = 0 and y_offset = 0
531 if (x_offset == 0) {
535 // x_offset = 0 and y_offset =
    [all...]
variance_sse2.c 314 const uint8_t *src, ptrdiff_t src_stride, int x_offset, int y_offset, \
329 const uint8_t *src, int src_stride, int x_offset, int y_offset, \
332 int se = vpx_sub_pixel_variance##wf##xh_##opt(src, src_stride, x_offset, \
338 src + 16, src_stride, x_offset, y_offset, dst + 16, dst_stride, h, \
344 src + 32, src_stride, x_offset, y_offset, dst + 32, dst_stride, h, \
349 src + 48, src_stride, x_offset, y_offset, dst + 48, dst_stride, h, \
383 const uint8_t *src, ptrdiff_t src_stride, int x_offset, int y_offset, \
399 const uint8_t *src, int src_stride, int x_offset, int y_offset, \
404 src, src_stride, x_offset, y_offset, dst, dst_stride, sec, w, h, &sse, \
409 src + 16, src_stride, x_offset, y_offset, dst + 16, dst_stride,
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
dcac_prediction.cpp 76 int y_offset, x_offset, x_tab, y_tab, z_tab; /* speedup coefficients */ local
89 x_offset = Xpos[comp];
105 block_B = (comp == 3) ? DC_store[x_offset][z_tab] : mid_gray;
113 block_B = ((comp == 1 && up_bnd) || comp == 3) ? DC_store[y_offset+x_offset][z_tab] : mid_gray;
120 block_A = (comp == 1 || comp == 3 || left_bnd) ? flag_0 = TRUE, DC_store[x_offset][x_tab] : mid_gray;
121 block_B = ((comp == 2 && left_bnd) || comp == 3) ? DC_store[y_offset + x_offset][z_tab] : mid_gray;
129 block_A = (comp == 1 || comp == 3 || left_bnd) ? flag_0 = TRUE, DC_store[x_offset][x_tab] : mid_gray;
131 (comp == 1 && up_bnd) || (comp == 2 && left_bnd) || (comp == 3)) ? DC_store[y_offset+x_offset][z_tab] : mid_gray;
174 QP_tmp = QP_store[x_offset];
246 int y_offset, x_offset, x_tab, y_tab; /* speedup coefficients * local
    [all...]
  /external/webp/src/demux/
anim_decode.c 154 static void ZeroFillFrameRect(uint8_t* buf, int buf_stride, int x_offset,
158 buf += y_offset * buf_stride + x_offset * NUM_CHANNELS;
282 const int src_max_x = src->x_offset + src->width;
283 const int dst_max_x = dst->x_offset + dst->width;
292 src->x_offset >= dst_max_x || src_max_x <= dst->x_offset) {
293 *left1 = src->x_offset;
298 if (src->x_offset < dst->x_offset) {
299 *left1 = src->x_offset;
    [all...]
  /external/ImageMagick/MagickCore/
montage.c 279 ssize_t *x_offset,ssize_t *y_offset,size_t *tiles_per_column,
284 (void) GetGeometry(geometry,x_offset,y_offset,tiles_per_row,tiles_per_column);
400 x_offset,
469 x_offset=0;
472 GetMontageGeometry(montage_info->tile,number_images,&x_offset,&y_offset,
582 x_offset=0;
585 GetMontageGeometry(montage_info->tile,number_images,&x_offset,&y_offset,
602 x_offset+=(ssize_t) (width+2*(extract_info.x+border_width));
603 if (x_offset > (ssize_t) bounds.width)
604 bounds.width=(size_t) x_offset;
395 x_offset, local
    [all...]
  /hardware/qcom/display/msm8909/sdm/libs/utils/
rect.cpp 86 LayerRect Reposition(const LayerRect &rect, const int &x_offset, const int &y_offset) {
93 res.left = rect.left + FLOAT(x_offset);
95 res.right = rect.right + FLOAT(x_offset);
213 int x_offset = INT(src_domain.left); local
216 LayerRect modified_in_rect = Reposition(in_rect, -x_offset, -y_offset);
239 float x_offset = in_rect.left - src_domain.left; local
244 out_rect->right = src_domain.right - x_offset;
  /hardware/qcom/display/msm8909w_3100/sdm/libs/utils/
rect.cpp 81 LayerRect Reposition(const LayerRect &rect, const int &x_offset, const int &y_offset) {
88 res.left = rect.left + FLOAT(x_offset);
90 res.right = rect.right + FLOAT(x_offset);
208 int x_offset = INT(src_domain.left); local
211 LayerRect modified_in_rect = Reposition(in_rect, -x_offset, -y_offset);
234 float x_offset = in_rect.left - src_domain.left; local
239 out_rect->right = src_domain.right - x_offset;
  /hardware/qcom/display/msm8998/sdm/libs/utils/
rect.cpp 81 LayerRect Reposition(const LayerRect &rect, const int &x_offset, const int &y_offset) {
88 res.left = rect.left + FLOAT(x_offset);
90 res.right = rect.right + FLOAT(x_offset);
208 int x_offset = INT(src_domain.left); local
211 LayerRect modified_in_rect = Reposition(in_rect, -x_offset, -y_offset);
234 float x_offset = in_rect.left - src_domain.left; local
239 out_rect->right = src_domain.right - x_offset;
  /frameworks/ex/framesequence/jni/
FrameSequence_webp.cpp 42 const int left = frame.x_offset;
161 const int covered_x_max = covered.x_offset + covered.width;
162 const int target_x_max = target.x_offset + target.width;
165 return target.x_offset <= covered.x_offset
225 Color8888* dst = currBuffer + prevIter.x_offset + prevIter.y_offset * currStride;
236 Color8888* dst = currBuffer + currIter.x_offset + currIter.y_offset * currStride;
259 const int canvasX = currIter.x_offset + x;
276 const int canvasX = currIter.x_offset + x;
  /external/libvpx/libvpx/vp9/common/
vp9_reconinter.h 77 static INLINE int scaled_buffer_offset(int x_offset, int y_offset, int stride,
79 const int x = sf ? sf->scale_value_x(x_offset, sf) : x_offset;
  /external/libpng/contrib/examples/
simpleover.c 103 sprite_op(const struct sprite *sprite, int x_offset, int y_offset,
116 (x_offset < 0 || (unsigned)/*SAFE*/x_offset < sprite->width))
127 if (x_offset < 0)
128 x = -x_offset;
142 ((y+y_offset) * sprite->width + (x+x_offset))*4;
  /external/deqp/external/openglcts/modules/glesext/gpu_shader5/
esextcGPUShader5TextureGatherOffset.cpp 1070 float x_offset; local
1472 glw::GLint x_offset; local
1628 glw::GLint x_offset; local
1841 glw::GLint x_offset; local
2371 glw::GLint x_offset; local
2512 glw::GLint x_offset; local
2695 glw::GLint x_offset; local
2887 glw::GLint x_offset; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_line.c 303 float x_offset=0; local
423 x_offset = - x2diff - 0.5;
424 y_offset = x_offset * dydx;
431 x_offset = - x1diff + 0.5;
432 y_offset = x_offset * dydx;
441 x[0] = subpixel_snap(v1[0][0] + x_offset - setup->pixel_offset);
444 x[3] = subpixel_snap(v1[0][0] + x_offset - setup->pixel_offset);
521 x_offset = y_offset * dxdy;
528 x_offset = y_offset * dxdy;
538 x[0] = subpixel_snap(v1[0][0] + x_offset - setup->pixel_offset) - fixed_width/2
    [all...]
  /external/libpng/
pnginfo.h 173 png_int_32 x_offset; /* x offset on page */ member in struct:png_info_def
  /external/libxcam/modules/soft/
cv_capi_feature_match.h 71 int &valid_count, float &mean_offset, float &x_offset, int dst_width);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
f.cpp 90 const boost::math::ntl::RR& x_offset,

Completed in 845 milliseconds

1 2 3 4 5 6 7 8