Home
last modified time | relevance | path

Searched refs:smod (Results 1 – 25 of 800) sorted by relevance

12345678910>>...32

/dports/lang/solidity/solidity_0.8.11/test/libyul/ewasmTranslationTests/
H A Darithmetic_smod.yul2 sstore(0, smod(0, 1))
3 sstore(1, smod(1, not(0)))
4 sstore(2, smod(0, 0))
5 sstore(3, smod(1, 2))
6 sstore(4, smod(not(0), 1))
7 sstore(5, smod(
10 sstore(6, smod(not(0), 1))
11 sstore(7, smod(0xffffffffffffffffffffffffffffffff, 1))
15 sstore(11, smod(0xffffffffffffffffffffffffffffffff, 3))
16 sstore(12, smod(0xffffffffffffffff, 3))
[all …]
/dports/devel/upnp/pupnp-release-1.14.12/upnp/src/api/
H A Dupnpdebug.c167 const char *smod; in UpnpDisplayFileAndLine() local
186 smod = "SSDP"; in UpnpDisplayFileAndLine()
189 smod = "SOAP"; in UpnpDisplayFileAndLine()
192 smod = "GENA"; in UpnpDisplayFileAndLine()
195 smod = "TPOL"; in UpnpDisplayFileAndLine()
198 smod = "MSER"; in UpnpDisplayFileAndLine()
201 smod = "DOM_"; in UpnpDisplayFileAndLine()
204 smod = "API_"; in UpnpDisplayFileAndLine()
207 smod = "HTTP"; in UpnpDisplayFileAndLine()
210 smod = "UNKN"; in UpnpDisplayFileAndLine()
[all …]
/dports/net/libnpupnp/libnpupnp-4.1.5/src/api/
H A Dupnpdebug.cpp151 const char *smod; in UpnpDisplayFileAndLine() local
157 case SSDP: smod="SSDP";break; in UpnpDisplayFileAndLine()
158 case SOAP: smod="SOAP";break; in UpnpDisplayFileAndLine()
159 case GENA: smod="GENA";break; in UpnpDisplayFileAndLine()
160 case TPOOL: smod="TPOL";break; in UpnpDisplayFileAndLine()
161 case MSERV: smod="MSER";break; in UpnpDisplayFileAndLine()
162 case DOM: smod="DOM_";break; in UpnpDisplayFileAndLine()
163 case API: smod="API_";break; in UpnpDisplayFileAndLine()
164 case HTTP: smod="HTTP";break; in UpnpDisplayFileAndLine()
165 default: smod="UNKN";break; in UpnpDisplayFileAndLine()
[all …]
/dports/astro/swe/swisseph-2.10.1/
H A Dsweclips.c190 int smod = 0; in main() local
225 smod = SMOD_SOLAR; in main()
230 smod |= SMOD_LUNAR; in main()
237 smod |= SMOD_HOW; in main()
255 smod |= SMOD_RISE; in main()
258 smod |= SMOD_METR; in main()
311 smod |= SMOD_ALL; in main()
396 if ((smod & SMOD_LUNAR) && (smod & SMOD_HOW)) { in main()
418 if ((smod & SMOD_LUNAR) && ! (smod & SMOD_HOW)) { in main()
477 if ((smod & SMOD_SOLAR) && (smod & SMOD_LOCAL)) { in main()
[all …]
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/opengl/util/pngj/
H A DPngDeinterlacer.java123 smod = -1; in deinterlaceIntPacked()
127 smod += 1; in deinterlaceIntPacked()
128 if (smod >= packedValsPerPixel) in deinterlaceIntPacked()
129 smod = 0; in deinterlaceIntPacked()
131 if (smod == 0) in deinterlaceIntPacked()
136 d = tmod - smod; in deinterlaceIntPacked()
161 smod = -1; in deinterlacePackedByte()
165 smod += 1; in deinterlacePackedByte()
167 smod = 0; in deinterlacePackedByte()
169 if (smod == 0) in deinterlacePackedByte()
[all …]
/dports/math/R/R-4.1.2/src/library/stats/R/
H A Dppr.R91 smod <- Z$smod functionVar
92 ys <- smod[q+6]
101 as.double(smod),
103 double(2*smod[4L]))$y,
106 gof <- smod[jt] * n * ys^2
107 gofn <- smod[jt+1L:ml] * n * ys^2
110 smod <- smod[c(1L:(q+6+p*mu), q+6+p*ml + 1L:(q*mu),
112 smod[1L] <- mu
118 yb=smod[5+1L:q], ys=ys,
120 smod=smod), nameattr
[all …]
/dports/math/libRmath/R-4.1.1/src/library/stats/R/
H A Dppr.R91 smod <- Z$smod functionVar
92 ys <- smod[q+6]
101 as.double(smod),
103 double(2*smod[4L]))$y,
106 gof <- smod[jt] * n * ys^2
107 gofn <- smod[jt+1L:ml] * n * ys^2
110 smod <- smod[c(1L:(q+6+p*mu), q+6+p*ml + 1L:(q*mu),
112 smod[1L] <- mu
118 yb=smod[5+1L:q], ys=ys,
120 smod=smod), nameattr
[all …]
/dports/math/GiNaC/ginac-1.8.2/ginac/polynomial/
H A Dpoly_cra.h49 ex v1 = e1.smod(q1n); in chinese_remainder()
50 ex u = v1.smod(q2n); in chinese_remainder()
51 ex v2 = (e2.smod(q2n) - v1.smod(q2n)).expand().smod(q2n); in chinese_remainder()
53 v2 = (v2*q1_1).smod(q2n); in chinese_remainder()
H A Dnewton_interpolate.h48 const numeric nc = ex_to<numeric>(prevpts.subs(x == numeric(pt1)).smod(pnum)); in newton_interp()
51 ex tmp = prev.subs(x == numeric(pt1)).smod(pnum); in newton_interp()
52 tmp = (((e1 - tmp).expand().smod(pnum))*nc_1).smod(pnum); in newton_interp()
53 tmp = (prevpts*tmp).expand().smod(pnum); in newton_interp()
54 tmp = (prev + tmp).expand().smod(pnum); in newton_interp()
/dports/science/clipper/clipper-2.1/clipper/minimol/
H A Dminimol_io.cpp217 SModl smod; in export_minimol() local
221 smod.mm = &(minimol.model()); in export_minimol()
222 smod.db = NULL; in export_minimol()
223 smod.data.resize( smod.mm->size() ); in export_minimol()
225 SPoly& spol = smod.data[p]; in export_minimol()
226 spol.mm = &((*smod.mm)[p]); in export_minimol()
247 if ( smod.db != NULL ) in export_minimol()
249 SPoly& spol = smod.data[p]; in export_minimol()
273 if ( smod.db == NULL ) { in export_minimol()
275 AddModel( smod.db ); in export_minimol()
[all …]
/dports/cad/yosys/yosys-yosys-0.12/passes/hierarchy/
H A Duniquify.cc86 auto smod = tmod->clone(); in execute() local
87 smod->name = newname; in execute()
89 smod->set_bool_attribute(ID::unique); in execute()
90 if (smod->attributes.count(ID::hdlname) == 0) in execute()
91 smod->attributes[ID::hdlname] = string(log_id(tmod->name)); in execute()
92 design->add(smod); in execute()
/dports/net/ldapdiff/ldapdiff-1.4.1/
H A Dldapcmp.c83 psmod = *smod; in cmod()
98 if(*smod == NULL){ in cmod()
99 *smod = ptsmod; in cmod()
103 usmod = *smod; in cmod()
114 void ldifcmp(LDAP *ld,struct s_ldif *sldif,struct s_ldif *sldap,struct s_mod **smod,struct s_schema… in ldifcmp() argument
287 ldifdeletedn(sldif->dnvar,sldif->dnval,smod); in ldifcmp()
288 ldifadddn(sldif,smod); in ldifcmp()
292 void ldifadddn(struct s_ldif *sldif,struct s_mod **smod) in ldifadddn() argument
311 …cmod(smod,sldif->dnvar,sldif->dnval,psldifentry->var,psldifval->val,psldifval->val_len,psldifentry… in ldifadddn()
325 void ldifdeletedn(char *dnvar,char *dnval,struct s_mod **smod) in ldifdeletedn() argument
[all …]
/dports/devel/arm-elf-binutils/binutils-2.37/gas/testsuite/gas/bpf/
H A Dalu-xbpf.s8 smod %r2, 3
9 smod %r3, -4
10 smod %r4, 0x7eadbeef
11 smod %r5, %r2
/dports/devel/gnulibiberty/binutils-2.37/gas/testsuite/gas/bpf/
H A Dalu-xbpf.s8 smod %r2, 3
9 smod %r3, -4
10 smod %r4, 0x7eadbeef
11 smod %r5, %r2
/dports/devel/binutils/binutils-2.37/gas/testsuite/gas/bpf/
H A Dalu-xbpf.s8 smod %r2, 3
9 smod %r3, -4
10 smod %r4, 0x7eadbeef
11 smod %r5, %r2
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/tinygo/tinygo-0.14.1/lib/compiler-rt/lib/stats/
H A Dstats.cc70 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
71 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
72 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/llvm12/llvm-project-12.0.1.src/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/compiler_rt/dist/lib/stats/
H A Dstats.cc69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/compiler-rt/lib/stats/
H A Dstats.cpp69 for (StatModule *smod = *smodp; smod; smod = smod->next) { in WriteModuleReport() local
70 for (u32 i = 0; i != smod->size; ++i) { in WriteModuleReport()
71 StatInfo *s = &smod->infos[i]; in WriteModuleReport()

12345678910>>...32