Home
last modified time | relevance | path

Searched refs:_round (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/llvm/test/CodeGen/X86/
Dfp-round.ll47 ; SSE2-NEXT: jmp _round ## TAILCALL
137 ; SSE2-NEXT: callq _round
141 ; SSE2-NEXT: callq _round
262 ; SSE2-NEXT: callq _round
266 ; SSE2-NEXT: callq _round
271 ; SSE2-NEXT: callq _round
275 ; SSE2-NEXT: callq _round
474 ; SSE2-NEXT: callq _round
478 ; SSE2-NEXT: callq _round
483 ; SSE2-NEXT: callq _round
[all …]
/external/libvpx/libvpx/test/
Dvp9_quantize_test.cc207 int _round; in quant_fp_nz() local
210 _round = ROUND_POWER_OF_TWO(round_ptr[rc != 0], 1); in quant_fp_nz()
212 _round = round_ptr[rc != 0]; in quant_fp_nz()
214 tmp = clamp(abs_coeff[y] + _round, INT16_MIN, INT16_MAX); in quant_fp_nz()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX86Base.h633 void _round(Variable *Dest, Operand *Src0, Operand *Imm) { in _round() function
923 void _round(Variable *Dest, Operand *Src, Constant *Imm) { in _round() function
DIceTargetLoweringX86BaseImpl.h4709 _round(T, SrcRM, Mode);
/external/python/cpython3/Lib/
D_pydecimal.py2646 def _round(self, places, rounding): member in Decimal
3789 self = self._round(precision+1, rounding)
3793 self = self._round(precision, rounding)
/external/python/cpython2/Lib/
Ddecimal.py2540 def _round(self, places, rounding): member in Decimal
3683 self = self._round(precision+1, rounding)
3687 self = self._round(precision, rounding)
/external/python/cpython3/Lib/test/
Dtest_decimal.py4660 self.assertRaises(ValueError, Decimal("3.1234")._round, 0, ROUND_UP)