Searched refs:er (Results 1 - 25 of 101) sorted by relevance

12345

/netbsd-current/external/lgpl3/gmp/dist/tests/devel/
H A Dsqrtrem_1_2.c61 int something_wrong (mp_limb_t er, mp_limb_t ec, mp_limb_t es) argument
63 fprintf (stderr, "root = %lu , rem = {%lu , %lu}\n", (long unsigned) es,(long unsigned) ec,(long unsigned) er);
70 mp_limb_t es, mer, er, s[1], r[2], q[2]; local
79 er=0;
85 if (UNLIKELY (x != (er != 0)) || UNLIKELY (*s != es)
86 || UNLIKELY ((x == 1) && (er != *r)))
87 STOP (something_wrong (er, 0, es));
89 if (UNLIKELY (er == mer)) {
94 er = 0;
96 ++er;
155 mp_limb_t es, her, er, k, s[1], r[2], q[2]; local
267 mp_limb_t es, er, s[1], r[2], q[2]; local
[all...]
/netbsd-current/external/bsd/wpa/dist/src/wps/
H A Dwps_er_ssdp.c22 struct wps_er *er = eloop_ctx; local
38 if (er->filter_addr.s_addr &&
39 er->filter_addr.s_addr != addr.sin_addr.s_addr)
47 if (sd == er->multicast_sd) {
108 wps_er_ap_cache_settings(er, &addr.sin_addr);
109 wps_er_ap_remove(er, &addr.sin_addr);
123 wps_er_ap_add(er, uuid, &addr.sin_addr, location, max_age);
127 void wps_er_send_ssdp_msearch(struct wps_er *er) argument
150 if (sendto(er->multicast_sd, wpabuf_head(msg), wpabuf_len(msg), 0,
159 int wps_er_ssdp_init(struct wps_er *er) argument
195 wps_er_ssdp_deinit(struct wps_er *er) argument
[all...]
H A Dwps_er.c76 wps_er_sta_event(sta->ap->er->wps, sta, WPS_EV_ER_ENROLLEE_REMOVE);
99 static struct wps_er_ap * wps_er_ap_get(struct wps_er *er, argument
104 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) {
116 static struct wps_er_ap * wps_er_ap_get_id(struct wps_er *er, unsigned int id) argument
119 dl_list_for_each(ap, &er->ap, struct wps_er_ap, list) {
181 static void wps_er_ap_unsubscribed(struct wps_er *er, struct wps_er_ap *ap) argument
188 if (er->deinitializing && dl_list_empty(&er->ap_unsubscribing))
189 wps_er_deinit_finish(er, NULL);
217 wps_er_ap_unsubscribed(ap->er, a
221 wps_er_ap_unsubscribe(struct wps_er *er, struct wps_er_ap *ap) argument
278 wps_er_ap_get_settings(struct wps_er *er, const u8 *uuid) argument
289 wps_er_ap_cache_settings(struct wps_er *er, struct in_addr *addr) argument
313 wps_er_ap_use_cached_settings(struct wps_er *er, struct wps_er_ap *ap) argument
334 wps_er_ap_remove_entry(struct wps_er *er, struct wps_er_ap *ap) argument
359 struct wps_er *er = eloop_data; local
637 wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr, const char *location, int max_age) argument
676 wps_er_ap_remove(struct wps_er *er, struct in_addr *addr) argument
688 wps_er_ap_remove_all(struct wps_er *er) argument
1151 wps_er_http_event(struct wps_er *er, struct http_request *req, unsigned int ap_id) argument
1187 wps_er_http_notify(struct wps_er *er, struct http_request *req) argument
1215 struct wps_er *er = ctx; local
1251 struct wps_er *er; local
1330 wps_er_refresh(struct wps_er *er) argument
1347 struct wps_er *er = eloop_data; local
1373 wps_er_deinit(struct wps_er *er, void (*cb)(void *ctx), void *ctx) argument
1502 wps_er_set_sel_reg(struct wps_er *er, int sel_reg, u16 dev_passwd_id, u16 sel_reg_config_methods) argument
1560 wps_er_pbc(struct wps_er *er, const u8 *uuid, const u8 *addr) argument
1627 wps_er_get_sta_uuid(struct wps_er *er, const u8 *addr) argument
1911 wps_er_learn(struct wps_er *er, const u8 *uuid, const u8 *addr, const u8 *pin, size_t pin_len) argument
1944 wps_er_set_config(struct wps_er *er, const u8 *uuid, const u8 *addr, const struct wps_credential *cred) argument
1995 wps_er_config(struct wps_er *er, const u8 *uuid, const u8 *addr, const u8 *pin, size_t pin_len, const struct wps_credential *cred) argument
2060 wps_er_nfc_config_token(struct wps_er *er, const u8 *uuid, const u8 *addr) argument
2081 wps_er_nfc_handover_sel(struct wps_er *er, struct wps_context *wps, const u8 *uuid, const u8 *addr, struct wpabuf *pubkey) argument
[all...]
H A Dwps_er.h35 struct wps_er *er; member in struct:wps_er_ap
102 void wps_er_ap_add(struct wps_er *er, const u8 *uuid, struct in_addr *addr,
104 void wps_er_ap_remove(struct wps_er *er, struct in_addr *addr);
105 int wps_er_ap_cache_settings(struct wps_er *er, struct in_addr *addr);
108 int wps_er_ssdp_init(struct wps_er *er);
109 void wps_er_ssdp_deinit(struct wps_er *er);
110 void wps_er_send_ssdp_msearch(struct wps_er *er);
/netbsd-current/sys/dev/isa/
H A Delink.c71 struct elink_done_reset *er; local
81 for (er = elink_all_resets.lh_first; er != NULL;
82 er = er->er_link.le_next)
83 if (er->er_bus == bus)
87 er = kmem_alloc(sizeof(*er), KM_SLEEP);
88 er->er_bus = bus;
89 LIST_INSERT_HEAD(&elink_all_resets, er, er_lin
[all...]
H A Dif_ep_isa.c158 struct ep_isa_done_probe *er; local
172 for (er = ep_isa_all_probes.lh_first; er != NULL;
173 er = er->er_link.le_next)
174 if (er->er_bus == device_unit(parent))
180 er = malloc(sizeof(struct ep_isa_done_probe), M_DEVBUF, M_WAITOK);
181 er->er_bus = bus;
182 LIST_INSERT_HEAD(&ep_isa_all_probes, er, er_link);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Descape.c32 static void escapeByValue(Expression *e, EscapeByResults *er);
33 static void escapeByRef(Expression *e, EscapeByResults *er);
73 EscapeByResults er;
75 escapeByValue(arg, &er);
77 if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim)
82 for (size_t i = 0; i < er.byvalue.dim; i++)
85 VarDeclaration *v = er
432 EscapeByResults er; local
524 EscapeByResults er; local
744 escapeByValue(Expression *e, EscapeByResults *er) argument
751 EscapeByResults *er; local
753 EscapeVisitor(EscapeByResults *er) argument
1023 escapeByRef(Expression *e, EscapeByResults *er) argument
1029 EscapeByResults *er; local
1031 EscapeRefVisitor(EscapeByResults *er) argument
[all...]
/netbsd-current/sys/arch/emips/stand/common/
H A Draw.c89 int er; local
102 er = aceopen(f,ctlr,unit,part);
103 if (er != 0)
104 return er;
118 er = acestrategy(f->f_devdata, F_READ, start_sector, DEV_BSIZE * sector_count,
125 if (er != 0)
126 return er;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/cfi/
H A Dcfi-common-7.d20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
22 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 64
H A Dcfi-label.d27 DW_CFA_def_cfa: r.* \([er]sp\) ofs [48]
28 DW_CFA_offset: r.* \([er]ip\) at cfa-[48]
H A Dcfi-common-1.d20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
H A Dcfi-common-2.d16 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
H A Dcfi-common-5.d21 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
H A Dcfi-common-8.d20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/ilp32/cfi/
H A Dcfi-common-7.d20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
22 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 64
H A Dcfi-common-1.d20 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
H A Dcfi-common-2.d16 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
H A Dcfi-common-5.d22 DW_CFA_def_cfa: r0( \([er]ax\)|) ofs 16
/netbsd-current/external/bsd/ntp/dist/tests/libntp/
H A Drefidsmear.c36 void rtoltor(uint32_t er, char *es);
37 void ltor(l_fp l, char *er);
73 rtoltor(uint32_t er, char *es) argument
82 snprintf(msg, 100, "rtoltor was called with er=%#.8x, es=%s", er, es);
84 l = convertRefIDToLFP(htonl(er));
93 TEST_ASSERT_EQUAL_UINT_MESSAGE(er, ntohl(ar), msg);
100 ltor(l_fp l, char *er) argument
/netbsd-current/sys/arch/next68k/stand/boot/
H A Den.c113 volatile struct en_regs *er; local
119 er = (struct en_regs *)P_ENET;
125 er->reset = EN_RST_RESET;
127 /* er->reset = 0; */
129 er->txmask = 0;
130 er->txstat = 0xff;
132 er->txmode = 0 | EN_TMD_COLLSHIFT;
134 er->txmode = EN_TMD_LB_DISABLE;
147 /* er->txmode |= EN_TMD_COLLSHIFT; */
149 /* er
195 volatile struct en_regs *er; local
277 volatile struct en_regs *er; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Descape.d75 EscapeByResults er;
148 eb.er.byref.push(var);
153 escapeByRef(arg, &eb.er);
155 escapeByValue(arg, &eb.er);
191 foreach (VarDeclaration v; byval ? eb.er.byvalue : eb.er.byref)
202 foreach (VarDeclaration v2; byval ? eb2.er.byvalue : eb2.er.byref)
219 eb.er.reset();
300 EscapeByResults er;
[all...]
/netbsd-current/sys/arch/powerpc/include/
H A Dasm.h194 * R4[er] = first free byte beyond end/esym.
198 * R4[er] = kernelend
202 # define INIT_CPUINFO_INTSTK(er,tmp1) \
203 addis er,er,INTSTK@ha; \
204 addi er,er,INTSTK@l; \
205 stptr er,CI_INTSTK(tmp1)
207 # define INIT_CPUINFO_INTSTK(er,tmp1) /* nothing */
213 # define INIT_CPUINFO(er,s
[all...]
/netbsd-current/external/bsd/tcpdump/dist/
H A Dprint-nfs.c1115 const uint32_t *dp, u_int *er, int *nfserrp)
1120 if (er)
1121 *er = errnum;
1208 u_int er; local
1210 dp = parsestatus(ndo, dp, &er, nfserrp);
1213 if (er)
1223 u_int er; local
1225 dp = parsestatus(ndo, dp, &er, nfserrp);
1228 if (er)
1242 u_int er; local
1114 parsestatus(netdissect_options *ndo, const uint32_t *dp, u_int *er, int *nfserrp) argument
1263 u_int er; local
1316 u_int er; local
1402 u_int er; local
1433 u_int er; local
1445 u_int er; local
1474 u_int er; local
1513 u_int er; local
1549 u_int er; local
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/util/
H A Dfind-unused-errs21 -[er])
/netbsd-current/crypto/external/bsd/openssl/dist/util/
H A Dfind-unused-errs21 -[er])

Completed in 159 milliseconds

12345