/external/skqp/experimental/canvaskit/htmlcanvas/ |
D | lineargradient.js | 38 var lcg = new LinearCanvasGradient(x1, y1, x2, y2); 39 lcg._colors = this._colors.slice(); 40 lcg._pos = this._pos.slice(); 41 return lcg;
|
D | canvas2dcontext.js | 567 var lcg = new LinearCanvasGradient(x1, y1, x2, y2); 568 this._toCleanUp.push(lcg); 569 return lcg;
|
/external/skia/modules/canvaskit/htmlcanvas/ |
D | lineargradient.js | 38 var lcg = new LinearCanvasGradient(x1, y1, x2, y2); 39 lcg._colors = this._colors.slice(); 40 lcg._pos = this._pos.slice(); 41 return lcg;
|
D | canvas2dcontext.js | 548 var lcg = new LinearCanvasGradient(x1, y1, x2, y2); 549 this._toCleanUp.push(lcg); 550 return lcg;
|
/external/rust/crates/num-integer/benches/ |
D | roots.rs | 51 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()
|
D | average.rs | 22 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/ |
D | pcg_engine.h | 82 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/ |
D | pcg_engine.h | 82 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/ |
D | pcg_engine.h | 82 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/ |
D | pcg_engine.h | 83 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/ |
D | pcg_engine.h | 82 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/ |
D | pcg_engine.h | 82 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/ |
D | PassRegistry.def | 23 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/ |
D | alias.ll | 1 ; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s
|
D | non-leaf-intrinsics.ll | 1 ; RUN: opt -S -disable-output -passes=print-lcg < %s 2>&1 | FileCheck %s
|
D | basic.ll | 1 ; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s
|
/external/llvm/test/Analysis/LazyCallGraph/ |
D | non-leaf-intrinsics.ll | 1 ; RUN: opt -S -disable-output -passes=print-lcg < %s 2>&1 | FileCheck %s
|
D | basic.ll | 1 ; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/ |
D | PassRegistry.def | 22 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/ |
D | PassRegistry.def | 22 MODULE_ANALYSIS("lcg", LazyCallGraphAnalysis()) 92 MODULE_PASS("print-lcg", LazyCallGraphPrinterPass(dbgs())) 93 MODULE_PASS("print-lcg-dot", LazyCallGraphDOTPrinterPass(dbgs()))
|
/external/flatbuffers/tests/ |
D | go_test.go | 1620 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/ |
D | test_hash.py | 15 def lcg(x, length=16): function
|
/external/flatbuffers/tests/rust_usage_test/tests/ |
D | integration_test.rs | 1209 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/ |
D | SystemZInstrInfo.td | 812 def LCGR : UnaryRRE<"lcg", 0xB903, ineg, GR64, GR64>;
|