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

1 2

  /frameworks/rs/cpp/
Type.cpp 31 uint32_t faces = 1; local
33 faces = 6;
45 uint32_t count = x * y * z * faces;
57 count += x * y * z * faces;
  /external/freetype/src/cache/
ftcmanag.h 104 FTC_MruListRec faces; member in struct:FTC_ManagerRec_
  /external/skia/tests/
FontHostTest.cpp 112 static const char* const faces[] = { local
147 for (size_t i = 0; i < SK_ARRAY_COUNT(faces); i++) {
148 SkTypeface* face = SkTypeface::CreateFromName(faces[i], SkTypeface::kNormal);
170 // faces[i], SkScalarToFloat(width1), SkScalarToFloat(width2));
  /frameworks/av/services/camera/libcameraservice/camera2/
FrameProcessor.cpp 89 Vector<camera_face_t> faces; local
98 // No faces this frame
106 ALOGE("%s: Camera %d: More faces than expected! (Got %d, max %d)",
143 faces.setCapacity(metadata.number_of_faces);
184 faces.push_back(face);
187 metadata.faces = faces.editArray();
  /frameworks/rs/
rsType.h 53 bool faces; member in struct:android::renderscript::Type::Hal::State
71 bool getDimFaces() const {return mHal.state.faces;}
132 // * Faces
rsType.cpp 63 rsAssert(mHal.state.faces);
110 if (mHal.state.faces) {
183 mHal.state.faces);
202 stream->addU8((uint8_t)(mHal.state.faces ? 1 : 0));
225 uint8_t faces = stream->loadU8(); local
226 Type *type = Type::getType(rsc, elem, x, y, z, lod != 0, faces !=0, 0);
279 nt->mHal.state.faces = dimFaces;
340 uint32_t dimY, uint32_t dimZ, bool mips, bool faces, uint32_t yuv) {
343 return Type::getType(rsc, e, dimX, dimY, dimZ, mips, faces, yuv);
352 // mHal.state.lodCount; mHal.state.faces; mElement; into typeDat
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FaceClustering.java 50 Face[] faces = item.getFaces(); local
51 if (faces != null) {
52 Face face = faces[faceIndex];
99 Face[] faces = item.getFaces();
100 if (faces == null || faces.length == 0) {
104 for (int j = 0; j < faces.length; j++) {
105 Face face = faces[j];
  /frameworks/base/graphics/java/android/renderscript/
Type.java 37 * faces. LOD and cube map faces are booleans to indicate present or not
159 int faces = 1; local
161 faces = 6;
173 int count = x * y * z * faces;
186 count += x * y * z * faces;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Type.java 38 * faces. LOD and cube map faces are booleans to indicate present or not
157 int faces = 1; local
159 faces = 6;
171 int count = x * y * z * faces;
184 count += x * y * z * faces;
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFD.cpp 199 camera_frame_metadata_t *faces; local
260 CAMHAL_LOGVB("Faces detected %d",
278 ret = encodeFaceCoordinates(faceData, &faces, previewWidth, previewHeight);
281 result = new CameraFDResult(faces);
298 camera_face_t *faces; local
324 faces = ( camera_face_t * ) malloc(sizeof(camera_face_t)*faceData->ulFaceCount);
325 if ( NULL == faces ) {
382 //For real faces, it is seen that the h/w passes a score >=80
383 //For false faces, we seem to get even a score of 70 sometimes.
401 faces[i].rect[trans_left] = tmp
    [all...]
  /system/core/include/system/
camera.h 128 * faces in the preview frame. The detected faces may be the same as the
265 * The number of detected faces in the frame.
270 * An array of the detected faces. The length is number_of_faces.
272 camera_face_t *faces; member in struct:camera_frame_metadata
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
OBJLoader.java 71 protected final ArrayList<Face> faces = new ArrayList<Face>(); field in class:OBJLoader
152 // }else if (faces.size() > 0){
154 // Geometry geom = createGeometry(faces, null);
166 faces.clear();
282 faces.add(f); // faces that belong to the default material
368 // use material from MTL lib for the following faces
392 // Create mesh from the faces
580 }else if (faces.size() > 0){
582 Geometry geom = createGeometry(faces, null)
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
Stripifier.java 153 // create the face info and add it to the list of faces, but only
456 // Returns the (at most) two vertices shared between the two faces
516 // Iterate through the faces of the strip
517 // Tell the faces of the strip that they belong to a real strip now
518 FaceInfoVec faces = strips.at(i).m_faces; local
519 int numFaces = faces.size();
522 strip.markTriangle(faces.at(j));
726 // faceList is an out parameter which will contain all faces which were
737 //strip is too small, add faces to faceList
    [all...]
  /external/skia/legacy/src/ports/
SkFontHost_linux.cpp 81 SkTypeface* const* faces = family->fFaces; local
83 if (faces[style] != NULL) { // exact match
84 return faces[style];
88 if (faces[style] != NULL) {
89 return faces[style];
92 if (faces[SkTypeface::kNormal] != NULL) {
93 return faces[SkTypeface::kNormal];
97 if (faces[i] != NULL) {
98 return faces[i];
101 // should never get here, since the faces list should not be empt
    [all...]
SkFontHost_simple.cpp 80 SkTypeface* const* faces = family->fFaces; local
82 if (faces[style] != NULL) { // exact match
83 return faces[style];
87 if (faces[style] != NULL) {
88 return faces[style];
91 if (faces[SkTypeface::kNormal] != NULL) {
92 return faces[SkTypeface::kNormal];
96 if (faces[i] != NULL) {
97 return faces[i];
100 // should never get here, since the faces list should not be empt
    [all...]
SkFontHost_android.cpp 132 SkTypeface* const* faces = family->fFaces; local
134 if (faces[style] != NULL) { // exact match
135 return faces[style];
139 if (faces[style] != NULL) {
140 return faces[style];
143 if (faces[SkTypeface::kNormal] != NULL) {
144 return faces[SkTypeface::kNormal];
148 if (faces[i] != NULL) {
149 return faces[i];
152 // should never get here, since the faces list should not be empt
    [all...]
  /external/skia/src/ports/
SkFontHost_linux.cpp 78 SkTypeface* const* faces = family->fFaces; local
80 if (faces[style] != NULL) { // exact match
81 return faces[style];
85 if (faces[style] != NULL) {
86 return faces[style];
89 if (faces[SkTypeface::kNormal] != NULL) {
90 return faces[SkTypeface::kNormal];
94 if (faces[i] != NULL) {
95 return faces[i];
98 // should never get here, since the faces list should not be empt
    [all...]
SkFontHost_simple.cpp 80 SkTypeface* const* faces = family->fFaces; local
82 if (faces[style] != NULL) { // exact match
83 return faces[style];
87 if (faces[style] != NULL) {
88 return faces[style];
91 if (faces[SkTypeface::kNormal] != NULL) {
92 return faces[SkTypeface::kNormal];
96 if (faces[i] != NULL) {
97 return faces[i];
100 // should never get here, since the faces list should not be empt
    [all...]
SkFontHost_android.cpp 123 SkTypeface* const* faces = family->fFaces; local
125 if (faces[style] != NULL) { // exact match
126 return faces[style];
130 if (faces[style] != NULL) {
131 return faces[style];
134 if (faces[SkTypeface::kNormal] != NULL) {
135 return faces[SkTypeface::kNormal];
139 if (faces[i] != NULL) {
140 return faces[i];
143 // should never get here, since the faces list should not be empt
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_structs.h 224 bool faces; member in struct:Type::__anon19923::__anon19924
  /external/freetype/src/base/
ftobjs.c 875 /* destructor for faces list */
4544 FT_List faces; local
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 2211 const char **faces = icvHersheyGlyphs; local
2376 const char **faces = icvHersheyGlyphs; local
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 537 milliseconds

1 2