HomeSort by relevance Sort by last modified time
    Searched refs:Tiny (Results 1 - 25 of 35) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/math/
remainder.go 41 Tiny = 4.45014771701440276618e-308 // 0x0020000000000000
65 if y < Tiny {
log1p.go 102 Tiny = 1.0 / (1 << 54) // 2**-54
135 if absx < Tiny { // |x| < 2**-54
erf.go 85 // = 2.0 - tiny (if x <= -6)
87 // erf(x) = sign(x)*(1.0 - tiny)
110 // erf(x) = sign(x) *(1 - tiny) (raise inexact)
111 // erfc(x) = tiny*tiny (raise underflow) if x > 0
112 // = 2 - tiny if x<0
266 const Tiny = 1.0 / (1 << 56) // 2**-56
283 if x < Tiny { // |x| < 2**-56
expm1.go 135 Tiny = 1.0 / (1 << 54) // 2**-54 = 0x3c90000000000000
196 } else if absx < Tiny { // when |x| < 2**-54, return x
lgamma.go 83 // lgamma(2+s) ~ s*(1-Euler) for tiny s
85 // lgamma(x) ~ -log(x) for tiny x
180 Tiny = 1.0 / (1 << 70) // 0x3b90000000000000 ~8.47033e-22
206 if x < Tiny { // if |x| < 2**-70, return -log(|x|)
  /prebuilts/go/linux-x86/src/math/
remainder.go 41 Tiny = 4.45014771701440276618e-308 // 0x0020000000000000
65 if y < Tiny {
log1p.go 102 Tiny = 1.0 / (1 << 54) // 2**-54
135 if absx < Tiny { // |x| < 2**-54
erf.go 85 // = 2.0 - tiny (if x <= -6)
87 // erf(x) = sign(x)*(1.0 - tiny)
110 // erf(x) = sign(x) *(1 - tiny) (raise inexact)
111 // erfc(x) = tiny*tiny (raise underflow) if x > 0
112 // = 2 - tiny if x<0
266 const Tiny = 1.0 / (1 << 56) // 2**-56
283 if x < Tiny { // |x| < 2**-56
expm1.go 135 Tiny = 1.0 / (1 << 54) // 2**-54 = 0x3c90000000000000
196 } else if absx < Tiny { // when |x| < 2**-54, return x
lgamma.go 83 // lgamma(2+s) ~ s*(1-Euler) for tiny s
85 // lgamma(x) ~ -log(x) for tiny x
180 Tiny = 1.0 / (1 << 70) // 0x3b90000000000000 ~8.47033e-22
206 if x < Tiny { // if |x| < 2**-70, return -log(|x|)
  /external/llvm/test/Bindings/OCaml/
irreader.ml 18 (* Tiny unit test framework - really just to help find which line is busted *)
passmgr_builder.ml 19 (* Tiny unit test framework - really just to help find which line is busted *)
vectorize.ml 20 (* Tiny unit test framework - really just to help find which line is busted *)
ipo.ml 21 (* Tiny unit test framework - really just to help find which line is busted *)
linker.ml 21 (* Tiny unit test framework - really just to help find which line is busted *)
scalar_opts.ml 20 (* Tiny unit test framework - really just to help find which line is busted *)
target.ml 21 (* Tiny unit test framework - really just to help find which line is busted *)
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
target.ml 18 (* Tiny unit test framework - really just to help find which line is busted *)
ipo_opts.ml 18 (* Tiny unit test framework - really just to help find which line is busted *)
scalar_opts.ml 17 (* Tiny unit test framework - really just to help find which line is busted *)
  /external/antlr/antlr-3.4/runtime/Perl5/tools/
port.pl 11 use YAML::Tiny;
116 my $port = YAML::Tiny->read('port.yml');
139 my $port = YAML::Tiny->read('port.yml');
  /prebuilts/go/darwin-x86/test/
recover.go 399 // tiny receiver, so basic wrapper in i.M()
424 // tiny receiver, so basic wrapper in i.M()
438 type Tiny struct{}
440 func (Tiny) M() {
463 var i I = Tiny{}
  /prebuilts/go/linux-x86/test/
recover.go 399 // tiny receiver, so basic wrapper in i.M()
424 // tiny receiver, so basic wrapper in i.M()
438 type Tiny struct{}
440 func (Tiny) M() {
463 var i I = Tiny{}
  /prebuilts/go/darwin-x86/src/runtime/
mcache.go 22 // Allocator cache for tiny objects w/o pointers.
23 // See "Tiny allocator" comment in malloc.go.
25 // tiny points to the beginning of the current tiny block, or
26 // nil if there is no current tiny block.
28 // tiny is a heap pointer. Since mcache is in non-GC'd memory,
31 tiny uintptr
33 local_tinyallocs uintptr // number of tiny allocs not counted in other stats
145 c.tiny = 0
  /prebuilts/go/linux-x86/src/runtime/
mcache.go 22 // Allocator cache for tiny objects w/o pointers.
23 // See "Tiny allocator" comment in malloc.go.
25 // tiny points to the beginning of the current tiny block, or
26 // nil if there is no current tiny block.
28 // tiny is a heap pointer. Since mcache is in non-GC'd memory,
31 tiny uintptr
33 local_tinyallocs uintptr // number of tiny allocs not counted in other stats
145 c.tiny = 0

Completed in 396 milliseconds

1 2