HomeSort by relevance Sort by last modified time
    Searched refs:Face (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/opencv/cvaux/src/
cvfacedetection.cpp 195 Face * tmp;
422 //class Face
436 ListElem::ListElem(Face * pFace,ListElem * pHead)
444 }//ListElem::ListElem(Face * pFace)
474 int List::AddElem(Face * pFace)
478 }//List::AddElem(Face * pFace)
480 Face * List::GetData()
484 }//Face * List::GetData()
  /external/skia/src/gpu/
GrUserStencilSettings.h 112 typedef GrTStencilFaceSettings<GrUserStencilTest, GrUserStencilOp> Face;
199 const Face fFront;
201 const Face fBack;
246 // face gets disabled in that case (e.g. Test=kAlwaysIfInClip, PassOp=kKeep), or else the
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex.c 124 int face; local
127 for (face = 0; face < numFaces; face++) {
129 struct gl_texture_image *const texImage = texObj->Image[face][level];
187 * cube face, since it's all just slices to the miptree code.
190 slice = tex_image->Face;
205 slice = tex_image->Face;
intel_tex_copy.c 103 intelImage->base.Base.Face,
intel_tex_subimage.c 114 intelImage->base.Base.Face, 0,
intel_tex_validate.c 42 GLuint face, i; local
100 for (face = 0; face < nr_faces; face++) {
103 intel_texture_image(intelObj->base.Image[face][i]);
126 int face; local
134 face = intel_image->base.Base.Face;
149 intel_miptree_get_image_offset(mt, level, face, i, &x, &y);
158 intel_miptree_get_image_offset(mt, level, face, 0, &x, &y)
189 int i, face; local
208 int i, face; local
    [all...]
intel_tex_image.c 181 intelImage->base.Base.Face, 0,
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_fs_exec.c 128 machine->Face = (float) (quad->input.facing * -2 + 1);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 49 const GLuint face = timg->base.Base.Face; local
85 intptr_t dst_offset = radeon_miptree_image_offset(timg->mt, face, level);
88 fprintf(stderr, "%s: copying to face %d, level %d\n",
89 __FUNCTION__, face, level);
radeon_texture.c 171 image->base.Map = image->mt->bo->ptr + lvl->faces[image->base.Base.Face].offset;
255 base = mt->bo->ptr + lvl->faces[image->base.Base.Face].offset;
709 GLuint level, face; local
720 face = image->base.Base.Face;
729 image->base.Map = mt->bo->ptr + lvl->faces[face].offset;
755 int i, face; local
758 for (face = 0; face < nr_faces; face++)
771 int i, face; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
PhotoUI.java 24 import android.hardware.Camera.Face;
61 // TODO: Remove face view logic if UX does not bring it back within a month.
433 public void onFaceDetection(Face[] faces, CameraAgent.CameraProxy camera) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsSerializer.java 29 import android.hardware.camera2.params.Face;
113 private static Object serializeFace(Face face)
116 faceObj.put("bounds", serializeRect(face.getBounds()));
117 faceObj.put("score", face.getScore());
118 faceObj.put("id", face.getId());
119 if (face.getLeftEyePosition() != null) {
120 faceObj.put("leftEye", serializePoint(face.getLeftEyePosition()));
122 if (face.getRightEyePosition() != null) {
123 faceObj.put("rightEye", serializePoint(face.getRightEyePosition()))
    [all...]
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
CameraMetadataGetter.java 33 import android.hardware.camera2.params.Face;
289 private static Object serializeFace(Face face)
292 faceObj.put("bounds", serializeRect(face.getBounds()));
293 faceObj.put("score", face.getScore());
294 faceObj.put("id", face.getId());
295 faceObj.put("leftEye", serializePoint(face.getLeftEyePosition()));
296 faceObj.put("rightEye", serializePoint(face.getRightEyePosition()));
297 faceObj.put("mouth", serializePoint(face.getMouthPosition()));
485 } else if (keyType == Face.class)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
CaptureResult.java     [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c 1179 GLuint face; local
1349 GLuint face; local
    [all...]
st_texture.c 206 * Map a texture image and return the address for a particular 2D face/slice/
207 * layer. The stImage indicates the cube face and mipmap level. The slice
234 stImage->base.Face + zoffset,
295 GLuint face,
315 dst_transfer = pipe_get_transfer(st->pipe, dst, level, face + i,
372 GLuint face)
385 * cube map face which was set up with mismatched texture sizes.
398 for (i = face; i < face + depth; i++) {
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.h 282 float Face; /**< +1 if front facing, -1 if back facing */
  /cts/tests/camera/src/android/hardware/camera2/cts/
CaptureRequestTest.java 34 import android.hardware.camera2.params.Face;
408 * Test face detection modes and results.
    [all...]
  /external/pdfium/core/fxge/ge/
cfx_font.cpp 60 FXFT_Face* Face,
74 if (FXFT_Open_Face(library, &args, faceIndex, Face))
260 void CFX_Font::SetFace(FXFT_Face face) {
262 m_Face = face;
  /external/skia/src/gpu/vk/
GrVkPipeline.cpp 169 // Set front face
170 const GrStencilSettings::Face& front = stencilSettings.front();
179 // Set back face
183 const GrStencilSettings::Face& back = stencilSettings.back();
363 // Assumes that we've set the front face to be ccw
366 VK_CULL_MODE_BACK_BIT, // kCCW_DrawFace, cull back face
367 VK_CULL_MODE_FRONT_BIT, // kCW_DrawFace, cull front face
  /frameworks/base/core/java/android/hardware/
Camera.java 235 * Hardware face detection. It does not use much CPU.
240 * Software face detection. It uses some CPU.
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 38 import android.hardware.camera2.params.Face;
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 78 boolean mWaitingToPick; // Whether we are wait the user to pick a face.
420 FaceDetector.Face[] mFaces = new FaceDetector.Face[3];
423 // For each face, we create a HightlightView for it.
424 private void handleFace(FaceDetector.Face f) {
468 // Create a default HightlightView if we found no face in the picture.
498 // Scale the image down for faster face detection.
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9core.h 318 STDMETHOD(Face)(THIS_ D3DCUBEMAP_FACES face, DWORD mipfilter) PURE;
338 #define ID3DXRenderToEnvMap_Face(p,a,b) (p)->lpVtbl->Face(p,a,b)
354 #define ID3DXRenderToEnvMap_Face(p,a,b) (p)->Face(a,b)
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 27 import android.hardware.Camera.Face;
    [all...]

Completed in 2214 milliseconds

12 3 4