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

1 2 3 4

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_outside.cpp 25 ypos = y half-pixel of (x,y) coordinates within a VOP; motion
79 right boundaries; ypos is compared to the top and bottom boundaries. The number
243 int ypos, /* i */
264 /* saturate xpos and ypos */
267 if (ypos < -16) ypos = -16;
268 if (ypos > ((height - 1) << 1)) ypos = (height - 1) << 1;
272 if (ypos < 0) /* pad top left of frame */
295 ptr = pred + (((ypos >> 1) + 8) << 4) + (xpos >> 1) + 8
    [all...]
mb_motion_comp.cpp 136 int ypos, xpos; local
178 ypos = video->mbnum_row << 4 ;
184 /* ypos*width -> row, +x -> column */
185 offset = (int32)ypos * width + xpos;
191 /* imv = (xpos/8) + ((ypos/8) * mvwidth) */
250 /* luminance_pred_mode_inter4v(xpos, ypos, px, py, c_prev,
257 ypred = (int)((ypos << 1) + py[0]);
293 ypred = (int)((ypos << 1) + py[1]);
329 ypred = (int)(((ypos + B_SIZE) << 1) + py[2]);
366 ypred = (int)(((ypos + B_SIZE) << 1) + py[3])
554 int ypos, xpos; local
    [all...]
conceal.cpp 148 int xpos, ypos, MB_in_width; local
152 ypos = PV_GET_ROW(mbnum, MB_in_width);
153 xpos = mbnum - ypos * MB_in_width;
154 lumstart = (ypos << 4) * (int32)width_Y + (xpos << 4);
155 chrstart = (ypos << 3) * (int32)width_C + (xpos << 3);
mp4dec_lib.h 158 int ypos, /* i */
208 int ypos,
249 int ypos,
  /external/libvpx/libvpx/vp9/encoder/
vp9_skin_detection.c 64 int ypos = y_bsize >> 1; local
89 uint8_t ysource = src_y[ypos * src_ystride + ypos];
92 uint8_t ysource2 = src_y[(ypos + 1) * src_ystride + ypos];
95 uint8_t ysource3 = src_y[ypos * src_ystride + (ypos + 1)];
98 uint8_t ysource4 = src_y[(ypos + 1) * src_ystride + (ypos + 1)];
  /external/opencv3/samples/android/15-puzzle/src/org/opencv/samples/puzzle15/
