MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / Ixor

Function Ixor

extlibs/lua/src/lmathlib.c:395–398  ·  view source on GitHub ↗

i1 ^= i2 */

Source from the content-addressed store, hash-verified

393
394/* i1 ^= i2 */
395static void Ixor (Rand64 *i1, Rand64 i2) {
396 i1->h ^= i2.h;
397 i1->l ^= i2.l;
398}
399
400/* return i1 + i2 */
401static Rand64 Iadd (Rand64 i1, Rand64 i2) {

Callers 1

nextrandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected