Home
last modified time | relevance | path

Searched refs:lcg (Results 1 – 24 of 24) sorted by relevance

/external/skqp/experimental/canvaskit/htmlcanvas/
Dlineargradient.js38 var lcg = new LinearCanvasGradient(x1, y1, x2, y2);
39 lcg._colors = this._colors.slice();
40 lcg._pos = this._pos.slice();
41 return lcg;
Dcanvas2dcontext.js567 var lcg = new LinearCanvasGradient(x1, y1, x2, y2);
568 this._toCleanUp.push(lcg);
569 return lcg;
/external/skia/modules/canvaskit/htmlcanvas/
Dlineargradient.js38 var lcg = new LinearCanvasGradient(x1, y1, x2, y2);
39 lcg._colors = this._colors.slice();
40 lcg._pos = this._pos.slice();
41 return lcg;
Dcanvas2dcontext.js548 var lcg = new LinearCanvasGradient(x1, y1, x2, y2);
549 this._toCleanUp.push(lcg);
550 return lcg;
/external/rust/crates/num-integer/benches/
Droots.rs51 fn lcg<T>(x: T) -> T in lcg() function
72 x = lcg(x); in bench_rand()
88 x = lcg(x); in bench_rand_pos()
90 x = lcg(x); in bench_rand_pos()
Daverage.rs22 fn lcg<T>(x: T) -> T in lcg() function
219 .map(|(x, y)| (super::lcg(x), super::lcg(y)))
/external/libtextclassifier/abseil-cpp/absl/random/internal/
Dpcg_engine.h82 state_ = lcg(state_); in operator()
88 state_ = lcg(tmp + Params::increment());
179 static inline constexpr state_type lcg(state_type s) { in lcg() function
214 state_ = lcg(tmp + params_type::increment()); in reseed()
/external/openscreen/third_party/abseil/src/absl/random/internal/
Dpcg_engine.h82 state_ = lcg(state_); in operator()
88 state_ = lcg(tmp + Params::increment());
179 static inline constexpr state_type lcg(state_type s) { in lcg() function
214 state_ = lcg(tmp + params_type::increment()); in reseed()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/internal/
Dpcg_engine.h82 state_ = lcg(state_); in operator()
88 state_ = lcg(tmp + Params::increment());
179 static inline constexpr state_type lcg(state_type s) { in lcg() function
214 state_ = lcg(tmp + params_type::increment()); in reseed()
/external/angle/third_party/abseil-cpp/absl/random/internal/
Dpcg_engine.h83 state_ = lcg(state_); in operator()
89 state_ = lcg(tmp + Params::increment());
180 static inline constexpr state_type lcg(state_type s) { in lcg() function
215 state_ = lcg(tmp + params_type::increment()); in reseed()
/external/abseil-cpp/absl/random/internal/
Dpcg_engine.h82 state_ = lcg(state_); in operator()
88 state_ = lcg(tmp + Params::increment());
179 static inline constexpr state_type lcg(state_type s) { in lcg() function
214 state_ = lcg(tmp + params_type::increment()); in reseed()
/external/webrtc/third_party/abseil-cpp/absl/random/internal/
Dpcg_engine.h82 state_ = lcg(state_); in operator()
88 state_ = lcg(tmp + Params::increment());
179 static inline constexpr state_type lcg(state_type s) { in lcg() function
214 state_ = lcg(tmp + params_type::increment()); in reseed()
/external/llvm/lib/Passes/
DPassRegistry.def23 MODULE_ANALYSIS("lcg", LazyCallGraphAnalysis())
63 MODULE_PASS("print-lcg", LazyCallGraphPrinterPass(dbgs()))
64 MODULE_PASS("print-lcg-dot", LazyCallGraphDOTPrinterPass(dbgs()))
/external/llvm-project/llvm/test/Analysis/LazyCallGraph/
Dalias.ll1 ; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s
Dnon-leaf-intrinsics.ll1 ; RUN: opt -S -disable-output -passes=print-lcg < %s 2>&1 | FileCheck %s
Dbasic.ll1 ; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s
/external/llvm/test/Analysis/LazyCallGraph/
Dnon-leaf-intrinsics.ll1 ; RUN: opt -S -disable-output -passes=print-lcg < %s 2>&1 | FileCheck %s
Dbasic.ll1 ; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/
DPassRegistry.def22 MODULE_ANALYSIS("lcg", LazyCallGraphAnalysis())
78 MODULE_PASS("print-lcg", LazyCallGraphPrinterPass(dbgs()))
79 MODULE_PASS("print-lcg-dot", LazyCallGraphDOTPrinterPass(dbgs()))
/external/llvm-project/llvm/lib/Passes/
DPassRegistry.def22 MODULE_ANALYSIS("lcg", LazyCallGraphAnalysis())
92 MODULE_PASS("print-lcg", LazyCallGraphPrinterPass(dbgs()))
93 MODULE_PASS("print-lcg-dot", LazyCallGraphDOTPrinterPass(dbgs()))
/external/flatbuffers/tests/
Dgo_test.go1620 func (lcg *LCG) Reset() {
1621 *lcg = InitialLCGSeed
1624 func (lcg *LCG) Next() uint32 {
1625 n := uint32((uint64(*lcg) * uint64(279470273)) % uint64(4294967291))
1626 *lcg = LCG(n)
/external/python/cpython3/Lib/test/
Dtest_hash.py15 def lcg(x, length=16): function
/external/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs1209 let mut lcg = LCG::new(); in table_of_mixed_scalars_fuzz() localVariable
1216 … let fields_per_object = (lcg.next() % (max_fields_per_object as u64)) as flatbuffers::VOffsetT; in table_of_mixed_scalars_fuzz()
1220 let choice = lcg.next() % (test_value_types_max as u64); in table_of_mixed_scalars_fuzz()
1247 lcg.reset(); in table_of_mixed_scalars_fuzz()
1259 … let fields_per_object = (lcg.next() % (max_fields_per_object as u64)) as flatbuffers::VOffsetT; in table_of_mixed_scalars_fuzz()
1261 let choice = lcg.next() % (test_value_types_max as u64); in table_of_mixed_scalars_fuzz()
/external/llvm/lib/Target/SystemZ/
DSystemZInstrInfo.td812 def LCGR : UnaryRRE<"lcg", 0xB903, ineg, GR64, GR64>;