Puzzle15Activity.java 125 int xpos, ypos; local
130 ypos = (view.getHeight() - mGameHeight) / 2;
131 ypos = (int)event.getY() - ypos;
133 if (xpos >=0 && xpos <= mGameWidth && ypos >=0 && ypos <= mGameHeight) {
135 mPuzzle15.deliverTouchEvent(xpos, ypos);
  /frameworks/av/cmds/screenrecord/
TextRenderer.cpp 254 float xpos, float ypos, const String8& str) {
255 ALOGV("drawWrappedString %.3f,%.3f '%s'", xpos, ypos, str.string());
261 return ypos;
268 if (ypos < mBorderWidth) {
269 ypos = mBorderWidth;
276 return ypos;
281 drawString(texRender, Program::kIdentity, xpos, ypos, str);
282 ypos += getScaledGlyphHeight();
294 drawString(texRender, Program::kIdentity, xposAdj, ypos,
301 drawString(texRender, Program::kIdentity, xposAdj, ypos,
    [all...]
Overlay.cpp 359 float ypos = 0; local
360 ypos = textRenderer.drawWrappedString(texProgram, xpos, ypos,
372 ypos = textRenderer.drawWrappedString(texProgram, xpos, ypos, header);
373 ypos += 8 * textRenderer.getScale(); // slight padding
384 ypos = textRenderer.drawWrappedString(texProgram, xpos, ypos, str);
386 ypos += 8 * textRenderer.getScale(); // slight padding
395 ypos = textRenderer.drawWrappedString(texProgram, xpos, ypos, glStr)
    [all...]
TextRenderer.h 78 float drawWrappedString(const Program& texRender, float xpos, float ypos,
  /external/mesa3d/src/mesa/main/
accum.c 190 GLint xpos, GLint ypos, GLint width, GLint height,
200 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
248 GLint xpos, GLint ypos, GLint width, GLint height,
270 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
278 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
342 GLint xpos, GLint ypos, GLint width, GLint height)
351 ctx->Driver.MapRenderbuffer(ctx, accRb, xpos, ypos, width, height,
372 ctx->Driver.MapRenderbuffer(ctx, colorRb, xpos, ypos, width, height,
455 GLint xpos, ypos, width, height; local
466 ypos = ctx->DrawBuffer->_Ymin
    [all...]
  /external/skia/tests/
SVGDeviceTest.cpp 71 SkAutoTMalloc<SkScalar> ypos(yposCount);
72 SkParse::FindScalars(y, ypos.get(), yposCount);
74 REPORTER_ASSERT(reporter, ypos[0] == offset.y());
77 REPORTER_ASSERT(reporter, ypos[i] == -SkIntToScalar(expected[i]));
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 66 Int xpos, Int ypos, Int *xhmin, Int *yhmin, Int hp_guess)
94 jmin = ypos + (mot[0].y >> 1);
96 jlow = ypos - range;
185 UChar *mode, Int xpos, Int ypos, Int *xhmin, Int *yhmin, UChar *hp_mem)
216 jmin = ypos + ((comp & 2) << 2) + (mot[comp+1].y >> 1);
218 jlow = ypos + ((comp & 2) << 2) - range;
motion_comp.cpp 37 Int EncGetPredOutside(Int xpos, Int ypos, UChar *c_prev, UChar *rec,
104 Int ypos, xpos; local
123 ypos = ind_y << 4 ;
139 ypred = (ypos << 1) + dy ;
152 ypred = ypos + dy;
167 EncPrediction_INTER4V(xpos, ypos, mot, c_prev, c_rec,
178 ypred = ypos + dy;
241 Int ypos, /* i */
252 ypred = (Int)((ypos << 1) + mot[1].y);
260 ypred = (Int)((ypos << 1) + mot[2].y)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 138 float ypos; local
167 ypos = slope * (xpos - segmentStartX) + segmentStartY;
168 plot(xpos, ypos, sample, bitmapSize);
176 ypos = slope * (xpos - segmentStartX) + segmentStartY;
177 plot(xpos, ypos, sample, bitmapSize);
183 ypos = (float) Math.ceil(segmentStartY);
186 while (ypos < segmentEndY) {
187 xpos = invertSlope * (ypos - segmentStartY) + segmentStartX;
188 plot(xpos, ypos, sample, bitmapSize);
189 ypos++
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/pfr/
pfrsbit.c 363 FT_Long xpos, ypos, advance; local
371 ypos = 0;
382 ypos = ( (FT_Char)( c << 4 ) ) >> 4;
388 ypos = PFR_NEXT_INT8( p );
394 ypos = PFR_NEXT_SHORT( p );
400 ypos = PFR_NEXT_LONG( p );
466 *aypos = ypos;
603 FT_Long xpos = 0, ypos = 0, advance = 0; local
630 &xpos, &ypos,
689 ypos > FT_INT_MAX - (FT_Long)ysize |
    [all...]
  /frameworks/native/include/input/
VelocityTracker.h 216 float ypos, yvel, yaccel; member in struct:android::IntegratingVelocityTrackerStrategy::State
223 void initState(State& state, nsecs_t eventTime, float xpos, float ypos) const;
224 void updateState(State& state, nsecs_t eventTime, float xpos, float ypos) const;
  /external/skia/src/gpu/
GrRectanizer_skyline.cpp 51 bool GrRectanizerSkyline::rectangleFits(int skylineIndex, int width, int height, int* ypos) const {
70 *ypos = y;
  /external/wpa_supplicant_8/src/crypto/
aes-gcm.c 148 u8 *ypos = y; local
158 aes_encrypt(aes, cb, ypos);
159 xor_block(ypos, xpos);
161 ypos += AES_BLOCK_SIZE;
170 *ypos++ = *xpos++ ^ tmp[i];
  /external/opencv3/modules/features2d/src/kaze/
nldiffusion_functions.cpp 381 float ypos = (c_curr[j] + c_next[j]) *(ld_next[j] - ld_curr[j]); local
383 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos - yneg);
409 float xneg, xpos, yneg, ypos; local
420 ypos = (ccur[j] + cnxt[j]) * (ldnxt[j] - ldcur[j]);
421 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos);
451 ypos = (ccur[0] + cnxt[0]) * (ldnxt[0] - ldcur[0]);
453 dst[0] = 0.5f*stepsize*(xpos + ypos - yneg);
456 ypos = (ccur[r0] + cnxt[r0]) * (ldnxt[r0] - ldcur[r0]);
458 dst[r0] = 0.5f*stepsize*(-xneg + ypos - yneg);
  /external/libhevc/decoder/
ihevcd_decode.c 490 WORD32 ypos = ps_codec->i4_disp_ht - 32 - LOGO_HT; local
492 if(ypos < 0)
493 ypos = 0;
502 ypos,
866 WORD32 ypos = ps_codec->i4_disp_ht - 32 - LOGO_HT; local
868 if(ypos < 0)
869 ypos = 0;
878 ypos,
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_primary.cpp 137 size_t ypos = line.find('x'); local
139 if (xpos == string::npos || ypos == string::npos) {
143 *curr_y_pixels = static_cast<size_t>(atoi(line.c_str() + ypos + 1));
172 size_t ypos = line.find('x'); local
174 if (xpos == string::npos || ypos == string::npos) {
179 config.y_pixels = UINT32(atoi(line.c_str() + ypos + 1));
  /hardware/qcom/display/msmcobalt/sdm/libs/core/fb/
hw_primary.cpp 121 size_t ypos = line.find('x'); local
123 if (xpos == string::npos || ypos == string::npos) {
127 *curr_y_pixels = static_cast<size_t>(atoi(line.c_str() + ypos + 1));
158 size_t ypos = line.find('x'); local
160 if (xpos == string::npos || ypos == string::npos) {
165 config.y_pixels = UINT32(atoi(line.c_str() + ypos + 1));
  /bionic/libc/kernel/uapi/linux/dvb/
video.h 141 __u32 ypos; member in struct:video_highlight
  /development/ndk/platforms/android-21/include/linux/dvb/
video.h 142 __u32 ypos; member in struct:video_highlight
  /external/kernel-headers/original/uapi/linux/dvb/
video.h 173 __u32 ypos; /* 23-22 auto action mode */ member in struct:video_highlight

Completed in 635 milliseconds

1 2 3 4