Home
last modified time | relevance | path

Searched refs:rhs (Results 1 – 25 of 37) sorted by relevance

12

/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
DSmartPtr.h40 SmartPtr<T,threadSafe>(const SmartPtr<T,false>& rhs) {
47 m_pRefCount = rhs.m_pRefCount;
48 m_ptr = rhs.m_ptr;
52 SmartPtr<T,threadSafe>(SmartPtr<T,true>& rhs) {
59 if (rhs.m_lock) mutex_lock(rhs.m_lock);
60 m_pRefCount = rhs.m_pRefCount;
61 m_ptr = rhs.m_ptr;
63 if (rhs.m_lock) mutex_unlock(rhs.m_lock);
103 SmartPtr<T,threadSafe>& operator=(const SmartPtr<T,false>& rhs)
105 if (m_ptr == rhs.m_ptr)
[all …]
DIndexRangeCache.h77 bool operator<(const IndexRangeKey& rhs) const {
79 size_t start_other = rhs.offset;
81 size_t end_other = rhs.offset + rhs.count * glSizeof(rhs.type);
87 if (type != rhs.type) return type < rhs.type;
88 if (count != rhs.count) return count < rhs.count;
89 if (primitiveRestartEnabled != rhs.primitiveRestartEnabled)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dspark.py184 rhs = rules[index[i]+2:index[i+1]]
185 rule = (lhs, tuple(rhs))
217 rhs = rule[1]
218 if len(rhs) == 0:
227 for sym in rhs:
235 for lhs, rhs in tbd:
238 for sym in rhs:
267 lhs, rhs = rule
268 n = len(rhs)
270 sym = rhs[i]
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DAToken.h215 virtual ANTLRCommonNoRefCountToken& operator =(const ANTLRCommonNoRefCountToken& rhs) {
220 *( (ANTLRAbstractToken *) this ) = rhs;
222 setType(rhs._type);
223 setLine(rhs._line);
224 setText(rhs._text);
288 virtual ANTLRCommonToken& operator =(const ANTLRCommonToken& rhs) {
293 *( (ANTLRRefCountToken *) this) = rhs;
295 setType(rhs._type);
296 setLine(rhs._line);
297 setText(rhs._text);
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DAToken.h235 virtual ANTLRCommonNoRefCountToken& operator =(const ANTLRCommonNoRefCountToken& rhs) {
240 *( (ANTLRAbstractToken *) this ) = rhs;
242 setType(rhs._type);
243 setLine(rhs._line);
244 setText(rhs._text);
308 virtual ANTLRCommonToken& operator =(const ANTLRCommonToken& rhs) {
313 *( (ANTLRRefCountToken *) this) = rhs;
315 setType(rhs._type);
316 setLine(rhs._line);
317 setText(rhs._text);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
DddNextToward.decTest2 -- ddNextToward.decTest -- decDouble next toward rhs [754r nextafter] --
50 ------- lhs=rhs
88 ------- lhs<rhs
182 ------- lhs>rhs
DdqNextToward.decTest2 -- dqNextToward.decTest -- decQuad next toward rhs [754r nextafter] --
51 ------- lhs=rhs
89 ------- lhs<rhs
183 ------- lhs>rhs
Dnexttoward.decTest2 -- nexttoward.decTest -- decimal next toward rhs [754r nextafter] --
40 ------- lhs=rhs
78 ------- lhs<rhs
199 ------- lhs>rhs
DddRotate.decTest43 -- rhs must be an integer
52 -- and |rhs| <= precision
Drotate.decTest40 -- rhs must be an integer
49 -- and |rhs| <= precision
Dshift.decTest40 -- rhs must be an integer
49 -- and |rhs| <= precision
DddShift.decTest43 -- rhs must be an integer
52 -- and |rhs| <= precision
DddMultiply.decTest63 ddmul032 multiply 00.00 0E-3 -> 0.00000 -- rhs is 0
67 ddmul036 multiply -00.00 0E-3 -> -0.00000 -- rhs is 0
71 ddmul040 multiply 00.00 -0E-3 -> -0.00000 -- rhs is 0
75 ddmul044 multiply -00.00 -0E-3 -> 0.00000 -- rhs is 0
DdqMultiply.decTest63 dqmul032 multiply 00.00 0E-3 -> 0.00000 -- rhs is 0
67 dqmul036 multiply -00.00 0E-3 -> -0.00000 -- rhs is 0
71 dqmul040 multiply 00.00 -0E-3 -> -0.00000 -- rhs is 0
75 dqmul044 multiply -00.00 -0E-3 -> 0.00000 -- rhs is 0
DdqRotate.decTest43 -- rhs must be an integer
52 -- and |rhs| <= precision
DdqShift.decTest43 -- rhs must be an integer
52 -- and |rhs| <= precision
DddCopySign.decTest2 -- ddCopySign.decTest -- quiet decDouble copy with sign from rhs --
Dcopysign.decTest2 -- copysign.decTest -- quiet copy with sign from rhs --
DdqCopySign.decTest2 -- dqCopySign.decTest -- quiet decQuad copy with sign from rhs --
Dmultiply.decTest71 mulx032 multiply 00.00 0E-3 -> 0.00000 -- rhs is 0
75 mulx036 multiply -00.00 0E-3 -> -0.00000 -- rhs is 0
79 mulx040 multiply 00.00 -0E-3 -> -0.00000 -- rhs is 0
83 mulx044 multiply -00.00 -0E-3 -> 0.00000 -- rhs is 0
Dscaleb.decTest28 -- Max |rhs| is 2*(999+9) = 2016
DddScaleB.decTest29 -- Max |rhs| is 2*(384+16) = 800
DdqScaleB.decTest29 -- Max |rhs| is 2*(6144+34) = 12356
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_math.py99 lhs, rhs = line.split('->')
101 rhs_pieces = rhs.split()
119 lhs, rhs = line.split('->')
121 rhs_pieces = rhs.split()
Dtest_float.py613 lhs, rhs = map(str.strip, line.split('->'))
616 self.assertEqual(fmt % arg, rhs)
618 self.assertEqual(fmt % -arg, '-' + rhs)

12