Home
last modified time | relevance | path

Searched refs:aux (Results 1 – 25 of 416) sorted by relevance

12345678910>>...17

/freebsd/crypto/openssl/crypto/x509/
H A Dx_x509a.c38 return x->aux ? 1 : 0;
45 if (x->aux == NULL && (x->aux = X509_CERT_AUX_new()) == NULL) in aux_get()
47 return x->aux; in aux_get()
52 X509_CERT_AUX *aux; in X509_alias_set1() local
54 if (!x || !x->aux || !x->aux->alias) in X509_alias_set1()
56 ASN1_UTF8STRING_free(x->aux->alias); in X509_alias_set1()
57 x->aux->alias = NULL; in X509_alias_set1()
60 if ((aux = aux_get(x)) == NULL) in X509_alias_set1()
62 if (aux->alias == NULL && (aux->alias = ASN1_UTF8STRING_new()) == NULL) in X509_alias_set1()
64 return ASN1_STRING_set(aux->alias, name, len); in X509_alias_set1()
[all …]
/freebsd/contrib/kyua/store/
H A Dmigrate_v1_v2.sql197 SELECT CAST(timeout / 1000000 AS TEXT) FROM plain_test_programs AS aux
198 WHERE aux.test_program_id = tmp_metadatas.test_program_id)
204 FROM test_cases AS aux JOIN plain_test_programs
205 ON aux.test_program_id == plain_test_programs.test_program_id
206 WHERE aux.test_case_id = tmp_metadatas.test_case_id)
221 SELECT description FROM atf_test_cases AS aux
222 WHERE aux.test_case_id = tmp_metadatas.test_case_id)
227 SELECT has_cleanup FROM atf_test_cases AS aux
228 WHERE aux.test_case_id = tmp_metadatas.test_case_id)
233 SELECT CAST(timeout / 1000000 AS TEXT) FROM atf_test_cases AS aux
[all …]
/freebsd/usr.sbin/cxgbetool/
H A Dtcb_common.c40 extern void t4_display_tcb_aux_0(_TCBVAR *tvp,int aux);
41 extern void t4_display_tcb_aux_1(_TCBVAR *tvp,int aux);
42 extern void t4_display_tcb_aux_2(_TCBVAR *tvp,int aux);
43 extern void t4_display_tcb_aux_3(_TCBVAR *tvp,int aux);
48 extern void t5_display_tcb_aux_0(_TCBVAR *tvp,int aux);
49 extern void t5_display_tcb_aux_1(_TCBVAR *tvp,int aux);
50 extern void t5_display_tcb_aux_2(_TCBVAR *tvp,int aux);
51 extern void t5_display_tcb_aux_3(_TCBVAR *tvp,int aux);
56 extern void t6_display_tcb_aux_0(_TCBVAR *tvp,int aux);
57 extern void t6_display_tcb_aux_1(_TCBVAR *tvp,int aux);
[all …]
H A Dtcbshowt6.c35 void t6_display_tcb_aux_0 (_TCBVAR *tvp, int aux) in t6_display_tcb_aux_0() argument
235 if (aux==1) { in t6_display_tcb_aux_0()
248 void t6_display_tcb_aux_1 (_TCBVAR *tvp, int aux) in t6_display_tcb_aux_1() argument
260 void t6_display_tcb_aux_2 (_TCBVAR *tvp, int aux) in t6_display_tcb_aux_2() argument
286 void t6_display_tcb_aux_3 (_TCBVAR *tvp, int aux) in t6_display_tcb_aux_3() argument
426 void t6_display_tcb_aux_4 (_TCBVAR *tvp, int aux) in t6_display_tcb_aux_4() argument
H A Dtcbshowt5.c35 void t5_display_tcb_aux_0 (_TCBVAR *tvp, int aux) in t5_display_tcb_aux_0() argument
234 if (aux==1) { in t5_display_tcb_aux_0()
247 void t5_display_tcb_aux_1 (_TCBVAR *tvp, int aux) in t5_display_tcb_aux_1() argument
259 void t5_display_tcb_aux_2 (_TCBVAR *tvp, int aux) in t5_display_tcb_aux_2() argument
285 void t5_display_tcb_aux_3 (_TCBVAR *tvp, int aux) in t5_display_tcb_aux_3() argument
/freebsd/crypto/openssl/crypto/asn1/
H A Dtasn_utl.c70 const ASN1_AUX *aux; in ossl_asn1_do_lock() local
78 aux = it->funcs; in ossl_asn1_do_lock()
79 if (aux == NULL || (aux->flags & ASN1_AFLG_REFCOUNT) == 0) in ossl_asn1_do_lock()
81 lck = offset2ptr(*pval, aux->ref_offset); in ossl_asn1_do_lock()
82 lock = offset2ptr(*pval, aux->ref_lock); in ossl_asn1_do_lock()
114 const ASN1_AUX *aux; in asn1_get_enc_ptr() local
118 aux = it->funcs; in asn1_get_enc_ptr()
119 if (aux == NULL || (aux->flags & ASN1_AFLG_ENCODING) == 0) in asn1_get_enc_ptr()
121 return offset2ptr(*pval, aux->enc_offset); in asn1_get_enc_ptr()
127 const ASN1_AUX *aux; in asn1_get_const_enc_ptr() local
[all …]
H A Dbio_ndef.c62 const ASN1_AUX *aux = it->funcs; in BIO_new_NDEF() local
66 if (!aux || !aux->asn1_cb) { in BIO_new_NDEF()
99 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0) { in BIO_new_NDEF()
197 const ASN1_AUX *aux; in ndef_suffix() local
205 aux = ndef_aux->it->funcs; in ndef_suffix()
211 if (aux->asn1_cb(ASN1_OP_STREAM_POST, in ndef_suffix()
/freebsd/contrib/flex/src/
H A Dscanopt.c54 struct _aux *aux; /* Auxiliary data about options. */ member
78 ((s->aux[i].flags & IS_LONG) ? 2 : 1); in NAME()
83 return s->aux[i].printlen; in PRINTLEN()
93 return s->aux[i].flags; in FLAGS()
160 s->aux = malloc((size_t) s->optc * sizeof (struct _aux)); in scanopt_init()
165 struct _aux *aux; in scanopt_init() local
168 aux = s->aux + i; in scanopt_init()
170 aux->flags = ARG_NONE; in scanopt_init()
173 aux->flags |= IS_LONG; in scanopt_init()
181 aux->printlen = (int) strlen (opt->opt_fmt); in scanopt_init()
[all …]
/freebsd/lib/libc/csu/powerpc64/
H A Dreloc.c27 ifunc_init(const Elf_Auxinfo *aux) in ifunc_init() argument
30 for (; aux->a_type != AT_NULL; aux++) { in ifunc_init()
31 switch (aux->a_type) { in ifunc_init()
33 cpu_features = (uint32_t)aux->a_un.a_val; in ifunc_init()
36 cpu_features2 = (uint32_t)aux->a_un.a_val; in ifunc_init()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_getauxval.h49 for (const AuxInfo *aux = (const AuxInfo *)_dlauxinfo(); in getauxval() local
50 aux->a_type != AT_NULL; ++aux) { in getauxval()
51 if (type == aux->a_type) in getauxval()
52 return aux->a_v; in getauxval()
/freebsd/lib/libc/csu/riscv/
H A Dreloc.c27 ifunc_init(const Elf_Auxinfo *aux) in ifunc_init() argument
30 for (; aux->a_type != AT_NULL; aux++) { in ifunc_init()
31 switch (aux->a_type) { in ifunc_init()
33 elf_hwcap = (uint32_t)aux->a_un.a_val; in ifunc_init()
/freebsd/contrib/lib9p/pytest/
H A Dsequencer.py54 def __init__(self, name, aux): argument
56 self.aux = aux
203 def __init__(self, name, fmt, aux=None): argument
204 super(EncDecSimple, self).__init__(name, aux)
210 if self.aux is None:
214 self.name, self.fmt, self.aux)
329 def __init__(self, klass, name, sequence, aux=None): argument
331 super(EncDecTyped, self).__init__(name, aux)
337 if self.aux is None:
341 self.klass, self.name, self.sequence, self.aux)
[all …]
H A Dprotocol.py483 if sub.aux is None:
485 assert sub.aux == 'auto' or sub.aux == 'len'
507 if sub.aux == 'auto':
522 assert sub.aux == 'len'
1514 def lookup(name, typeinfo, aux=None): argument
1536 encdec = sequencer.EncDecSimple(name, _STRING_MAGIC, aux)
1538 encdec = sequencer.EncDecTyped(cls, name, sub, aux)
1542 encdec = sequencer.EncDecSimple(name, typeinfo.ival, aux)
1545 def emit_simple(name, typeinfo, aux=None): argument
1550 condval, encdec = lookup(name, typeinfo, aux)
[all …]
/freebsd/sys/dev/atkbdc/
H A Datkbdc.c276 sc->aux.head = sc->aux.tail = 0; in atkbdc_setup()
281 sc->aux.call_count = 0; in atkbdc_setup()
282 sc->aux.qcount = sc->aux.max_qcount = 0; in atkbdc_setup()
387 return (availq(&p->kbd) || availq(&p->aux) in kbdc_data_ready()
444 addq(&kbdc->aux, read_data(kbdc)); in wait_while_controller_busy()
489 addq(&kbdc->aux, read_data(kbdc)); in wait_for_kbd_data()
523 addq(&kbdc->aux, b); in wait_for_kbd_ack()
577 addq(&kbdc->aux, b); in wait_for_aux_ack()
667 emptyq(&p->aux); in send_aux_command()
714 emptyq(&p->aux); in send_aux_command_and_data()
[all …]
/freebsd/sys/arm/ti/omap4/
H A Domap4_l2cache.c48 uint32_t aux, prefetch; in omap4_pl310_init() local
50 aux = pl310_read4(sc, PL310_AUX_CTRL); in omap4_pl310_init()
57 aux &= ~AUX_CTRL_INSTR_PREFETCH; in omap4_pl310_init()
66 aux |= AUX_CTRL_DATA_PREFETCH; in omap4_pl310_init()
73 ti_smc0(aux, 0, WRITE_AUXCTRL_REG); in omap4_pl310_init()
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dmucmc52.dts161 compatible = "manroland,mucmc52-aux-gpio";
167 compatible = "manroland,mucmc52-aux-gpio";
173 compatible = "manroland,mucmc52-aux-gpio";
179 compatible = "manroland,mucmc52-aux-gpio";
185 compatible = "manroland,mucmc52-aux-gpio";
191 compatible = "manroland,mucmc52-aux-gpio";
197 compatible = "manroland,mucmc52-aux-gpio";
203 compatible = "manroland,mucmc52-aux-gpio";
209 compatible = "manroland,mucmc52-aux-gpio";
215 compatible = "manroland,mucmc52-aux-gpio";
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dbrcm,bcm2835-aux-clock.txt11 - compatible: Should be "brcm,bcm2835-aux"
13 found in include/dt-bindings/clock/bcm2835-aux.h
26 aux: aux@7e215004 {
27 compatible = "brcm,bcm2835-aux";
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_fm.c1355 nvlist_t *aux) in zfs_event_create() argument
1401 if (aux) { in zfs_event_create()
1404 while ((elem = nvlist_next_nvpair(aux, elem)) != NULL) in zfs_event_create()
1408 (void) spa, (void) vd, (void) type, (void) name, (void) aux; in zfs_event_create()
1415 nvlist_t *aux) in zfs_post_common() argument
1420 resource = zfs_event_create(spa, vd, type, name, aux); in zfs_post_common()
1424 (void) spa, (void) vd, (void) type, (void) name, (void) aux; in zfs_post_common()
1461 nvlist_t *aux; in zfs_post_state_change() local
1466 aux = fm_nvlist_create(NULL); in zfs_post_state_change()
1467 if (vd && aux) { in zfs_post_state_change()
[all …]
/freebsd/contrib/lua/src/
H A Dltm.c186 TValue aux; in luaT_trybiniTM() local
187 setivalue(&aux, i2); in luaT_trybiniTM()
188 luaT_trybinassocTM(L, p1, &aux, flip, res, event); in luaT_trybiniTM()
223 TValue aux; const TValue *p2; in luaT_callorderiTM() local
225 setfltvalue(&aux, cast_num(v2)); in luaT_callorderiTM()
228 setivalue(&aux, v2); in luaT_callorderiTM()
230 p2 = p1; p1 = &aux; /* correct them */ in luaT_callorderiTM()
233 p2 = &aux; in luaT_callorderiTM()
/freebsd/contrib/atf/atf-c/detail/
H A Ddynstr.c71 char *aux; in prepend_or_append() local
77 err = atf_text_format_ap(&aux, fmt, ap2); in prepend_or_append()
81 newlen = ad->m_length + strlen(aux); in prepend_or_append()
90 memmove(ad->m_data + strlen(aux), ad->m_data, ad->m_length + 1); in prepend_or_append()
91 memcpy(ad->m_data, aux, strlen(aux)); in prepend_or_append()
93 strcpy(ad->m_data + ad->m_length, aux); in prepend_or_append()
98 free(aux); in prepend_or_append()
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dtca6507.txt33 led0: red-aux@0 {
34 label = "red:aux";
38 led1: green-aux@1 {
39 label = "green:aux";
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dbrcm,bcm2835-aux-spi.txt8 - compatible: Should be "brcm,bcm2835-aux-spi".
10 - interrupts: Should contain shared interrupt of the aux block
21 compatible = "brcm,bcm2835-aux-spi";
31 compatible = "brcm,bcm2835-aux-spi";
/freebsd/sys/contrib/device-tree/Bindings/serial/
H A Dbrcm,bcm2835-aux-uart.txt5 - compatible: "brcm,bcm2835-aux-uart"
14 compatible = "brcm,bcm2835-aux-uart";
17 clocks = <&aux BCM2835_AUX_CLOCK_UART>;
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DLoongArch.cpp749 auto &aux = *sec.relaxAux; in relax() local
751 ArrayRef<SymbolAnchor> sa = ArrayRef(aux.anchors); in relax()
754 std::fill_n(aux.relocTypes.get(), relocs.size(), R_LARCH_NONE); in relax()
755 aux.writes.clear(); in relax()
758 uint32_t &cur = aux.relocDeltas[i], remove = 0; in relax()
847 RelaxAux &aux = *sec->relaxAux; in finalizeRelax() local
848 if (!aux.relocDeltas) in finalizeRelax()
853 size_t newSize = old.size() - aux.relocDeltas[rels.size() - 1]; in finalizeRelax()
864 uint32_t remove = aux.relocDeltas[i] - delta; in finalizeRelax()
865 delta = aux.relocDeltas[i]; in finalizeRelax()
[all …]
/freebsd/sys/arm/arm/
H A Dpl310.c125 uint32_t aux, prefetch; in pl310_print_config() local
129 aux = pl310_read4(sc, PL310_AUX_CTRL); in pl310_print_config()
133 (aux & AUX_CTRL_EARLY_BRESP) ? ena : dis); in pl310_print_config()
135 (aux & AUX_CTRL_INSTR_PREFETCH) ? ena : dis); in pl310_print_config()
137 (aux & AUX_CTRL_DATA_PREFETCH) ? ena : dis); in pl310_print_config()
139 (aux & AUX_CTRL_NS_INT_CTRL) ? ena : dis); in pl310_print_config()
141 (aux & AUX_CTRL_NS_LOCKDOWN) ? ena : dis); in pl310_print_config()
143 (aux & AUX_CTRL_SHARE_OVERRIDE) ? ena : dis); in pl310_print_config()

12345678910>>...17