HomeSort by relevance Sort by last modified time
    Searched refs:Round (Results 101 - 125 of 136) sorted by null

1 2 3 45 6

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/x86/
387.go 249 // Round to nearest float32.
  /prebuilts/go/darwin-x86/src/runtime/
race.go 261 // Round data segment to page boundaries, because it's used in mmap().
288 size := round(end-start, _PageSize)
malloc.go 29 // 1. Round the size up to one of the small size classes
282 arenaSize := round(_MaxMem, _PageSize)
285 spansSize = round(spansSize, _PageSize)
333 spansSize = round(spansSize, _PageSize)
342 // away from the running binary image and then round up
344 p = round(firstmoduledata.end+(1<<18), 1<<20)
358 // To overcome this we ask for PageSize more and round up the pointer.
359 p1 := round(p, _PageSize)
393 p_size := round(n+_PageSize, 256<<20)
449 p_size := round(n, _PageSize) + _PageSiz
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/x86/
387.go 249 // Round to nearest float32.
  /prebuilts/go/linux-x86/src/runtime/
race.go 261 // Round data segment to page boundaries, because it's used in mmap().
288 size := round(end-start, _PageSize)
malloc.go 29 // 1. Round the size up to one of the small size classes
282 arenaSize := round(_MaxMem, _PageSize)
285 spansSize = round(spansSize, _PageSize)
333 spansSize = round(spansSize, _PageSize)
342 // away from the running binary image and then round up
344 p = round(firstmoduledata.end+(1<<18), 1<<20)
358 // To overcome this we ask for PageSize more and round up the pointer.
359 p1 := round(p, _PageSize)
393 p_size := round(n+_PageSize, 256<<20)
449 p_size := round(n, _PageSize) + _PageSiz
    [all...]
  /external/vixl/src/aarch64/
logic-aarch64.cc 86 double Simulator::FixedToDouble(int64_t src, int fbits, FPRounding round) {
88 return UFixedToDouble(src, fbits, round);
90 return -UFixedToDouble(src, fbits, round);
92 return -UFixedToDouble(-src, fbits, round);
97 double Simulator::UFixedToDouble(uint64_t src, int fbits, FPRounding round) {
109 return FPRoundToDouble(0, exponent, src, round);
113 float Simulator::FixedToFloat(int64_t src, int fbits, FPRounding round) {
115 return UFixedToFloat(src, fbits, round);
117 return -UFixedToFloat(src, fbits, round);
119 return -UFixedToFloat(-src, fbits, round);
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/syntax/
parse.go 410 // Round 1: Factor out common literal prefixes.
473 // Round 2: Factor out common simple prefixes,
529 // Round 3: Collapse runs of single literals into character classes.
576 // Round 4: Collapse runs of empty matches into a single empty match.
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
parse.go 410 // Round 1: Factor out common literal prefixes.
473 // Round 2: Factor out common simple prefixes,
529 // Round 3: Collapse runs of single literals into character classes.
576 // Round 4: Collapse runs of empty matches into a single empty match.
    [all...]
  /frameworks/rs/script_api/
rs_math.spec 38 subnormal values, i.e. smaller than 1.17549435e-38f. rs_fp_rull also requires round to nearest
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX86Base.h 163 // Round up to the next multiple of WordType bytes.
635 Context.insert<typename Traits::Insts::Round>(Dest, Src0, Imm);
    [all...]
IceInstX86Base.h 169 Round,
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
benchmark.go 279 // Round up to something easy to read.
  /prebuilts/go/linux-x86/src/testing/
benchmark.go 279 // Round up to something easy to read.
  /external/swiftshader/src/Reactor/
SubzeroReactor.cpp     [all...]
Reactor.hpp     [all...]
LLVMReactor.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]
  /external/iproute2/doc/
ip-cref.tex 850 *** Round 1, deleting 3 addresses ***
851 *** Flush is complete after 1 round ***
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 260 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) function in namespace:vkt::shaderexecutor
449 ret[ndx] = round(fmt, value[ndx]);
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 281 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) function in namespace:deqp::gls::BuiltinPrecisionTests
470 ret[ndx] = round(fmt, value[ndx]);
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-encoding-vmx.s     [all...]
  /prebuilts/go/darwin-x86/src/math/big/
float_test.go 381 // round
389 t.Errorf("round %s (%d bits, %s) incorrect: got %s (%d bits, %s); want %s (%d bits, %s)",
402 t.Errorf("round %s (%d bits, %s) not symmetric: got %s and %s; want %s",
415 t.Errorf("round %s (%d bits, %s) not idempotent: got %s and %s; want %s",
534 t.Errorf("Round(%g, 24) = %g; want %g", x, got, want)
562 want := x &^ (1<<(64-prec) - 1) // cut off (round to zero) low 64-prec bits
597 want := x &^ (1<<(63-prec) - 1) // cut off (round to zero) low 63-prec bits
640 want := float64(x &^ (1<<(52-prec) - 1)) // cut off (round to zero) low 53-prec bits
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
float_test.go 381 // round
389 t.Errorf("round %s (%d bits, %s) incorrect: got %s (%d bits, %s); want %s (%d bits, %s)",
402 t.Errorf("round %s (%d bits, %s) not symmetric: got %s and %s; want %s",
415 t.Errorf("round %s (%d bits, %s) not idempotent: got %s and %s; want %s",
534 t.Errorf("Round(%g, 24) = %g; want %g", x, got, want)
562 want := x &^ (1<<(64-prec) - 1) // cut off (round to zero) low 64-prec bits
597 want := x &^ (1<<(63-prec) - 1) // cut off (round to zero) low 63-prec bits
640 want := float64(x &^ (1<<(52-prec) - 1)) // cut off (round to zero) low 53-prec bits
    [all...]

Completed in 1069 milliseconds

1 2 3 45 6