Home
last modified time | relevance | path

Searched refs:bitOr (Results 1 – 3 of 3) sorted by relevance

/plugin/gtime/gtlib/tsp/
H A DGTHashChain.php210 $locationId = $locationId->shiftLeft(16)->bitOr(new GTBigInteger($idNational));
229 $locationId = $locationId->shiftLeft(16)->bitOr(new GTBigInteger($idState));
249 $locationId = $locationId->shiftLeft(16)->bitOr(new GTBigInteger($idLocal));
262 $locationId = $locationId->shiftLeft(16)->bitOr(new GTBigInteger($idClient));
306 $hashChainDirs = $hashChainDirs->bitOr(new GTBigInteger(1));
/plugin/gtime/gtlib/asn1/
H A DASN1ObjectId.php124 … $this->append($bytes, (int) $integer->shiftRight($i)->bitAnd($mask2)->bitOr($mask1)->getValue());
158 $current = $current->bitOr(new GTBigInteger($byte & 0x7F));
/plugin/gtime/gtlib/util/
H A DGTBigInteger.php211 public function bitOr(GTBigInteger $integer) { function in GTBigInteger