Home
last modified time | relevance | path

Searched refs:width (Results 1 – 25 of 1980) sorted by relevance

12345678910>>...80

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_conceal.c130 u32 width, height; in h264bsdConceal() local
142 width = currImage->width; in h264bsdConceal()
164 if (col == width) in h264bsdConceal()
176 H264SwDecMemset(currImage->data, 128, width*height*384); in h264bsdConceal()
178 H264SwDecMemcpy(currImage->data, refData, width*height*384); in h264bsdConceal()
191 mb = pStorage->mb + row * width; in h264bsdConceal()
198 for (j = col + 1; j < width; j++) in h264bsdConceal()
210 for (j = 0; j < width; j++) in h264bsdConceal()
213 mb = pStorage->mb + i*width + j; in h264bsdConceal()
219 mb -= width; in h264bsdConceal()
[all …]
Dh264bsd_reconstruct.c115 u32 width, in h264bsdInterpolateChromaHor() argument
137 if ((x0 < 0) || ((u32)x0+chromaPartWidth+1 > width) || in h264bsdInterpolateChromaHor()
140 h264bsdFillBlock(pRef, block, x0, y0, width, height, in h264bsdInterpolateChromaHor()
142 pRef += width * height; in h264bsdInterpolateChromaHor()
144 x0, y0, width, height, chromaPartWidth + 1, in h264bsdInterpolateChromaHor()
150 width = chromaPartWidth+1; in h264bsdInterpolateChromaHor()
159 ptrA = pRef + (comp * height + (u32)y0) * width + x0; in h264bsdInterpolateChromaHor()
168 tmp1 = ptrA[width]; in h264bsdInterpolateChromaHor()
170 tmp3 = ptrA[width]; in h264bsdInterpolateChromaHor()
178 tmp1 = ptrA[width]; in h264bsdInterpolateChromaHor()
[all …]
/frameworks/base/graphics/java/android/graphics/
DAtlas.java83 public Atlas(Type type, int width, int height) { in Atlas() argument
84 this(type, width, height, FLAG_DEFAULTS); in Atlas()
100 public Atlas(Type type, int width, int height, int flags) { in Atlas() argument
101 mPolicy = findPolicy(type, width, height, flags); in Atlas()
115 public Entry pack(int width, int height) { in pack() argument
116 return pack(width, height, null); in pack()
132 public Entry pack(int width, int height, Entry entry) { in pack() argument
134 return mPolicy.pack(width, height, entry); in pack()
137 private static Policy findPolicy(Type type, int width, int height, int flags) { in findPolicy() argument
140 return new SlicePolicy(width, height, flags, in findPolicy()
[all …]
DBitmap.java111 Bitmap(long nativeBitmap, byte[] buffer, int width, int height, int density, in Bitmap() argument
118 mWidth = width; in Bitmap()
152 void reinit(int width, int height, boolean requestPremultiplied) { in reinit() argument
153 mWidth = width; in reinit()
251 public void reconfigure(int width, int height, Config config) { in reconfigure() argument
253 if (width <= 0 || height <= 0) { in reconfigure()
263 nativeReconfigure(mNativePtr, width, height, config.nativeInt, in reconfigure()
265 mWidth = width; in reconfigure()
281 public void setWidth(int width) { in setWidth() argument
282 reconfigure(width, getHeight(), getConfig()); in setWidth()
[all …]
DYuvImage.java79 public YuvImage(byte[] yuv, int format, int width, int height, int[] strides) { in YuvImage() argument
87 if (width <= 0 || height <= 0) { in YuvImage()
97 mStrides = calculateStrides(width, format); in YuvImage()
104 mWidth = width; in YuvImage()
141 return nativeCompressToJpeg(mData, mFormat, rectangle.width(), in compressToJpeg()
199 private int[] calculateStrides(int width, int format) { in calculateStrides() argument
202 strides = new int[] {width, width}; in calculateStrides()
207 strides = new int[] {width * 2}; in calculateStrides()
215 int width = rect.width(); in adjustRectangle() local
219 width &= ~1; in adjustRectangle()
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dchv_filter.cpp178 int width, in CombinedHorzVertFilter() argument
198 pp_w = (width >> 3); in CombinedHorzVertFilter()
232 jVal0 = *(ptr - width); /* C */ in CombinedHorzVertFilter()
241 *(ptr - width) = (uint8)(jVal0); /* C */ in CombinedHorzVertFilter()
244 jVal0 = *(ptr - (width << 1)); /* B */ in CombinedHorzVertFilter()
245 jVal1 = *(ptr + width); /* E */ in CombinedHorzVertFilter()
252 … *(ptr - (width << 1)) = (uint8)jVal0; /* store B */ in CombinedHorzVertFilter()
253 *(ptr + width) = (uint8)jVal1; /* store E */ in CombinedHorzVertFilter()
259 … *(ptr - (width << 1)) = (uint8)jVal0; /* store B */ in CombinedHorzVertFilter()
260 *(ptr + width) = (uint8)jVal1; /* store E */ in CombinedHorzVertFilter()
[all …]
Dmb_motion_comp.cpp140 int height, width, pred_width; in MBMotionComp() local
169 width = video->width; in MBMotionComp()
185 offset = (int32)ypos * width + xpos; in MBMotionComp()
267 pred_width = width; in MBMotionComp()
271 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) && in MBMotionComp()
277 GetPredAdvBTable[ypred&1][xpred&1](c_prev + (xpred >> 1) + ((ypred >> 1)*width), in MBMotionComp()
278 pred, width, (pred_width << 1) | round1); in MBMotionComp()
285 pred, width, height, round1, pred_width); in MBMotionComp()
303 pred_width = width; in MBMotionComp()
307 if (xpred >= 0 && xpred <= ((width << 1) - (2*B_SIZE)) && in MBMotionComp()
[all …]
Dmb_utils.cpp25 void PutSKIPPED_MB(uint8 *comp, uint8 *prev, int width) in PutSKIPPED_MB() argument
42 comp += width; in PutSKIPPED_MB()
43 prev += width; in PutSKIPPED_MB()
53 comp += width; in PutSKIPPED_MB()
54 prev += width; in PutSKIPPED_MB()
64 comp += width; in PutSKIPPED_MB()
65 prev += width; in PutSKIPPED_MB()
74 comp += width; in PutSKIPPED_MB()
75 prev += width; in PutSKIPPED_MB()
86 void PutSKIPPED_B(uint8 *comp, uint8 *prev, int width) in PutSKIPPED_B() argument
[all …]
Dderinging_chroma.cpp25 int width, in Deringing_Chroma() argument
47 incr = width - BLKSIZE; in Deringing_Chroma()
54 for (h_blk = 0; h_blk < width; h_blk += BLKSIZE) in Deringing_Chroma()
59 FindMaxMin(ptr, &min_blk, &max_blk, width); in Deringing_Chroma()
69 addr_v = (int32)v_pel * width; in Deringing_Chroma()
74 pelu = *(ptr - width); in Deringing_Chroma()
76 pell = *(ptr + width); in Deringing_Chroma()
81 pelu = *(ptr - width); in Deringing_Chroma()
83 pell = *(ptr + width); in Deringing_Chroma()
90 pelu = *(ptr - width); in Deringing_Chroma()
[all …]
Dpost_filter.cpp43 int width, height; in PostFilter() local
50 width = video->width; in PostFilter()
52 size = (int32)width * height; in PostFilter()
75 CombinedHorzVertRingFilter(output, width, height, QP_store, 0, pp_mod); in PostFilter()
83 CombinedHorzVertFilter(output, width, height, in PostFilter()
88 CombinedHorzVertFilter_NoSoftDeblocking(output, width, height, in PostFilter()
94 Deringing_Luma(output, width, height, QP_store, in PostFilter()
107 …CombinedHorzVertRingFilter(output, (int)(width >> 1), (int)(height >> 1), QP_store, (int) 1, pp_mo… in PostFilter()
115 CombinedHorzVertFilter(output, (int)(width >> 1), in PostFilter()
120 CombinedHorzVertFilter_NoSoftDeblocking(output, (int)(width >> 1), in PostFilter()
[all …]
Dblock_idct.cpp123 static void idctrow(int16 *blk, uint8 *pred, uint8 *dst, int width);
124 static void idctrow_intra(int16 *blk, PIXEL *, int width);
231 int width, width_uv; in MBlockIDCT() local
233 width = video->width; in MBlockIDCT()
234 width_uv = width >> 1; in MBlockIDCT()
235 offset = (int32)(y_pos << 4) * width + (x_pos << 4); in MBlockIDCT()
241 BlockIDCT_intra(mblock, c_comp, 0, width); in MBlockIDCT()
242 BlockIDCT_intra(mblock, c_comp + 8, 1, width); in MBlockIDCT()
243 BlockIDCT_intra(mblock, c_comp + (width << 3), 2, width); in MBlockIDCT()
244 BlockIDCT_intra(mblock, c_comp + (width << 3) + 8, 3, width); in MBlockIDCT()
[all …]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DColorSpace.java42 ByteBuffer input, ByteBuffer output, int width, int height) { in convertYuv420pToRgba8888() argument
43 expectInputSize(input, (3 * width * height) / 2); in convertYuv420pToRgba8888()
44 expectOutputSize(output, width * height * 4); in convertYuv420pToRgba8888()
45 nativeYuv420pToRgba8888(input, output, width, height); in convertYuv420pToRgba8888()
61 ByteBuffer input, ByteBuffer output, int width, int height) { in convertArgb8888ToRgba8888() argument
62 expectInputSize(input, width * height * 4); in convertArgb8888ToRgba8888()
63 expectOutputSize(output, width * height * 4); in convertArgb8888ToRgba8888()
64 nativeArgb8888ToRgba8888(input, output, width, height); in convertArgb8888ToRgba8888()
80 ByteBuffer input, ByteBuffer output, int width, int height) { in convertRgba8888ToHsva8888() argument
81 expectInputSize(input, width * height * 4); in convertRgba8888ToHsva8888()
[all …]
/frameworks/base/core/tests/coretests/src/android/text/
DPackedIntVectorTest.java27 for (int width = 0; width < 10; width++) { in testBasic()
28 PackedIntVector p = new PackedIntVector(width); in testBasic()
29 int[] ins = new int[width]; in testBasic()
31 for (int height = width * 2; height < width * 4; height++) { in testBasic()
32 assertEquals(p.width(), width); in testBasic() local
45 for (int j = 0; j < width; j++) { in testBasic()
57 for (int j = 0; j < width; j++) { in testBasic()
69 for (int j = 0; j < width; j++) { in testBasic()
78 for (int j = 0; j < width; j++) { in testBasic()
83 for (int j = 0; j < width; j++) { in testBasic()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DLaunchingTaskPositioner.java94 int width = mAvailableRect.width(); in configure() local
96 mDefaultFreeformStartX = mAvailableRect.left + width / MARGIN_SIZE_DENOMINATOR; in configure()
98 mDefaultFreeformWidth = width / WINDOW_SIZE_DENOMINATOR; in configure()
100 mDefaultFreeformStepHorizontal = Math.max(width / STEP_DENOMINATOR, MINIMAL_STEP); in configure()
124 int width = getFinalWidth(windowLayout); in updateDefaultBounds() local
130 positionTopRight(task, tasks, width, height); in updateDefaultBounds()
132 positionTopLeft(task, tasks, width, height); in updateDefaultBounds()
136 positionBottomRight(task, tasks, width, height); in updateDefaultBounds()
138 positionBottomLeft(task, tasks, width, height); in updateDefaultBounds()
145 positionCenter(task, tasks, width, height); in updateDefaultBounds()
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DBitmapMeshLayerActivity.java49 final float width = mBitmap1.getWidth() / 3.0f; in BitmapMeshView() local
53 0.0f, 0.0f, width, 0.0f, width * 2, 0.0f, width * 3, 0.0f, in BitmapMeshView()
54 0.0f, height, width, height, width * 2, height, width * 4, height, in BitmapMeshView()
55 0.0f, height * 2, width, height * 2, width * 2, height * 2, width * 3, height * 2, in BitmapMeshView()
56 0.0f, height * 4, width, height * 4, width * 2, height * 4, width * 4, height * 4, in BitmapMeshView()
DBitmapMeshActivity.java48 final float width = mBitmap1.getWidth() / 3.0f; in BitmapMeshView() local
52 0.0f, 0.0f, width, 0.0f, width * 2, 0.0f, width * 3, 0.0f, in BitmapMeshView()
53 0.0f, height, width, height, width * 2, height, width * 4, height, in BitmapMeshView()
54 0.0f, height * 2, width, height * 2, width * 2, height * 2, width * 3, height * 2, in BitmapMeshView()
55 0.0f, height * 4, width, height * 4, width * 2, height * 4, width * 4, height * 4, in BitmapMeshView()
/frameworks/base/docs/html/ndk/reference/
Dfiles.jd13 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
14 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
15 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
16 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
17 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
18 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
19 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
20 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
21 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
22 …class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><img src="ftv2doc.png" alt=…
[all …]
/frameworks/base/core/java/android/hardware/camera2/
DDngCreator.java169 int width = pixels.getWidth(); in setThumbnail() local
172 if (width > MAX_THUMBNAIL_DIMENSION || height > MAX_THUMBNAIL_DIMENSION) { in setThumbnail()
173 throw new IllegalArgumentException("Thumbnail dimensions width,height (" + width + in setThumbnail()
179 nativeSetThumbnail(rgbBuffer, width, height); in setThumbnail()
210 int width = pixels.getWidth(); in setThumbnail() local
213 if (width > MAX_THUMBNAIL_DIMENSION || height > MAX_THUMBNAIL_DIMENSION) { in setThumbnail()
214 throw new IllegalArgumentException("Thumbnail dimensions width,height (" + width + in setThumbnail()
220 nativeSetThumbnail(rgbBuffer, width, height); in setThumbnail()
324 int width = size.getWidth(); in writeInputStream() local
326 if (width <= 0 || height <= 0) { in writeInputStream()
[all …]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
DUT_alloc_copyPadded.java84 int width = random.nextInt(512); in testAllocation_Byte3_1D() local
85 int arr_len = width * 3; in testAllocation_Byte3_1D()
92 typeBuilder.setX(width); in testAllocation_Byte3_1D()
115 int width = random.nextInt(128); in testAllocation_Byte3_2D() local
117 int arr_len = width * height * 3; in testAllocation_Byte3_2D()
124 typeBuilder.setX(width).setY(height); in testAllocation_Byte3_2D()
180 int width = random.nextInt(512); in testAllocation_Short3_1D() local
181 int arr_len = width * 3; in testAllocation_Short3_1D()
191 typeBuilder.setX(width); in testAllocation_Short3_1D()
214 int width = random.nextInt(128); in testAllocation_Short3_2D() local
[all …]
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
DUT_alloc_copyPadded.java84 int width = random.nextInt(512); in testAllocation_Byte3_1D() local
85 int arr_len = width * 3; in testAllocation_Byte3_1D()
92 typeBuilder.setX(width); in testAllocation_Byte3_1D()
115 int width = random.nextInt(128); in testAllocation_Byte3_2D() local
117 int arr_len = width * height * 3; in testAllocation_Byte3_2D()
124 typeBuilder.setX(width).setY(height); in testAllocation_Byte3_2D()
180 int width = random.nextInt(512); in testAllocation_Short3_1D() local
181 int arr_len = width * 3; in testAllocation_Short3_1D()
191 typeBuilder.setX(width); in testAllocation_Short3_1D()
214 int width = random.nextInt(128); in testAllocation_Short3_2D() local
[all …]
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
DPaintTest.java171 float width = p.measureText(bidiText, 0, 4); in testMeasureTextBidi() local
173 width += p.measureText(bidiText, 4, 7); in testMeasureTextBidi()
175 width += p.measureText(bidiText, 7, bidiText.length()); in testMeasureTextBidi()
176 assertEquals(width, p.measureText(bidiText), 1.0f); in testMeasureTextBidi()
181 float width = p.measureText(bidiText, 0, 4); in testMeasureTextBidi() local
182 width += p.measureText(bidiText, 4, 7); in testMeasureTextBidi()
183 width += p.measureText(bidiText, 7, bidiText.length()); in testMeasureTextBidi()
184 assertEquals(width, p.measureText(bidiText), 1.0f); in testMeasureTextBidi()
189 float width = p.measureText(bidiText, 0, 4); in testMeasureTextBidi() local
190 width += p.measureText(bidiText, 4, 7); in testMeasureTextBidi()
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dgeometry.cpp73 if (width <= 0.0f || height <= 0.0f || ratio <= 0.0f) { in ExpandToAspectRatio()
77 const float current_ratio = width / height; in ExpandToAspectRatio()
79 const float dx = width * (ratio / current_ratio - 1.0f); in ExpandToAspectRatio()
81 width += dx; in ExpandToAspectRatio()
91 if (width <= 0.0f || height <= 0.0f || length <= 0.0f) { in ExpandToMinLength()
95 const float current_length = width > height ? width : height; in ExpandToMinLength()
97 const float dx = width * (length / current_length - 1.0f); in ExpandToMinLength()
99 width += dx; in ExpandToMinLength()
108 if (width <= 0.0f || height <= 0.0f || factor <= 0.0f) { in ScaleWithLengthLimit()
112 const float current_length = width > height ? width : height; in ScaleWithLengthLimit()
[all …]
/frameworks/base/core/jni/android/graphics/
DYuvToJpegEncoder.cpp26 bool YuvToJpegEncoder::encode(SkWStream* stream, void* inYuv, int width, in encode() argument
41 setJpegCompressStruct(&cinfo, width, height, jpegQuality); in encode()
53 int width, int height, int quality) { in setJpegCompressStruct() argument
54 cinfo->image_width = width; in setJpegCompressStruct()
84 int width = cinfo->image_width; in compress() local
88 uint8_t* uRows = new uint8_t [8 * (width >> 1)]; in compress()
89 uint8_t* vRows = new uint8_t [8 * (width >> 1)]; in compress()
95 deinterleave(vuPlanar, uRows, vRows, cinfo->next_scanline, width, height); in compress()
105 int offset = (i >> 1) * (width >> 1); in compress()
118 uint8_t* vRows, int rowIndex, int width, int height) { in deinterleave() argument
[all …]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
Dh264bsdWriteMacroblock.S29 #define width r2 macro
95 LDR width, [image, #4]
103 LSL width, width, #4
105 LSR cwidth, width, #1
106 VST1.8 {qRow0}, [luma,:128], width
108 VST1.8 {qRow1}, [luma,:128], width
110 VST1.8 {qRow2}, [luma,:128], width
112 VST1.8 {qRow3}, [luma,:128], width
114 VST1.8 {qRow4}, [luma,:128], width
116 VST1.8 {qRow5}, [luma,:128], width
[all …]
/frameworks/base/libs/hwui/
DPixelBuffer.cpp36 CpuPixelBuffer(GLenum format, uint32_t width, uint32_t height);
42 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
51 CpuPixelBuffer::CpuPixelBuffer(GLenum format, uint32_t width, uint32_t height) in CpuPixelBuffer() argument
52 : PixelBuffer(format, width, height) in CpuPixelBuffer()
53 , mBuffer(new uint8_t[width * height * formatSize(format)]) { in CpuPixelBuffer()
71 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { in upload() argument
72 glTexSubImage2D(GL_TEXTURE_2D, 0, x, y, width, height, in upload()
82 GpuPixelBuffer(GLenum format, uint32_t width, uint32_t height);
89 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
101 uint32_t width, uint32_t height) in GpuPixelBuffer() argument
[all …]

12345678910>>...80