/frameworks/native/libs/ui/ |
D | GraphicBufferMapper.cpp | 186 std::vector<android_flex_plane_t> planes(numPlanes); in lockAsyncYCbCr() local 189 flexLayout.planes = planes.data(); in lockAsyncYCbCr() 206 auto yPlane = planes.cend(); in lockAsyncYCbCr() 207 auto cbPlane = planes.cend(); in lockAsyncYCbCr() 208 auto crPlane = planes.cend(); in lockAsyncYCbCr() 209 for (auto planeIter = planes.cbegin(); planeIter != planes.cend(); in lockAsyncYCbCr() 219 if (yPlane == planes.cend()) { in lockAsyncYCbCr() 224 if (cbPlane == planes.cend()) { in lockAsyncYCbCr() 229 if (crPlane == planes.cend()) { in lockAsyncYCbCr()
|
/frameworks/base/core/jni/android/graphics/ |
D | YuvToJpegEncoder.cpp | 79 JSAMPARRAY planes[3]; in compress() local 80 planes[0] = y; in compress() 81 planes[1] = cb; in compress() 82 planes[2] = cr; in compress() 110 jpeg_write_raw_data(cinfo, planes, 16); in compress() 155 JSAMPARRAY planes[3]; in compress() local 156 planes[0] = y; in compress() 157 planes[1] = cb; in compress() 158 planes[2] = cr; in compress() 184 jpeg_write_raw_data(cinfo, planes, 16); in compress()
|
/frameworks/native/include/media/hardware/ |
D | VideoAPI.h | 258 const char *planes = asString(j, NULL); variable 260 if (j == MediaImage2::MEDIA_IMAGE_TYPE_UNKNOWN || planes == NULL || i >= strlen(planes)) { 263 return planes[i];
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | DngCreator.java | 439 Image.Plane[] planes = pixels.getPlanes(); in writeImage() local 440 if (planes == null || planes.length <= 0) { in writeImage() 444 ByteBuffer buf = planes[0].getBuffer(); in writeImage() 446 planes[0].getPixelStride(), planes[0].getRowStride(), 0); in writeImage()
|
/frameworks/native/opengl/libagl/ |
D | vertex.cpp | 119 int planes = c->clipPlanes.enable; in clipAllPerspective() local 120 while (planes) { in clipAllPerspective() 121 const int i = 31 - gglClz(planes); in clipAllPerspective() 122 planes &= ~(1<<i); in clipAllPerspective()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
D | CameraTestUtils.java | 815 Plane[] planes = image.getPlanes(); in getDataFromImage() local 816 assertTrue("Fail to get image planes", planes != null && planes.length > 0); in getDataFromImage() 826 buffer = planes[0].getBuffer(); in getDataFromImage() 836 int maxRowSize = planes[0].getRowStride(); in getDataFromImage() 837 for (int i = 0; i < planes.length; i++) { in getDataFromImage() 838 if (maxRowSize < planes[i].getRowStride()) { in getDataFromImage() 839 maxRowSize = planes[i].getRowStride(); in getDataFromImage() 843 if(VERBOSE) Log.v(TAG, "get data from " + planes.length + " planes"); in getDataFromImage() 844 for (int i = 0; i < planes.length; i++) { in getDataFromImage() 845 buffer = planes[i].getBuffer(); in getDataFromImage() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/dec/ |
D | SoftVPX.cpp | 161 const uint8_t *srcY = (const uint8_t *)mImg->planes[VPX_PLANE_Y]; in outputBuffers() 162 const uint8_t *srcU = (const uint8_t *)mImg->planes[VPX_PLANE_U]; in outputBuffers() 163 const uint8_t *srcV = (const uint8_t *)mImg->planes[VPX_PLANE_V]; in outputBuffers()
|
/frameworks/rs/api/ |
D | rs_matrix.spec | 58 summary: Compute frustum planes 60 Computes 6 frustum planes from the view projection matrix 133 summary: Checks if a sphere is within the frustum planes 135 Returns true if the sphere is within the 6 frustum planes. 265 the six clipping planes <code>left, right, bottom, top, near, far</code>. 315 six clipping planes <code>left, right, bottom, top, near, far</code> into a unit cube
|
/frameworks/av/media/img_utils/include/img_utils/ |
D | DngUtils.h | 99 uint32_t planes,
|
/frameworks/rs/scriptc/ |
D | rs_matrix.rsh | 54 * rsExtractFrustumPlanes: Compute frustum planes 56 * Computes 6 frustum planes from the view projection matrix 59 * viewProj: Matrix to extract planes from. 124 * rsIsSphereInFrustum: Checks if a sphere is within the frustum planes 126 * Returns true if the sphere is within the 6 frustum planes. 271 * the six clipping planes left, right, bottom, top, near, far. 332 * six clipping planes left, right, bottom, top, near, far into a unit cube
|
D | rs_allocation_data.rsh | 2600 * Inside an allocation, Y, U, and V components may be stored if different planes 2616 * Inside an allocation, Y, U, and V components may be stored if different planes 2632 * Inside an allocation, Y, U, and V components may be stored if different planes
|
/frameworks/av/media/img_utils/src/ |
D | DngUtils.cpp | 223 uint32_t planes, in addGainMap() argument 259 planes, in addGainMap()
|
/frameworks/base/media/jni/ |
D | android_media_ImageWriter.cpp | 624 jobject planes = NULL; in Image_unlockIfLocked() local 626 planes = env->GetObjectField(thiz, gSurfaceImageClassInfo.mPlanes); in Image_unlockIfLocked() 628 isLocked = (planes != NULL); in Image_unlockIfLocked()
|
D | android_media_ImageReader.cpp | 435 jobject planes = NULL; in Image_unlockIfLocked() local 437 planes = env->GetObjectField(image, gSurfaceImageClassInfo.mPlanes); in Image_unlockIfLocked() 439 wasBufferLocked = (planes != NULL); in Image_unlockIfLocked()
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_matrix.jd | 44 Compute frustum planes 52 Checks if a sphere is within the frustum planes 205 <span class='normal'>: Compute frustum planes</span> 218 <tr><th>viewProj</th><td>Matrix to extract planes from.</td></tr> 228 <p> Computes 6 frustum planes from the view projection matrix 237 <span class='normal'>: Checks if a sphere is within the frustum planes</span> 260 <p> Returns true if the sphere is within the 6 frustum planes. 466 the six clipping planes <code>left, right, bottom, top, near, far</code>. 588 six clipping planes <code>left, right, bottom, top, near, far</code> into a unit cube
|
D | overview.jd | 1863 Compute frustum planes 1871 Checks if a sphere is within the frustum planes
|
D | index.jd | 1835 Compute frustum planes 2019 Checks if a sphere is within the frustum planes
|
D | rs_allocation_data.jd | 2110 <p> Inside an allocation, Y, U, and V components may be stored if different planes 2140 <p> Inside an allocation, Y, U, and V components may be stored if different planes 2170 <p> Inside an allocation, Y, U, and V components may be stored if different planes
|
/frameworks/base/docs/html-intl/intl/es/distribute/googleplay/quality/ |
D | core.jd | 857 …tus propios planes de prueba. Consulta las secciones anteriores para obtener referencias que asoci…
|
/frameworks/base/docs/html/distribute/essentials/quality/ |
D | billions.jd | 112 <li>In places like subways, planes, elevators, and parking garages, it is
|