HomeSort by relevance Sort by last modified time
    Searched full:rhs (Results 101 - 125 of 290) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/jni/android/opengl/
util.cpp 470 void multiplyMM(float* r, const float* lhs, const float* rhs)
473 register const float rhs_i0 = rhs[ I(i,0) ];
479 register const float rhs_ij = rhs[ I(i,j) ];
500 FloatArrayHelper rhs(env, rhs_ref, rhsOffset, 16);
502 bool checkOK = resultMat.check() && lhs.check() && rhs.check();
510 rhs.bind();
512 multiplyMM(resultMat.mData, lhs.mData, rhs.mData);
518 void multiplyMV(float* r, const float* lhs, const float* rhs)
520 mx4transform(rhs[0], rhs[1], rhs[2], rhs[3], lhs, r)
    [all...]
  /external/opencore/doc/oscl_html/
structWStrPtrLen.html 23 <tr><td nowrap align=right valign=top>&nbsp;</td><td valign=bottom><a class="el" href="structWStrPtrLen.html#a3">WStrPtrLen</a> (const WStrPtrLen &amp;rhs)</td></tr>
28 <tr><td nowrap align=right valign=top><a class="el" href="group__osclbase.html#a24">c_bool</a>&nbsp;</td><td valign=bottom><a class="el" href="structWStrPtrLen.html#a8">isCIEquivalentTo</a> (const WStrPtrLen &amp;rhs) const</td></tr>
29 <tr><td nowrap align=right valign=top>int32&nbsp;</td><td valign=bottom><a class="el" href="structWStrPtrLen.html#a9">operator==</a> (const WStrPtrLen &amp;rhs) const</td></tr>
30 <tr><td nowrap align=right valign=top>int32&nbsp;</td><td valign=bottom><a class="el" href="structWStrPtrLen.html#a10">operator!=</a> (const WStrPtrLen &amp;rhs) const</td></tr>
31 <tr><td nowrap align=right valign=top>WStrPtrLen &amp;&nbsp;</td><td valign=bottom><a class="el" href="structWStrPtrLen.html#a11">operator=</a> (const WStrPtrLen &amp;rhs)</td></tr>
32 <tr><td nowrap align=right valign=top>WStrPtrLen &amp;&nbsp;</td><td valign=bottom><a class="el" href="structWStrPtrLen.html#a12">operator=</a> (const <a class="el" href="group__osclbase.html#a32">oscl_wchar</a> *rhs)</td></tr>
147 <td class="mdname1" valign="top" nowrap>&nbsp; <em>rhs</em> </td>
205 <td class="mdname1" valign="top" nowrap>&nbsp; <em>rhs</em> </td>
262 <td class="mdname1" valign="top" nowrap>&nbsp; <em>rhs</em> </td>
291 <td class="mdname1" valign="top" nowrap>&nbsp; <em>rhs</em> </td
    [all...]
  /external/stlport/test/unit/
unordered_test.cpp 537 bool operator () (Key lhs, Key rhs) const
538 { return lhs.m_data == rhs.m_data; }
540 bool operator () (Key lhs, int rhs) const
541 { return lhs.m_data == rhs; }
543 bool operator () (int lhs, Key rhs) const
544 { return lhs == rhs.m_data; }
558 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const
559 { return lhs->m_data == rhs->m_data; }
561 bool operator () (Key const volatile *lhs, int rhs) const
562 { return lhs->m_data == rhs; }
    [all...]
  /cts/tools/dasm/src/java_cup/
lr_item_core.java 56 part = _the_production.rhs(_dot_pos);
86 * the RHS.
92 * the RHS.
227 if (_the_production.rhs(i) == null)
233 part = _the_production.rhs(i);
  /external/icu4c/i18n/
