HomeSort by relevance Sort by last modified time
    Searched defs:dstWidth (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/effects/
SkTableMaskFilter.cpp 43 int dstWidth = dst->fBounds.width();
44 int extraZeros = dst->fRowBytes - dstWidth;
47 for (int x = dstWidth - 1; x >= 0; --x) {
55 dstP += dstWidth;
SkBlurMask.cpp 761 int dstWidth = dst->fBounds.width();
772 SkAutoTMalloc<uint8_t> horizontalScanline(dstWidth);
774 for (int x = 0 ; x < dstWidth ; ++x) {
776 horizontalScanline[x] = profile_lookup(profile, x, dstWidth, w);
794 for (int x = 0 ; x < dstWidth ; x++) {
808 uint8_t *blur_scanline = dp + (y+pad)*dstWidth + pad;
822 uint8_t *dst_scanline = dp + y*dstWidth + pad;
827 uint8_t *dst_scanline = dp + y*dstWidth + pad;
893 int dstWidth = dst->fBounds.width();
951 uint8_t *outPixel = dstPixels + (x-pad)*dstWidth + y; // transposed outpu
    [all...]
  /external/skia/src/effects/
SkTableMaskFilter.cpp 43 int dstWidth = dst->fBounds.width();
44 int extraZeros = dst->fRowBytes - dstWidth;
47 for (int x = dstWidth - 1; x >= 0; --x) {
55 dstP += dstWidth;
SkBlurMask.cpp 761 int dstWidth = dst->fBounds.width();
772 SkAutoTMalloc<uint8_t> horizontalScanline(dstWidth);
774 for (int x = 0 ; x < dstWidth ; ++x) {
776 horizontalScanline[x] = profile_lookup(profile, x, dstWidth, w);
794 for (int x = 0 ; x < dstWidth ; x++) {
808 uint8_t *blur_scanline = dp + (y+pad)*dstWidth + pad;
822 uint8_t *dst_scanline = dp + y*dstWidth + pad;
827 uint8_t *dst_scanline = dp + y*dstWidth + pad;
893 int dstWidth = dst->fBounds.width();
951 uint8_t *outPixel = dstPixels + (x-pad)*dstWidth + y; // transposed outpu
    [all...]
  /hardware/ti/omap4xxx/libI420colorconvert/
ColorConvert.cpp 33 int dstWidth = srcRect.right - srcRect.left + 1;
35 size_t dst_y_size = dstWidth * dstHeight;
36 size_t dst_uv_stride = dstWidth / 2;
37 size_t dst_uv_size = dstWidth / 2 * dstHeight / 2;
43 memcpy(pDst_y, pSrc_y, dstWidth);
45 pDst_y += dstWidth;
48 size_t tmp = (dstWidth + 1) / 2;
67 int dstWidth, int dstHeight, ARect dstRect,
74 pDst_y += dstWidth;
78 uint8_t* pDst_uv = (uint8_t*)dstBits + dstWidth * dstHeight
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_gen_mipmap.c 223 uint dstWidth, dstHeight, dstDepth;
225 dstWidth = u_minify(pt->width0, dstLevel);
249 _mesa_init_teximage_fields(ctx, dstImage, dstWidth, dstHeight,
  /external/mesa3d/src/mesa/state_tracker/
st_gen_mipmap.c 223 uint dstWidth, dstHeight, dstDepth;
225 dstWidth = u_minify(pt->width0, dstLevel);
249 _mesa_init_teximage_fields(ctx, dstImage, dstWidth, dstHeight,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
DetermineFovActivity.java 230 float dstWidth = drawRect.right - drawRect.left + 1;
232 float centerX = drawRect.left + dstWidth / 2;
238 float focalLength = focalLengthPixels(mFovDegrees, dstWidth);
240 float projectedMarkerLeft = dstWidth / 2 - dx;
241 float projectedMarkerRight = dstWidth / 2 + dx;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blit.c 43 NAME(GLint srcWidth, GLint dstWidth, \
52 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
53 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
73 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
74 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
116 const GLint dstWidth = ABS(dstX1 - dstX0);
142 typedef void (*resample_func)(GLint srcWidth, GLint dstWidth,
258 dstWidth, dstHeight,
273 dstBuffer = malloc(pixelSize * dstWidth);
317 (*resampleRow)(srcWidth, dstWidth, srcBuffer, dstBuffer, invertX)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blit.c 43 NAME(GLint srcWidth, GLint dstWidth, \
52 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
53 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
73 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
74 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
116 const GLint dstWidth = ABS(dstX1 - dstX0);
142 typedef void (*resample_func)(GLint srcWidth, GLint dstWidth,
258 dstWidth, dstHeight,
273 dstBuffer = malloc(pixelSize * dstWidth);
317 (*resampleRow)(srcWidth, dstWidth, srcBuffer, dstBuffer, invertX)
    [all...]
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 357 final int dstWidth = (int) (sBallDiameter * mMetersToPixelsX + 0.5f);
359 mBitmap = Bitmap.createScaledBitmap(ball, dstWidth, dstHeight, true);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mipmap.c 158 GLint dstWidth, GLvoid *dstRow)
160 const GLuint k0 = (srcWidth == dstWidth) ? 0 : 1;
161 const GLuint colStride = (srcWidth == dstWidth) ? 1 : 2;
167 assert(srcWidth == dstWidth || srcWidth == 2 * dstWidth);
175 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
188 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
200 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
211 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
222 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
    [all...]
  /external/mesa3d/src/mesa/main/
mipmap.c 151 GLint dstWidth, GLvoid *dstRow)
153 const GLuint k0 = (srcWidth == dstWidth) ? 0 : 1;
154 const GLuint colStride = (srcWidth == dstWidth) ? 1 : 2;
160 assert(srcWidth == dstWidth || srcWidth == 2 * dstWidth);
168 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
181 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
193 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
204 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
215 for (i = j = 0, k = k0; i < (GLuint) dstWidth;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 364 int dstWidth = image.getWidth();
370 int xStop = dstWidth - right;
382 int lastPixelOffset = right * dstWidth;
386 for (int y = 0, bufferOffset = 0; y < dstHeight; y++, bufferOffset = y * dstWidth) {
415 for (int x = 0, bufferOffset = 0; x < dstWidth; x++, bufferOffset = x) {
418 for (int y = 0; y < shadowSize; y++, bufferOffset += dstWidth) {
426 for (int y = yStart; y < yStop; y++, bufferOffset += dstWidth) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_reg.h 809 uint32 dstWidth;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c     [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_reg.h 809 uint32 dstWidth;
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 1955 milliseconds

1 2