MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / _Land

Function _Land

vm/ByteCodeTranslator/src/javascript/parparvm_runtime.js:3816–3816  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

3814}
3815function _Lrem(a, b) { a = _Lc(a); b = _Lc(b); return _Lsub(a, _Lmul(_Ldiv(a, b), b)); }
3816function _Land(a, b) { a = _Lc(a); b = _Lc(b); return _LL(a.l & b.l, a.h & b.h); }
3817function _Lor(a, b) { a = _Lc(a); b = _Lc(b); return _LL(a.l | b.l, a.h | b.h); }
3818function _Lxor(a, b) { a = _Lc(a); b = _Lc(b); return _LL(a.l ^ b.l, a.h ^ b.h); }
3819function _Lshl(a, n) { // shift count is a Java int (Number); only low 6 bits used

Callers

nothing calls this directly

Calls 2

_LcFunction · 0.85
_LLFunction · 0.85

Tested by

no test coverage detected