nfsubs.h 73 * @param rhs the object to be compared with.
76 virtual UBool operator==(const NFSubstitution& rhs) const;
81 * @param rhs the object to be compared with.
84 UBool operator!=(const NFSubstitution& rhs) const { return !operator==(rhs); }
nfsubs.cpp 93 virtual UBool operator==(const NFSubstitution& rhs) const;
142 virtual UBool operator==(const NFSubstitution& rhs) const;
203 virtual UBool operator==(const NFSubstitution& rhs) const;
270 virtual UBool operator==(const NFSubstitution& rhs) const;
523 NFSubstitution::operator==(const NFSubstitution& rhs) const
528 return getDynamicClassID() == rhs.getDynamicClassID()
529 && pos == rhs.pos
530 && (ruleSet == NULL) == (rhs.ruleSet == NULL)
531 // && ruleSet == rhs.ruleSet causes circularity, other checks to make instead?
533 ? (rhs.numberFormat == NULL
    [all...]
  /frameworks/base/include/utils/
TypeHelpers.h 118 int strictly_order_type(const TYPE& lhs, const TYPE& rhs) {
119 return (lhs < rhs) ? 1 : 0;
123 int compare_type(const TYPE& lhs, const TYPE& rhs) {
124 return strictly_order_type(rhs, lhs) - strictly_order_type(lhs, rhs);
List.h 96 _ListIterator(const _Iter& rhs) : mpNode(rhs.mpNode) {}
104 _ListIterator(const V& rhs) : mpNode(rhs.mpNode) {}
String16.h 147 inline int compare_type(const String16& lhs, const String16& rhs)
149 return lhs.compare(rhs);
152 inline int strictly_order_type(const String16& lhs, const String16& rhs)
154 return compare_type(lhs, rhs) < 0;
  /frameworks/base/include/private/opengles/
gl_context.h 374 void load(const matrixf_t& rhs);
382 void load(const matrixf_t& rhs);
387 void set(const GLfixed* rhs);
388 void set(const GLfloat* rhs);
391 const matrixf_t& lhs, const matrixf_t& rhs);
398 void load(const GLfixed* rhs);
399 void load(const GLfloat* rhs);
400 void multiply(const matrixf_t& rhs);
458 void load(const GLfixed* rhs);
459 void load(const GLfloat* rhs);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 46 * matrix. In matrix notation: result = lhs x rhs. Due to the way
48 * effect as first multiplying by the rhs matrix, then multiplying by
51 * The same float array may be passed for result, lhs, and/or rhs. However,
53 * either the lhs or rhs elements.
60 * @param rhs The float array that holds the right-hand-side matrix.
61 * @param rhsOffset The offset into the rhs array where the rhs is stored.
63 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
65 * rhsOffset + 16 > rhs.length.
68 float[] lhs, int lhsOffset, float[] rhs, int rhsOffset)
    [all...]
  /external/bison/data/
yacc.c 104 # symbols on RHS.
124 # on RHS.
451 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
458 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
591 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
593 the previous symbol: RHS[0] (always defined). */
595 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
597 # define YYLLOC_DEFAULT(Current, Rhs, N)
    [all...]
lalr1.cc 83 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
85 the previous symbol: RHS[0] (always defined). */
88 # define YYLLOC_DEFAULT(Current, Rhs, N) \
92 (Current).begin = (Rhs)[1].begin; \
93 (Current).end = (Rhs)[N].end; \
97 (Current).begin = (Current).end = (Rhs)[0].end; \
227 /// For a rule, its RHS length.
243 /// A `-1'-separated list of the rules' RHS.
245 /// For each rule, the index of the first RHS symbol in \a yyrhs_
    [all...]
c++.m4 63 # symbols on RHS.
77 # on RHS.
glr.c 112 # symbols on RHS.
132 # on RHS.
355 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
362 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
485 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
487 the previous symbol: RHS[0] (always defined). */
490 #define YYRHSLOC(Rhs, K) ((Rhs)[K].yystate.yyloc)
492 # define YYLLOC_DEFAULT(Current, Rhs, N)
    [all...]
  /frameworks/base/libs/surfaceflinger/
Transform.cpp 78 Transform Transform::operator * (const Transform& rhs) const
81 return rhs;
84 if (rhs.mType == IDENTITY)
89 const mat33& B(rhs.mMatrix);
99 r.mType |= rhs.mType;
101 // TODO: we could recompute this value from r and rhs
  /dalvik/libcore/xml/src/main/java/javax/xml/datatype/
Duration.java 439 * <p>Computes a new duration whose value is <code>this+rhs</code>.</p>
469 * Note that <code>lhs.add(rhs)</code> will be always successful if
470 * <code>lhs.signum()*rhs.signum()!=-1</code> or both of them are
473 * @param rhs <code>Duration</code> to add to this <code>Duration</code>
479 * If the rhs parameter is null.
488 public abstract Duration add(final Duration rhs);
570 * <p>Computes a new duration whose value is <code>this-rhs</code>.</p>
604 * @param rhs <code>Duration</code> to subtract from this <code>Duration</code>.
606 * @return New <code>Duration</code> created from subtracting <code>rhs</code> from this <code>Duration</code>.
614 * If the rhs parameter is null
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
ClassDescriptor.java 72 public final boolean equals (final Object rhs)
74 if (! (rhs instanceof ClassDescriptor)) return false;
76 final ClassDescriptor _rhs = (ClassDescriptor) rhs;
  /external/stlport/test/eh/
test_algo.cpp 61 SortBuffer( const SortBuffer& rhs )
64 for ( const SortClass* p = rhs.begin() ; p != rhs.end(); p++,q++ )
  /external/bison/src/
reduce.c 47 /* Set of all rules which have no useless nonterminals in their RHS. */
77 for (rhsp = rules[r].rhs; *rhsp >= 0; ++rhsp)
95 set of all productions which have a RHS all in N. */
104 nonterminals in its RHS are already in the set. Iterate until
111 nonterminals in the RHS are in useful. Only productions not in
148 productions, and add all of the nonterminals in the RHS of the
184 for (rhsp = rules[r].rhs; *rhsp >= 0; rhsp++)
262 item_number *rhsp = rules[r].rhs;
328 for (rhsp = rules[r].rhs; *rhsp >= 0; ++rhsp)
  /external/gtest/samples/
sample2.h 44 const MyString& operator=(const MyString& rhs);
  /system/core/include/private/pixelflinger/
ggl_context.h 220 inline bool operator == (const needs_t& rhs) const {
221 return (n==rhs.n) &&
222 (p==rhs.p) &&
223 (t[0]==rhs.t[0]) &&
224 (t[1]==rhs.t[1]);
226 inline bool operator != (const needs_t& rhs) const {
227 return !operator == (rhs);
234 inline int compare_type(const needs_t& lhs, const needs_t& rhs) {
235 return memcmp(&lhs, &rhs, sizeof(needs_t));
  /bionic/libm/src/
s_cbrt.c 57 * infinity. The RHS is always >= the LHS and has a maximum relative
62 * almost exactly the RHS of the above provided we first subtract the
  /external/dbus/dbus/
dbus-marshal-recursive.h 138 const DBusTypeReader *rhs);
141 const DBusTypeReader *rhs);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Operators/
11.13.1-001.js 38 * SUMMARY: JS should evaluate RHS before binding LHS implicit variable
46 var summary = 'JS should evaluate RHS before binding LHS implicit variable';

Completed in 361 milliseconds

1 2 3 45 6 7 8 91011>>