Searched refs:opb (Results 1 – 1 of 1) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | decimal.py | 3235 def _fill_logical(self, context, opa, opb): argument 3241 dif = context.prec - len(opb) 3243 opb = '0'*dif + opb 3245 opb = opb[-context.prec:] 3246 return opa, opb 3259 (opa, opb) = self._fill_logical(context, self._int, other._int) 3262 result = "".join([str(int(a)&int(b)) for a,b in zip(opa,opb)]) 3283 (opa, opb) = self._fill_logical(context, self._int, other._int) 3286 result = "".join([str(int(a)|int(b)) for a,b in zip(opa,opb)]) 3300 (opa, opb) = self._fill_logical(context, self._int, other._int) [all …]
|