HomeSort by: relevance | last modified time | path
    Searched defs:trtmp (Results 1 - 13 of 13) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x509_trust.c 131 X509_TRUST *trtmp; local
142 if ((trtmp = OPENSSL_malloc(sizeof(*trtmp))) == NULL)
144 trtmp->flags = X509_TRUST_DYNAMIC;
146 trtmp = X509_TRUST_get0(idx);
149 if (trtmp->flags & X509_TRUST_DYNAMIC_NAME)
150 OPENSSL_free(trtmp->name);
152 if ((trtmp->name = OPENSSL_strdup(name)) == NULL)
155 trtmp->flags &= X509_TRUST_DYNAMIC;
157 trtmp->flags |= flags
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
x509_trust.c 127 X509_TRUST *trtmp; local
138 if ((trtmp = OPENSSL_malloc(sizeof(*trtmp))) == NULL) {
142 trtmp->flags = X509_TRUST_DYNAMIC;
144 trtmp = X509_TRUST_get0(idx);
147 if (trtmp->flags & X509_TRUST_DYNAMIC_NAME)
148 OPENSSL_free(trtmp->name);
150 if ((trtmp->name = OPENSSL_strdup(name)) == NULL) {
155 trtmp->flags &= X509_TRUST_DYNAMIC;
157 trtmp->flags |= flags
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509_trs.c 127 X509_TRUST *trtmp; local
138 if ((trtmp = OPENSSL_malloc(sizeof(*trtmp))) == NULL) {
142 trtmp->flags = X509_TRUST_DYNAMIC;
144 trtmp = X509_TRUST_get0(idx);
147 if (trtmp->flags & X509_TRUST_DYNAMIC_NAME)
148 OPENSSL_free(trtmp->name);
150 if ((trtmp->name = OPENSSL_strdup(name)) == NULL) {
155 trtmp->flags &= X509_TRUST_DYNAMIC;
157 trtmp->flags |= flags
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
refclock_as2201.c 236 l_fp trtmp; local
245 pp->lencode = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
266 pp->lastrec = trtmp;
refclock_heath.c 279 l_fp trtmp; local
290 &trtmp);
refclock_pst.c 196 l_fp trtmp; local
210 + BMAX - 2 - up->lastptr, &trtmp);
219 pp->lastrec = trtmp;
refclock_arbiter.c 236 l_fp trtmp; local
247 temp = refclock_gtlin(rbufp, tbuf, sizeof(tbuf), &trtmp);
267 up->laststamp = trtmp;
refclock_chronolog.c 179 l_fp trtmp; /* arrival timestamp */ local
192 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
197 up->laststamp = trtmp;
204 up->laststamp = trtmp;
refclock_dumbclock.c 196 l_fp trtmp; /* arrival timestamp */ local
209 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
214 up->laststamp = trtmp;
221 up->laststamp = trtmp;
refclock_ulink.c 196 l_fp trtmp; /* arrival timestamp */ local
211 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
220 up->laststamp = trtmp;
227 up->laststamp = trtmp;
refclock_hpgps.c 253 l_fp trtmp; local
275 pp->lencode = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
316 pp->lastrec = trtmp;
refclock_wwvb.c 259 l_fp trtmp; /* arrival timestamp */ local
275 temp = refclock_gtlin(rbufp, pp->a_lastcode, BMAX, &trtmp);
299 prettydate(&trtmp)));
301 up->laststamp = trtmp;
303 prettydate(&trtmp)));
310 up->laststamp = trtmp;
314 prettydate(&trtmp), prettydate(&pp->lastrec)));
  /src/sys/uvm/
uvm_map.c 569 struct vm_map_entry *tmp, *trtmp; local
596 trtmp = NULL;
604 if (trtmp != NULL && trtmp->start >= tmp->start) {
606 trtmp->start, tmp->start);
610 trtmp = tmp;
615 trtmp = rb_tree_iterate(&map->rb_tree, tmp, RB_DIR_LEFT);
616 if (trtmp == NULL)
617 trtmp = &map->header;
618 if (tmp->prev != trtmp) {
    [all...]

Completed in 66 milliseconds