Searched refs:floats (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/media/mca/filterfw/jni/
H A Djni_vertex_frame.cpp55 jfloatArray floats) {
57 if (frame && floats) {
58 jfloat* float_ptr = env->GetFloatArrayElements(floats, NULL);
59 const int length = env->GetArrayLength(floats);
63 env->ReleaseFloatArrayElements(floats, float_ptr, JNI_ABORT);
53 Java_android_filterfw_core_VertexFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
H A Djni_vertex_frame.h38 jfloatArray floats);
H A Djni_gl_frame.cpp31 void ConvertFloatsToRGBA(const float* floats, int length, uint8_t* result) { argument
33 result[i] = static_cast<uint8_t>(floats[i] * 255.0);
164 jfloatArray floats) {
166 if (frame && floats) {
167 jfloat* float_ptr = env->GetFloatArrayElements(floats, NULL);
168 const int length = env->GetArrayLength(floats);
170 // Convert floats to RGBA buffer
173 env->ReleaseFloatArrayElements(floats, float_ptr, JNI_ABORT);
197 // Convert them to floats
162 Java_android_filterfw_core_GLFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
H A Djni_native_frame.cpp135 jfloatArray floats) {
137 if (frame && floats) {
138 jfloat* float_ptr = env->GetFloatArrayElements(floats, NULL);
139 const int length = env->GetArrayLength(floats);
144 env->ReleaseFloatArrayElements(floats, float_ptr, JNI_ABORT);
133 Java_android_filterfw_core_NativeFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DVertexFrame.java75 public void setFloats(float[] floats) { argument
77 if (!setNativeFloats(floats)) {
140 private native boolean setNativeFloats(float[] floats); argument
H A DNativeFrame.java126 public void setFloats(float[] floats) { argument
128 if (floats.length * nativeFloatSize() > getFormat().getSize()) {
130 "NativeFrame cannot hold " + floats.length + " floats. (Can only hold " +
131 (getFormat().getSize() / nativeFloatSize()) + " floats).");
132 } else if (!setNativeFloats(floats)) {
250 private native boolean setNativeFloats(float[] floats); argument
H A DSimpleFrame.java99 public void setFloats(float[] floats) { argument
101 setGenericObjectValue(floats);
H A DGLFrame.java191 public void setFloats(float[] floats) { argument
194 if (!setNativeFloats(floats)) {
386 private native boolean setNativeFloats(float[] floats); argument
H A DSerializedFrame.java214 public void setFloats(float[] floats) { argument
216 setGenericObjectValue(floats);
H A DFrame.java101 public abstract void setFloats(float[] floats); argument
/frameworks/native/libs/sensor/
H A DISensorServer.cpp123 int32_t type, const Vector<float> &floats, const Vector<int32_t> &ints) {
127 data.writeUint32(static_cast<uint32_t>(floats.size()));
128 for (auto i : floats) {
207 Vector<float> floats; local
211 floats.resize(data.readUint32());
212 for (auto &i : floats) {
220 int32_t ret = setOperationParameter(type, floats, ints);
122 setOperationParameter( int32_t type, const Vector<float> &floats, const Vector<int32_t> &ints) argument
H A DSensorManager.cpp308 int type, const Vector<float> &floats, const Vector<int32_t> &ints) {
313 return mSensorServer->setOperationParameter(type, floats, ints);
/frameworks/native/libs/sensor/include/sensor/
H A DISensorServer.h55 int32_t type, const Vector<float> &floats, const Vector<int32_t> &ints) = 0;
H A DSensorManager.h67 int setOperationParameter(int type, const Vector<float> &floats, const Vector<int32_t> &ints);
/frameworks/rs/script_api/
H A Drs_convert.spec102 summary: Create a uchar4 RGBA from floats
130 arg: float3 color, "Vector of 3 or 4 floats containing the R, G, B, and A values."
150 Unpacks a uchar4 color to float4. The resulting floats will be between 0.0 and 1.0 inclusive.
H A Drs_vector_math.spec23 The precision of the mathematical operations on 32 bit floats is affected by the pragmas
32 <li>fast_: May perform internal computations using 16 bit floats. Additionally, subnormal
H A Drs_matrix.spec216 arg: const float* array, "Array of values to set the matrix to. These arrays should be 4, 9, or 16 floats long, depending on the matrix size."
219 Set the elements of a matrix from an array of floats or from another matrix.
221 If loading from an array, the floats should be in row-major order, i.e. the element a
H A Drs_math.spec35 The precision of the mathematical operations on 32 bit floats is affected by the pragmas
46 <li>half_: May perform internal computations using 16 bit floats. Additionally, subnormal
177 For floats, use @fabs().
945 summary: Maximum of two floats
990 summary: Minimum of two floats
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp273 jint type, jfloatArray floats, jintArray ints) {
278 if (floats != nullptr) {
279 floatVector.resize(_env->GetArrayLength(floats));
280 _env->GetFloatArrayRegion(floats, 0, _env->GetArrayLength(floats), floatVector.editArray());
342 // step-counter returns a uint64, but the java API only deals with floats
272 nativeSetOperationParameter(JNIEnv *_env, jclass _this, jlong sensorManager, jint type, jfloatArray floats, jintArray ints) argument
H A Dandroid_graphics_Canvas.cpp233 float* floats = autoPts.ptr(); local
242 get_canvas(canvasHandle)->drawPoints(floats + offset, count, *paint);
255 float* floats = autoPts.ptr(); local
264 get_canvas(canvasHandle)->drawLines(floats + offset, count, *paint);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java753 float[] floats = new float[getSize() / 4];
754 allocation.copyTo(floats);
755 mBuffer.asFloatBuffer().put(floats);
/frameworks/native/services/sensorservice/
H A DSensorService.h162 int32_t type, const Vector<float> &floats, const Vector<int32_t> &ints);
H A DSensorService.cpp1035 int32_t type, const Vector<float> &floats, const Vector<int32_t> &ints) {
1087 if (floats.size() != expectSize) {
1091 event[1].additional_info.data_float[i] = floats[i];
1034 setOperationParameter( int32_t type, const Vector<float> &floats, const Vector<int32_t> &ints) argument

Completed in 2387 milliseconds