Home
last modified time | relevance | path

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

/third_party/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;
/third_party/flutter/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.js567 var lcg = new LinearCanvasGradient(x1, y1, x2, y2);
568 this._toCleanUp.push(lcg);
569 return lcg;
/third_party/skia/third_party/externals/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()
/third_party/boost/boost/random/
Dlinear_congruential.hpp244 const linear_congruential_engine& lcg) in operator <<() argument
246 return os << lcg._x; in operator <<()
253 linear_congruential_engine& lcg) in operator >>() argument
255 lcg.read(is); in operator >>()
/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()
/third_party/libwebsockets/lib/core/
Dcontext.c686 context->lcg[LWSLCG_WSI].tag_prefix = "wsi"; in lws_create_context()
687 context->lcg[LWSLCG_VHOST].tag_prefix = "vh"; in lws_create_context()
688 context->lcg[LWSLCG_WSI_SERVER].tag_prefix = "wsisrv"; /* adopted */ in lws_create_context()
691 context->lcg[LWSLCG_WSI_MUX].tag_prefix = "mux"; /* a mux child wsi */ in lws_create_context()
695 context->lcg[LWSLCG_WSI_CLIENT].tag_prefix = "wsicli"; in lws_create_context()
700 context->lcg[LWSLCG_SS_CLIENT].tag_prefix = "SScli"; in lws_create_context()
703 context->lcg[LWSLCG_SS_SERVER].tag_prefix = "SSsrv"; in lws_create_context()
706 context->lcg[LWSLCG_WSI_SS_CLIENT].tag_prefix = "wsiSScli"; in lws_create_context()
709 context->lcg[LWSLCG_WSI_SS_SERVER].tag_prefix = "wsiSSsrv"; in lws_create_context()
796 context->lcg[LWSLCG_SSP_CLIENT].tag_prefix = "SSPcli"; in lws_create_context()
[all …]
Dprivate-lib-core.h449 lws_lifecycle_group_t lcg[LWSLCG_COUNT]; member
/third_party/skia/third_party/externals/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()))
/third_party/libwebsockets/lib/core-net/client/
Dconnect.c382 __lws_lc_tag(i->context, &i->context->lcg[ in lws_client_connect_via_info()
405 __lws_lc_tag(i->context, &i->context->lcg[LWSLCG_WSI_CLIENT], &wsi->lc, in lws_client_connect_via_info()
/third_party/flatbuffers/tests/
Dgo_test.go1702 func (lcg *LCG) Reset() {
1703 *lcg = InitialLCGSeed
1706 func (lcg *LCG) Next() uint32 {
1707 n := uint32((uint64(*lcg) * uint64(279470273)) % uint64(4294967291))
1708 *lcg = LCG(n)
/third_party/python/Lib/test/
Dtest_hash.py15 def lcg(x, length=16): function
/third_party/libwebsockets/lib/roles/netlink/
Dops-netlink.c516 __lws_lc_tag(context, &context->lcg[LWSLCG_VHOST], &wsi->lc, in rops_pt_init_destroy_netlink()
/third_party/libwebsockets/lib/roles/dbus/
Ddbus.c91 __lws_lc_tag(ctx->vh->context, &ctx->vh->context->lcg[LWSLCG_WSI], in __lws_shadow_wsi()
/third_party/libwebsockets/lib/plat/windows/
Dwindows-spawn.c418 __lws_lc_tag(i->vh->context, &i->vh->context->lcg[LWSLCG_WSI], in lws_spawn_piped()
/third_party/libwebsockets/lib/plat/unix/
Dunix-spawn.c385 __lws_lc_tag(i->vh->context, &i->vh->context->lcg[LWSLCG_WSI], in lws_spawn_piped()
/third_party/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs1436 let mut lcg = LCG::new(); in table_of_mixed_scalars_fuzz() localVariable
1443 … let fields_per_object = (lcg.next() % (max_fields_per_object as u64)) as flatbuffers::VOffsetT; in table_of_mixed_scalars_fuzz()
1447 let choice = lcg.next() % (test_value_types_max as u64); in table_of_mixed_scalars_fuzz()
1474 lcg.reset(); in table_of_mixed_scalars_fuzz()
1486 … let fields_per_object = (lcg.next() % (max_fields_per_object as u64)) as flatbuffers::VOffsetT; in table_of_mixed_scalars_fuzz()
1488 let choice = lcg.next() % (test_value_types_max as u64); in table_of_mixed_scalars_fuzz()
/third_party/libwebsockets/lib/core-net/
Dvhost.c640 __lws_lc_tag(context, &context->lcg[LWSLCG_VHOST], &vh->lc, "%s|%s|%d", in lws_create_vhost()
1126 __lws_lc_tag(context, &context->lcg[LWSLCG_WSI], &wsi->lc,
Dadopt.c72 __lws_lc_tag(vhost->context, &vhost->context->lcg[ in lws_create_new_server_wsi()
/third_party/libwebsockets/lib/secure-streams/
Dsecure-streams.c1046 __lws_lc_tag(context, &context->lcg[LWSLCG_WSI_SS_CLIENT], in lws_ss_create()
1052 __lws_lc_tag(context, &context->lcg[LWSLCG_WSI_SS_CLIENT], in lws_ss_create()
Dsecure-streams-client.c660 __lws_lc_tag(context, &context->lcg[LWSLCG_SSP_CLIENT], &h->lc, in lws_sspc_create()
/third_party/libwebsockets/lib/roles/http/server/
Dserver.c375 &a->vhost->context->lcg[LWSLCG_WSI], in _lws_vhost_init_server_af()