Searched refs:rhs (Results 51 - 75 of 111) sorted by relevance

12345

/frameworks/native/opengl/libs/EGL/
H A Degl_object.h67 LocalRef(const LocalRef* rhs);
70 explicit LocalRef(egl_object_t* rhs);
89 egl_object_t::LocalRef<N, T>::LocalRef(egl_object_t* rhs) : ref(rhs) { argument
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_cl.c822 extern float3 __attribute__((overloadable)) cross(float3 lhs, float3 rhs) { argument
824 r.x = lhs.y * rhs.z - lhs.z * rhs.y;
825 r.y = lhs.z * rhs.x - lhs.x * rhs.z;
826 r.z = lhs.x * rhs.y - lhs.y * rhs.x;
830 extern float4 __attribute__((overloadable)) cross(float4 lhs, float4 rhs) { argument
832 r.x = lhs.y * rhs.z - lhs.z * rhs
839 dot(float lhs, float rhs) argument
842 dot(float2 lhs, float2 rhs) argument
845 dot(float3 lhs, float3 rhs) argument
848 dot(float4 lhs, float4 rhs) argument
865 distance(float lhs, float rhs) argument
868 distance(float2 lhs, float2 rhs) argument
871 distance(float3 lhs, float3 rhs) argument
874 distance(float4 lhs, float4 rhs) argument
906 fast_distance(float lhs, float rhs) argument
909 fast_distance(float2 lhs, float2 rhs) argument
912 fast_distance(float3 lhs, float3 rhs) argument
915 fast_distance(float4 lhs, float4 rhs) argument
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h64 bool operator < (const Frame& rhs) const {
65 return name < rhs.name;
/frameworks/native/cmds/dumpsys/
H A Ddumpsys.cpp24 static int sort_func(const String16* lhs, const String16* rhs) argument
26 return lhs->compare(*rhs);
/frameworks/support/renderscript/v8/rs_support/
H A DrsRuntime.h120 const rs_matrix4x4 *rhs);
121 void rsrMatrixMultiply_4x4_4x4(rs_matrix4x4 *m, const rs_matrix4x4 *rhs);
123 const rs_matrix3x3 *rhs);
124 void rsrMatrixMultiply_3x3_3x3(rs_matrix3x3 *m, const rs_matrix3x3 *rhs);
126 const rs_matrix2x2 *rhs);
127 void rsrMatrixMultiply_2x2_2x2(rs_matrix2x2 *m, const rs_matrix2x2 *rhs);
/frameworks/base/test-runner/src/android/test/
H A DMoreAsserts.java436 * Tests that lhs.equals(rhs) matches expectedResult, as well as
437 * rhs.equals(lhs). Also tests that hashCode() return values are
442 * @param rhs As lhs.
447 String message, Object lhs, Object rhs, boolean expectedResult) {
449 if ((lhs == null) && (rhs == null)) {
456 if ((lhs == null) || (rhs == null)) {
463 Assert.assertEquals(message, expectedResult, lhs.equals(rhs));
465 if (rhs != null) {
466 Assert.assertEquals(message, expectedResult, rhs.equals(lhs));
475 Assert.assertTrue(hashMessage, lhs.hashCode() == rhs
446 checkEqualsAndHashCodeMethods( String message, Object lhs, Object rhs, boolean expectedResult) argument
484 checkEqualsAndHashCodeMethods(Object lhs, Object rhs, boolean expectedResult) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.h84 static int compare(const TextLayoutCacheKey& lhs, const TextLayoutCacheKey& rhs);
105 inline int strictly_order_type(const TextLayoutCacheKey& lhs, const TextLayoutCacheKey& rhs) { argument
106 return TextLayoutCacheKey::compare(lhs, rhs) < 0;
109 inline int compare_type(const TextLayoutCacheKey& lhs, const TextLayoutCacheKey& rhs) { argument
110 return TextLayoutCacheKey::compare(lhs, rhs);
H A DTextLayoutCache.cpp261 int TextLayoutCacheKey::compare(const TextLayoutCacheKey& lhs, const TextLayoutCacheKey& rhs) { argument
262 int deltaInt = lhs.start - rhs.start;
265 deltaInt = lhs.count - rhs.count;
268 deltaInt = lhs.contextCount - rhs.contextCount;
271 if (lhs.typeface < rhs.typeface) return -1;
272 if (lhs.typeface > rhs.typeface) return +1;
274 if (lhs.textSize < rhs.textSize) return -1;
275 if (lhs.textSize > rhs.textSize) return +1;
277 if (lhs.textSkewX < rhs.textSkewX) return -1;
278 if (lhs.textSkewX > rhs
[all...]
/frameworks/native/include/ui/
H A DGraphicBuffer.h129 GraphicBuffer(const GraphicBuffer& rhs);
130 GraphicBuffer& operator = (const GraphicBuffer& rhs);
131 const GraphicBuffer& operator = (const GraphicBuffer& rhs) const;
/frameworks/rs/driver/
H A DrsdRuntimeMath.cpp182 static void SC_MatrixLoadMultiply_4x4_4x4_4x4(Matrix4x4 *m, const Matrix4x4 *lhs, const Matrix4x4 *rhs) { argument
183 m->loadMultiply(lhs, rhs);
185 static void SC_MatrixLoadMultiply_3x3_3x3_3x3(Matrix3x3 *m, const Matrix3x3 *lhs, const Matrix3x3 *rhs) { argument
186 m->loadMultiply(lhs, rhs);
188 static void SC_MatrixLoadMultiply_2x2_2x2_2x2(Matrix2x2 *m, const Matrix2x2 *lhs, const Matrix2x2 *rhs) { argument
189 m->loadMultiply(lhs, rhs);
192 static void SC_MatrixMultiply_4x4_4x4(Matrix4x4 *m, const Matrix4x4 *rhs) { argument
193 m->multiply(rhs);
195 static void SC_MatrixMultiply_3x3_3x3(Matrix3x3 *m, const Matrix3x3 *rhs) { argument
196 m->multiply(rhs);
198 SC_MatrixMultiply_2x2_2x2(Matrix2x2 *m, const Matrix2x2 *rhs) argument
[all...]
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp185 static void SC_MatrixLoadMultiply_4x4_4x4_4x4(Matrix4x4 *m, const Matrix4x4 *lhs, const Matrix4x4 *rhs) { argument
186 m->loadMultiply(lhs, rhs);
188 static void SC_MatrixLoadMultiply_3x3_3x3_3x3(Matrix3x3 *m, const Matrix3x3 *lhs, const Matrix3x3 *rhs) { argument
189 m->loadMultiply(lhs, rhs);
191 static void SC_MatrixLoadMultiply_2x2_2x2_2x2(Matrix2x2 *m, const Matrix2x2 *lhs, const Matrix2x2 *rhs) { argument
192 m->loadMultiply(lhs, rhs);
195 static void SC_MatrixMultiply_4x4_4x4(Matrix4x4 *m, const Matrix4x4 *rhs) { argument
196 m->multiply(rhs);
198 static void SC_MatrixMultiply_3x3_3x3(Matrix3x3 *m, const Matrix3x3 *rhs) { argument
199 m->multiply(rhs);
201 SC_MatrixMultiply_2x2_2x2(Matrix2x2 *m, const Matrix2x2 *rhs) argument
[all...]
/frameworks/rs/
H A DrsRuntime.h178 const rs_matrix4x4 *rhs);
179 void rsrMatrixMultiply_4x4_4x4(rs_matrix4x4 *m, const rs_matrix4x4 *rhs);
181 const rs_matrix3x3 *rhs);
182 void rsrMatrixMultiply_3x3_3x3(rs_matrix3x3 *m, const rs_matrix3x3 *rhs);
184 const rs_matrix2x2 *rhs);
185 void rsrMatrixMultiply_2x2_2x2(rs_matrix2x2 *m, const rs_matrix2x2 *rhs);
/frameworks/native/include/utils/
H A DBlobCache.h134 bool operator<(const Blob& rhs) const;
162 bool operator<(const CacheEntry& rhs) const;
H A DList.h96 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {} argument
104 _ListIterator(const V& rhs) : mpNode(rhs.mpNode) {} argument
H A DString16.h125 inline int compare_type(const String16& lhs, const String16& rhs) argument
127 return lhs.compare(rhs);
130 inline int strictly_order_type(const String16& lhs, const String16& rhs) argument
132 return compare_type(lhs, rhs) < 0;
H A DString8.h232 inline int compare_type(const String8& lhs, const String8& rhs) argument
234 return lhs.compare(rhs);
237 inline int strictly_order_type(const String8& lhs, const String8& rhs) argument
239 return compare_type(lhs, rhs) < 0;
H A DTypeHelpers.h118 int strictly_order_type(const TYPE& lhs, const TYPE& rhs) { argument
119 return (lhs < rhs) ? 1 : 0;
123 int compare_type(const TYPE& lhs, const TYPE& rhs) { argument
124 return strictly_order_type(rhs, lhs) - strictly_order_type(lhs, rhs);
/frameworks/native/opengl/libagl/
H A Dcontext.h371 void load(const matrixf_t& rhs);
379 void load(const matrixf_t& rhs);
384 void set(const GLfixed* rhs);
385 void set(const GLfloat* rhs);
388 const matrixf_t& lhs, const matrixf_t& rhs);
395 void load(const GLfixed* rhs);
396 void load(const GLfloat* rhs);
397 void multiply(const matrixf_t& rhs);
455 void load(const GLfixed* rhs);
456 void load(const GLfloat* rhs);
[all...]
/frameworks/av/media/libstagefright/include/
H A DAACEncoder.h73 AACEncoder& operator=(const AACEncoder &rhs);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp471 void multiplyMM(float* r, const float* lhs, const float* rhs) argument
474 register const float rhs_i0 = rhs[ I(i,0) ];
480 register const float rhs_ij = rhs[ I(i,j) ];
501 FloatArrayHelper rhs(env, rhs_ref, rhsOffset, 16);
503 bool checkOK = resultMat.check() && lhs.check() && rhs.check();
511 rhs.bind();
513 multiplyMM(resultMat.mData, lhs.mData, rhs.mData);
519 void multiplyMV(float* r, const float* lhs, const float* rhs) argument
521 mx4transform(rhs[0], rhs[
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix3f.java208 * @param rhs right hand side matrix
210 public void loadMultiply(Matrix3f lhs, Matrix3f rhs) { argument
216 float rhs_ij = rhs.get(i,j);
230 * @param rhs right hand side to multiply by
232 public void multiply(Matrix3f rhs) { argument
234 tmp.loadMultiply(this, rhs);
/frameworks/base/libs/hwui/
H A DPatchCache.h83 bool operator<(const PatchDescription& rhs) const {
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DMatrix3f.java208 * @param rhs right hand side matrix
210 public void loadMultiply(Matrix3f lhs, Matrix3f rhs) { argument
216 float rhs_ij = rhs.get(i,j);
230 * @param rhs right hand side to multiply by
232 public void multiply(Matrix3f rhs) { argument
234 tmp.loadMultiply(this, rhs);
/frameworks/base/tests/RenderScriptTests/LivePreview/src/com/android/rs/livepreview/
H A DCameraPreviewActivity.java202 public int compare(Camera.Size lhs, Camera.Size rhs) {
203 if (lhs.width < rhs.width) return -1;
204 if (lhs.width > rhs.width) return 1;
205 if (lhs.height < rhs.height) return -1;
206 if (lhs.height > rhs.height) return 1;
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp57 Transform Transform::operator * (const Transform& rhs) const
60 return rhs;
63 if (rhs.mType == IDENTITY)
68 const mat33& B(rhs.mMatrix);
78 r.mType |= rhs.mType;
80 // TODO: we could recompute this value from r and rhs

Completed in 4950 milliseconds

12345