Searched defs:rhs (Results 76 - 87 of 87) sorted by relevance

1234

/frameworks/native/opengl/libagl/
H A Dmatrix.cpp236 void matrixx_t::load(const matrixf_t& rhs) { argument
238 GLfloat const* fp = rhs.elements();
252 void matrixf_t::multiply(matrixf_t& r, const matrixf_t& lhs, const matrixf_t& rhs) argument
256 register const float rhs_i0 = rhs.m[ I(i,0) ];
262 register const float rhs_ij = rhs.m[ I(i,j) ];
287 void matrixf_t::set(const GLfixed* rhs) { argument
288 load(rhs);
291 void matrixf_t::set(const GLfloat* rhs) { argument
292 load(rhs);
295 void matrixf_t::load(const GLfixed* rhs) { argument
303 load(const GLfloat* rhs) argument
307 load(const matrixf_t& rhs) argument
311 multiply(const matrixf_t& rhs) argument
406 load(const GLfixed* rhs) argument
413 load(const GLfloat* rhs) argument
419 multiply(const matrixf_t& rhs) argument
724 point2__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
734 point3__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
745 point4__generic(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
757 point3__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
771 point4__mvui(transform_t const* mx, vec4_t* lhs, vec4_t const* rhs) argument
786 point2__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) argument
795 point3__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) argument
804 point4__nop(transform_t const*, vec4_t* lhs, vec4_t const* rhs) argument
846 matrixf_t rhs; local
885 matrixf_t rhs; local
957 matrixf_t rhs; local
966 matrixf_t rhs; local
[all...]
H A Degl.cpp283 static Region subtract(const Rect& lhs, const Rect& rhs) { argument
287 if (lhs.top < rhs.top) { // top rect
291 storage->bottom = rhs.top;
294 const int32_t top = max(lhs.top, rhs.top);
295 const int32_t bot = min(lhs.bottom, rhs.bottom);
297 if (lhs.left < rhs.left) { // left-side rect
300 storage->right = rhs.left;
304 if (lhs.right > rhs.right) { // right-side rect
305 storage->left = rhs.right;
312 if (lhs.bottom > rhs
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.cpp598 static int cmp(void const* lhs, void const* rhs) { argument
600 sensors_event_t const* r = static_cast<sensors_event_t const*>(rhs);
/frameworks/rs/driver/runtime/
H A Drs_cl.c912 extern float3 __attribute__((overloadable)) cross(float3 lhs, float3 rhs) { argument
914 r.x = lhs.y * rhs.z - lhs.z * rhs.y;
915 r.y = lhs.z * rhs.x - lhs.x * rhs.z;
916 r.z = lhs.x * rhs.y - lhs.y * rhs.x;
920 extern float4 __attribute__((overloadable)) cross(float4 lhs, float4 rhs) { argument
922 r.x = lhs.y * rhs.z - lhs.z * rhs
931 dot(float lhs, float rhs) argument
934 dot(float2 lhs, float2 rhs) argument
937 dot(float3 lhs, float3 rhs) argument
940 dot(float4 lhs, float4 rhs) argument
966 distance(float lhs, float rhs) argument
969 distance(float2 lhs, float2 rhs) argument
972 distance(float3 lhs, float3 rhs) argument
975 distance(float4 lhs, float4 rhs) argument
1022 fast_distance(float lhs, float rhs) argument
1025 fast_distance(float2 lhs, float2 rhs) argument
1028 fast_distance(float3 lhs, float3 rhs) argument
1031 fast_distance(float4 lhs, float4 rhs) argument
[all...]
/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/packages/PrintSpooler/src/com/android/printspooler/model/
H A DRemotePrintDocument.java764 private boolean equalsIgnoreSize(PrintDocumentInfo lhs, PrintDocumentInfo rhs) { argument
765 if (lhs == rhs) {
771 if (rhs == null) {
774 if (lhs.getContentType() != rhs.getContentType()
775 || lhs.getPageCount() != rhs.getPageCount()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java334 private static boolean sameConditionId(Condition lhs, Condition rhs) { argument
335 return lhs == null ? rhs == null : rhs != null && lhs.id.equals(rhs.id);
/frameworks/base/tools/aapt/
H A DAaptAssets.h131 inline int compare_type(const AaptGroupEntry& lhs, const AaptGroupEntry& rhs) argument
133 return lhs.compare(rhs);
136 inline int strictly_order_type(const AaptGroupEntry& lhs, const AaptGroupEntry& rhs) argument
138 return compare_type(lhs, rhs) < 0;
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp1638 static bool bitcodereader_order(const User *lhs, const User *rhs) { argument
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java626 public int compare(String lhs, String rhs) { argument
629 } else if (rhs == null) {
632 return lhs.compareTo(rhs);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp3341 SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs) argument
3342 : SortedVector<sp<Layer> >(rhs) {
3346 const void* rhs) const
3350 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java123 public int compare(ItemInfo lhs, ItemInfo rhs) {
124 return lhs.position - rhs.position;
2886 public int compare(View lhs, View rhs) { argument
2888 final LayoutParams rlp = (LayoutParams) rhs.getLayoutParams();

Completed in 341 milliseconds

1234