Lines Matching refs:micros
45 private $micros; variable in TSPAccuracy
120 if (!is_null($this->micros)) {
124 $micros = $item->getObjectAs(ASN1_TAG_INTEGER);
126 if (!$micros instanceof ASN1Integer) {
130 if ((int) $micros->getValue() < 1) {
131 … throw new GTException("Invalid value for micros: {$micros->getValue()}");
134 if ((int) $micros->getValue() > 999) {
135 … throw new GTException("Invalid value for micros: {$micros->getValue()}");
138 $this->micros = $micros->getValue();
178 if ($this->micros != null) {
184 $tag->setObject(new ASN1Integer($this->micros));
214 if (!is_null($this->micros)) {
215 $accuracy = $accuracy->add(new GTBigInteger($this->micros));