Searched refs:Lsh (Results 1 – 11 of 11) sorted by relevance
/external/starlark-go/starlark/ |
D | int_test.go | 51 {f(1).Lsh(31), "80000000"}, 52 {f(1).Lsh(32), "100000000"},
|
D | int.go | 281 func (x Int) Lsh(y uint) Int { return MakeBigInt(new(big.Int).Lsh(x.bigInt(), y)) } func
|
D | eval_test.go | 724 …{starlark.MakeInt(1).Lsh(40), new(int32), "1099511627776 out of range (want value in signed 32-bit… 725 …{starlark.MakeInt(-1).Lsh(40), new(int32), "-1099511627776 out of range (want value in signed 32-b…
|
D | eval.go | 1100 return x.Lsh(uint(y)), nil
|
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | check_bn_tests.go | 190 r := new(big.Int).Lsh(test.Values["A"], uint(test.Values["N"].Uint64()))
|
/external/libchrome/base/numerics/ |
D | clamped_math.h | 229 BASE_NUMERIC_ARITHMETIC_OPERATORS(Clamped, Clamp, Lsh, <<, <<=)
|
D | checked_math.h | 344 BASE_NUMERIC_ARITHMETIC_OPERATORS(Checked, Check, Lsh, <<, <<=)
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | make_tables.go | 234 R.Lsh(R, uint(rounded64))
|
/external/boringssl/src/ssl/test/runner/ |
D | sign.go | 159 return bad.Lsh(bad, 20)
|
D | runner.go | 15453 serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128) 15519 serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
|
/external/pdfium/third_party/base/numerics/ |
D | safe_math.h | 457 BASE_NUMERIC_ARITHMETIC_OPERATORS(Lsh, <<, <<=)
|