Home
last modified time | relevance | path

Searched refs:lhs (Results 1 – 25 of 28) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dspark.py183 lhs = rules[index[i]]
185 rule = (lhs, tuple(rhs))
190 if self.rules.has_key(lhs):
191 self.rules[lhs].append(rule)
193 self.rules[lhs] = [ rule ]
214 lhs = rulelist[0][0]
215 self.nullable[lhs] = 0
219 self.nullable[lhs] = 1
235 for lhs, rhs in tbd:
236 if self.nullable[lhs]:
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DATokPtr.h48 ANTLRTokenPtr(const ANTLRTokenPtr &lhs) {ptr_ = lhs.ptr_; lhs.ref();} in ANTLRTokenPtr() argument
61 void operator = (const ANTLRTokenPtr & lhs); // MR1
DATokPtr.cpp68 void ANTLRTokenPtr::operator = (const ANTLRTokenPtr & lhs) // MR1 in operator =() argument
70 lhs.ref(); // protect against "xp = xp"; ie same underlying object in operator =()
72 ptr_ = lhs.ptr_; in operator =()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DATokPtr.h48 ANTLRTokenPtr(const ANTLRTokenPtr &lhs) {ptr_ = lhs.ptr_; lhs.ref();} in ANTLRTokenPtr() argument
61 void operator = (const ANTLRTokenPtr & lhs); // MR1
DATokPtrImpl.h74 void ANTLRTokenPtr::operator = (const ANTLRTokenPtr & lhs) // MR1
76 lhs.ref(); // protect against "xp = xp"; ie same underlying object
78 ptr_ = lhs.ptr_;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
DddMultiply.decTest64 ddmul033 multiply 0E-3 00.00 -> 0.00000 -- lhs is 0
68 ddmul037 multiply -0E-3 00.00 -> -0.00000 -- lhs is 0
72 ddmul041 multiply 0E-3 -00.00 -> -0.00000 -- lhs is 0
76 ddmul045 multiply -0E-3 -00.00 -> 0.00000 -- lhs is 0
DdqMultiply.decTest64 dqmul033 multiply 0E-3 00.00 -> 0.00000 -- lhs is 0
68 dqmul037 multiply -0E-3 00.00 -> -0.00000 -- lhs is 0
72 dqmul041 multiply 0E-3 -00.00 -> -0.00000 -- lhs is 0
76 dqmul045 multiply -0E-3 -00.00 -> 0.00000 -- lhs is 0
DddNextToward.decTest50 ------- lhs=rhs
88 ------- lhs<rhs
182 ------- lhs>rhs
DdqNextToward.decTest51 ------- lhs=rhs
89 ------- lhs<rhs
183 ------- lhs>rhs
Dnexttoward.decTest40 ------- lhs=rhs
78 ------- lhs<rhs
199 ------- lhs>rhs
Dmultiply.decTest72 mulx033 multiply 0E-3 00.00 -> 0.00000 -- lhs is 0
76 mulx037 multiply -0E-3 00.00 -> -0.00000 -- lhs is 0
80 mulx041 multiply 0E-3 -00.00 -> -0.00000 -- lhs is 0
84 mulx045 multiply -0E-3 -00.00 -> 0.00000 -- lhs is 0
Dminus.decTest51 -- "lhs" zeros in plus and minus have exponent = operand
Dplus.decTest90 -- "lhs" zeros in plus and minus have exponent = operand
DddDivideInt.decTest218 -- GD edge cases: lhs smaller than rhs but more digits
DdqDivideInt.decTest219 -- GD edge cases: lhs smaller than rhs but more digits
Ddivideint.decTest237 -- GD edge cases: lhs smaller than rhs but more digits
Dpower.decTest183 -- '123456789E+10' -- lhs .. rounded to 1.23E+18
229 -- a few lhs negatives
975 -- number line milestones with lhs<1 and lhs>1
DddFMA.decTest175 ddfma2033 fma 0E-3 00.00 0e+384 -> 0.00000 -- lhs is 0
179 ddfma2037 fma -0E-3 00.00 0e+384 -> 0.00000 -- lhs is 0
183 ddfma2041 fma 0E-3 -00.00 0e+384 -> 0.00000 -- lhs is 0
187 ddfma2045 fma -0E-3 -00.00 -0e+384 -> 0.00000 -- lhs is 0
DdqFMA.decTest178 dqfma2033 fma 0E-3 00.00 0e+6144 -> 0.00000 -- lhs is 0
182 dqfma2037 fma -0E-3 00.00 0e+6144 -> 0.00000 -- lhs is 0
186 dqfma2041 fma 0E-3 -00.00 0e+6144 -> 0.00000 -- lhs is 0
190 dqfma2045 fma -0E-3 -00.00 0e+6144 -> 0.00000 -- lhs is 0
Dfma.decTest171 fmax2033 fma 0E-3 00.00 0E+999999 -> 0.00000 -- lhs is 0
175 fmax2037 fma -0E-3 00.00 0E+999999 -> 0.00000 -- lhs is 0
179 fmax2041 fma 0E-3 -00.00 0E+999999 -> 0.00000 -- lhs is 0
183 fmax2045 fma -0E-3 -00.00 0E+999999 -> 0.00000 -- lhs is 0
1800 -- Add: lhs and rhs 0
1808 -- Add: lhs >> rhs and vice versa
1816 -- Add: lhs + rhs fma 1 ition carried out
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_math.py99 lhs, rhs = line.split('->')
100 id, fn, arg = lhs.split()
119 lhs, rhs = line.split('->')
120 id, fn, arg_real, arg_imag = lhs.split()
Dtest_float.py613 lhs, rhs = map(str.strip, line.split('->'))
614 fmt, arg = lhs.split()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
Dpydoc.py924 lhs = name and '<strong>%s</strong> = ' % name or ''
925 return lhs + self.repr(object)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
Dpydoc.py987 lhs = name and '<strong>%s</strong> = ' % name or ''
988 return lhs + self.repr(object)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpydoc.py924 lhs = name and '<strong>%s</strong> = ' % name or ''
925 return lhs + self.repr(object)

12