Searched refs:lhs (Results 1 - 25 of 695) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DUnitTests.cs30 public static bool byteArrEqual( byte[] lhs, byte[] rhs ) argument
32 if (lhs.Length != rhs.Length)
34 for (int i = lhs.Length-1; i >= 0; --i)
35 if (lhs[i] != rhs[i])
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h54 friend TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks);
58 // Returns a TickInterval that is the difference in ticks beween rhs and lhs
59 friend TickInterval operator-(const TickTime& lhs, const TickTime& rhs);
73 friend TickInterval operator+(const TickInterval& lhs,
77 // Returns a TickInterval corresponding to rhs - lhs
78 friend TickInterval operator-(const TickInterval& lhs,
82 friend bool operator>(const TickInterval& lhs, const TickInterval& rhs);
83 friend bool operator<=(const TickInterval& lhs, const TickInterval& rhs);
84 friend bool operator<(const TickInterval& lhs, const TickInterval& rhs);
85 friend bool operator>=(const TickInterval& lhs, cons
97 operator +(const TickInterval& lhs, const TickInterval& rhs) argument
102 operator -(const TickInterval& lhs, const TickInterval& rhs) argument
107 operator -(const TickTime& lhs,const TickTime& rhs) argument
112 operator +(const TickTime lhs, const WebRtc_Word64 ticks) argument
118 operator >(const TickInterval& lhs, const TickInterval& rhs) argument
122 operator <=(const TickInterval& lhs, const TickInterval& rhs) argument
126 operator <(const TickInterval& lhs, const TickInterval& rhs) argument
130 operator >=(const TickInterval& lhs, const TickInterval& rhs) argument
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dlist_unittest.cc309 bool CompareLists(const ListWrapperSimple* lhs, const ListWrapperSimple* rhs) { argument
310 const unsigned int list_size = lhs->GetSize();
311 if (lhs->GetSize() != rhs->GetSize()) {
314 if (lhs->Empty()) {
318 ListItem* lhs_item = lhs->First();
327 if (lhs->GetUnsignedItem(lhs_item) != rhs->GetUnsignedItem(rhs_item)) {
331 lhs_item = lhs->Next(lhs_item);
H A Dmap_unittest.cc138 bool CompareMaps(const MapWrapper& lhs, const MapWrapper& rhs) { argument
139 const int map_size = lhs.Size();
144 MapItem* lhs_item = lhs.First();
154 lhs_item = lhs.Next(lhs_item);
/external/valgrind/main/drd/
H A Ddrd_bitmap.c945 * Return True if the two bitmaps *lhs and *rhs are identical, and false
948 Bool DRD_(bm_equal)(struct bitmap* const lhs, struct bitmap* const rhs) argument
954 /* so complain if lhs == rhs. */
955 tl_assert(lhs != rhs);
957 VG_(OSetGen_ResetIter)(lhs->oset);
960 for ( ; (bm2l = VG_(OSetGen_Next)(lhs->oset)) != 0; )
963 && ! DRD_(bm_has_any_access)(lhs,
967 bm2l = VG_(OSetGen_Next)(lhs->oset);
1019 /** Merge bitmaps *lhs and *rhs into *lhs
1020 bm_merge2(struct bitmap* const lhs, struct bitmap* const rhs) argument
1111 bm_merge2_marked(struct bitmap* const lhs, struct bitmap* const rhs) argument
1162 bm_has_races(struct bitmap* const lhs, struct bitmap* const rhs) argument
[all...]
H A Ddrd_vc.c75 /** Assignment operator -- *lhs is already a valid vector clock. */
76 void DRD_(vc_assign)(VectorClock* const lhs, const VectorClock* const rhs) argument
78 DRD_(vc_cleanup)(lhs);
79 DRD_(vc_copy)(lhs, rhs);
H A Ddrd_vc.h78 void DRD_(vc_assign)(VectorClock* const lhs, const VectorClock* const rhs);
H A Dpub_drd_bitmap.h134 Bool DRD_(bm_equal)(struct bitmap* const lhs, struct bitmap* const rhs);
136 void DRD_(bm_merge2)(struct bitmap* const lhs, struct bitmap* const rhs);
141 void DRD_(bm_merge2_marked)(struct bitmap* const lhs, struct bitmap* const rhs);
/external/valgrind/main/memcheck/
H A Dmc_main.c5191 static Bool MC_(parse_leak_heuristics) ( const HChar *str0, UInt *lhs )
5194 str0, lhs);
/external/stlport/stlport/stl/
H A D_string_sum.h96 __bstr_sum (_Left const& lhs, _Right const& rhs) : argument
97 _lhs(lhs), _rhs(rhs) {}
/external/stlport/test/eh/
H A DSortClass.h58 inline bool operator>( const SortClass& lhs, const SortClass& rhs ) { argument
59 return rhs < lhs;
62 inline bool operator<=( const SortClass& lhs, const SortClass& rhs ) { argument
63 return !(rhs < lhs);
66 inline bool operator>=( const SortClass& lhs, const SortClass& rhs ) { argument
67 return !(lhs < rhs);
70 inline bool operator != ( const SortClass& lhs, const SortClass& rhs ) { argument
71 return !(lhs == rhs);
H A DTestClass.h138 inline bool operator>( const TestClass& lhs, const TestClass& rhs ) { argument
139 return rhs < lhs;
142 inline bool operator>=( const TestClass& lhs, const TestClass& rhs ) { argument
143 return !(lhs < rhs);
146 inline bool operator<=( const TestClass& lhs, const TestClass& rhs ) { argument
147 return !(rhs < lhs);
150 inline bool operator != ( const TestClass& lhs, const TestClass& rhs ) { argument
151 return lhs.value() != rhs.value();
/external/stlport/test/unit/
H A Dlimits_test.cpp120 bool test_float_values(_Tp lhs, _Tp rhs) argument
121 { return lhs == rhs; }
H A Dmap_test.cpp313 bool operator () (Key lhs, Key rhs) const argument
314 { return lhs.m_data < rhs.m_data; }
316 bool operator () (Key lhs, int rhs) const argument
317 { return lhs.m_data < rhs; }
319 bool operator () (int lhs, Key rhs) const argument
320 { return lhs < rhs.m_data; }
325 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const argument
326 { return (*lhs).m_data < (*rhs).m_data; }
328 bool operator () (Key const volatile *lhs, int rhs) const argument
329 { return (*lhs)
331 operator ()(int lhs, Key const volatile *rhs) const argument
[all...]
H A Dset_test.cpp215 bool operator () (SetTestClass const& lhs, SetTestClass const& rhs) const { argument
216 return lhs.data() < rhs.data();
370 bool operator () (Key lhs, Key rhs) const argument
371 { return lhs.m_data < rhs.m_data; }
373 bool operator () (Key lhs, int rhs) const argument
374 { return lhs.m_data < rhs; }
376 bool operator () (int lhs, Key rhs) const argument
377 { return lhs < rhs.m_data; }
382 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const argument
383 { return (*lhs)
385 operator ()(Key const volatile *lhs, int rhs) const argument
388 operator ()(int lhs, Key const volatile *rhs) const argument
[all...]
H A Dunordered_test.cpp537 bool operator () (Key lhs, Key rhs) const argument
538 { return lhs.m_data == rhs.m_data; }
540 bool operator () (Key lhs, int rhs) const argument
541 { return lhs.m_data == rhs; }
543 bool operator () (int lhs, Key rhs) const argument
544 { return lhs == rhs.m_data; }
558 bool operator () (Key const volatile *lhs, Key const volatile *rhs) const argument
559 { return lhs->m_data == rhs->m_data; }
561 bool operator () (Key const volatile *lhs, int rhs) const argument
562 { return lhs
564 operator ()(int lhs, Key const volatile *rhs) const argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11126 int r1; /* Value to return if (lhs > rhs) */
11127 int r2; /* Value to return if (rhs < lhs) */
11306 ** a CASE expression or an IN expression of the form "<lhs> IN (<y>, <z>...)".
11308 ** the form "<lhs> IN (SELECT ...)". If the EP_xIsSelect bit is set in the
65701 i64 lhs = vdbeRecordDecodeInt(serial_type, &aKey1[d1]); local
65720 double lhs; local
65845 i64 lhs; local
119139 YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ member in struct:__anon31024
138327 fts3CompareElemByTerm(const void *lhs, const void *rhs) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11126 int r1; /* Value to return if (lhs > rhs) */
11127 int r2; /* Value to return if (rhs < lhs) */
11306 ** a CASE expression or an IN expression of the form "<lhs> IN (<y>, <z>...)".
11308 ** the form "<lhs> IN (SELECT ...)". If the EP_xIsSelect bit is set in the
65721 i64 lhs = vdbeRecordDecodeInt(serial_type, &aKey1[d1]); local
65740 double lhs; local
65865 i64 lhs; local
119159 YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ member in struct:__anon31055
138359 fts3CompareElemByTerm(const void *lhs, const void *rhs) argument
[all...]
/external/srec/srec/Semproc/include/
H A DSR_ExpressionParser.h99 * buffer for holding the token on the lhs of equal sign
101 LCHAR lhs[MAX_STRING_LEN]; member in struct:ExpressionParser_t
/external/srec/srec/Semproc/src/
H A DExpressionParser.c181 /* initially I want ptokenBuf to point to the lhs */
182 self->ptokenBuf = self->lhs;
361 if (self->lhs[0] == STRING_DELIM)
363 PLogError(L("ESR_INVALID_ARGUMENT: %s"), self->lhs);
408 CHKLOG(rc, ST_putKeyValue(symtable, self->lhs, result));
411 CHKLOG(rc, ST_putKeyValue(symtable, self->lhs, L("undefined")));
417 CHKLOG(rc, ST_putKeyValue(symtable, self->lhs, operands[0]));
/external/skia/src/core/
H A DSkRTree.h133 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) const { argument
134 return lhs.fBounds.*fSide < rhs.fBounds.*fSide;
141 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
142 return ((lhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1) <
143 ((rhs.fBounds.fRight - lhs.fBounds.fLeft) >> 1);
148 bool operator()(const SkRTree::Branch lhs, const SkRTree::Branch rhs) { argument
149 return ((lhs.fBounds.fBottom - lhs.fBounds.fTop) >> 1) <
150 ((rhs.fBounds.fBottom - lhs
[all...]
/external/skia/src/gpu/effects/
H A DGrTextureStripAtlas.h123 static bool KeyLess(const AtlasRow& lhs, const AtlasRow& rhs) { argument
124 return lhs.fKey < rhs.fKey;
/external/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp81 const SkFloatingPoint<float, 10> lhs(a), rhs(b);
82 return lhs.AlmostEquals(rhs);
/external/skia/tools/
H A Dskdiff.h162 const DiffRecord* lhs = *reinterpret_cast<DiffRecord* const *>(untyped_lhs); local
167 if (lhs->fResult != rhs->fResult) {
168 return (lhs->fResult < rhs->fResult) ? 1 : -1;
172 int result = T::comparePixels(lhs, rhs);
179 return strcmp(lhs->fBase.fFilename.c_str(), rhs->fBase.fFilename.c_str());
186 static int comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) { argument
187 if (lhs->fFractionDifference < rhs->fFractionDifference) {
190 if (rhs->fFractionDifference < lhs->fFractionDifference) {
199 static int comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) { argument
200 if (lhs
214 comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) argument
235 comparePixels(const DiffRecord* lhs, const DiffRecord* rhs) argument
[all...]
H A Dskdiff_main.cpp276 static int compare_file_name_metrics(SkString **lhs, SkString **rhs) { argument
277 return strcmp((*lhs)->c_str(), (*rhs)->c_str());

Completed in 1054 milliseconds

1234567891011>>