Lines Matching refs:byte
72 $byte = $length >> $i;
73 $byte = $byte & 0xFF;
75 array_push($bytes, $byte);
200 $byte = array_shift($bytes);
202 $bit8 = ($byte >> 7) & 0x1;
203 $bit7 = ($byte >> 6) & 0x1;
204 $bit6 = ($byte >> 5) & 0x1;
242 $byte = $byte & 0x1F; // clear tags: 000x xxxx
244 if ($byte == 0x1F) {
252 switch ($byte) {
331 throw new GTException("Unsupported ASN.1 UNIVERSAL type: {$byte}");
341 $object->setTagValue($byte);