Searched refs:ep (Results 26 - 50 of 640) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/netbt/
H A Dhci_event.c251 hci_command_status_ep ep; local
253 if (m->m_pkthdr.len < sizeof(ep))
256 m_copydata(m, 0, sizeof(ep), &ep);
257 m_adj(m, sizeof(ep));
259 ep.opcode = le16toh(ep.opcode);
263 HCI_OGF(ep.opcode), HCI_OCF(ep.opcode),
264 ep
298 hci_command_compl_ep ep; local
375 hci_num_compl_pkts_ep ep; local
448 hci_inquiry_result_ep ep; local
489 hci_rssi_result_ep ep; local
530 hci_extended_result_ep ep; local
564 hci_con_compl_ep ep; local
663 hci_discon_compl_ep ep; local
690 hci_con_req_ep ep; local
740 hci_auth_compl_ep ep; local
784 hci_encryption_change_ep ep; local
830 hci_change_con_link_key_compl_ep ep; local
873 hci_read_clock_offset_compl_ep ep; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/printenv/
H A Dprintenv.c63 char *cp, **ep; local
77 for (ep = environ; *ep; ep++)
78 (void)printf("%s\n", *ep);
86 for (ep = environ; *ep; ep++)
87 if (!memcmp(*ep, *argv, len)) {
88 cp = *ep
[all...]
/netbsd-6-1-5-RELEASE/tools/mips-elf2ecoff/sys/
H A Dexec_ecoff.h89 #define ECOFF_BLOCK_ALIGN(ep, value) \
90 ((ep)->a.magic == ECOFF_ZMAGIC ? ECOFF_ROUND((value), ECOFF_LDPGSZ) : \
93 #define ECOFF_TXTOFF(ep) \
94 ((ep)->a.magic == ECOFF_ZMAGIC ? 0 : \
95 ECOFF_ROUND(ECOFF_HDR_SIZE + (ep)->f.f_nscns * \
96 sizeof(struct ecoff_scnhdr), ECOFF_SEGMENT_ALIGNMENT(ep)))
98 #define ECOFF_DATOFF(ep) \
99 (ECOFF_BLOCK_ALIGN((ep), ECOFF_TXTOFF(ep) + (ep)
[all...]
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dexec_ecoff.h89 #define ECOFF_BLOCK_ALIGN(ep, value) \
90 ((ep)->a.magic == ECOFF_ZMAGIC ? ECOFF_ROUND((value), ECOFF_LDPGSZ) : \
93 #define ECOFF_TXTOFF(ep) \
94 ((ep)->a.magic == ECOFF_ZMAGIC ? 0 : \
95 ECOFF_ROUND(ECOFF_HDR_SIZE + (ep)->f.f_nscns * \
96 sizeof(struct ecoff_scnhdr), ECOFF_SEGMENT_ALIGNMENT(ep)))
98 #define ECOFF_DATOFF(ep) \
99 (ECOFF_BLOCK_ALIGN((ep), ECOFF_TXTOFF(ep) + (ep)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/18_support/exception_ptr/
H A Dcurrent_exception.cc33 exception_ptr ep = current_exception();
34 VERIFY( ep == 0 );
45 exception_ptr ep = current_exception();
46 VERIFY( ep != 0 );
58 exception_ptr ep = current_exception();
59 VERIFY( ep != 0 );
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dsplit_nameval.c68 char *ep; local
85 SKIP(np, ep, !ISSPACE(*ep) && *ep != '='); /* find name end */
86 SKIP(ep, cp, ISSPACE(*cp)); /* skip blanks before '=' */
89 *ep = 0; /* terminate name */
H A Dmac_parse.c93 const char *ep; /* string end pointer */ local
120 for (ep = vp; level > 0; ep++) {
121 if (*ep == 0) {
126 if (*ep == *pp)
128 if (*ep == close_paren[pp - open_paren])
133 vstring_strncat(buf, vp, level > 0 ? ep - vp : ep - vp - 1);
134 vp = ep;
136 SKIP(vp, ep, ISALNU
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Dnontype2.C5 template <const E* ep>
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.pt/
H A Dnontype2.C5 template <const E* ep>
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/v850/
H A Dlib1funcs.asm272 mov ep,r1
274 mov sp,ep
275 sst.w r29,0[ep]
276 sst.w r28,4[ep]
277 sst.w r27,8[ep]
278 sst.w r26,12[ep]
279 sst.w r25,16[ep]
280 sst.w r24,20[ep]
281 sst.w r23,24[ep]
282 sst.w r22,28[ep]
[all...]
/netbsd-6-1-5-RELEASE/lib/libtelnet/
H A Dencrypt.c142 Encryptions *ep = encryptions; local
146 while (ep->type && ep->type != type)
147 ++ep;
148 return(ep->type ? ep : 0);
155 Encryptions *ep = encryptions; local
159 while (ep->type && ep->type != type)
160 ++ep;
182 Encryptions *ep = encryptions; local
218 Encryptions *ep = encryptions; local
245 register Encryptions *ep; local
280 register Encryptions *ep; local
493 Encryptions *ep; local
534 Encryptions *ep; local
580 Encryptions *ep; local
630 Encryptions *ep; local
668 Encryptions *ep = encryptions; local
750 Encryptions *ep; local
837 Encryptions *ep; local
988 Encryptions *ep; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900210_03.C14 enum E {enum_value_1} * ep; variable in typeref:enum:E
22 ep = vp; /* { dg-error "" } */
H A D900210_01.C33 enum E2 {enum_value_1} * ep; variable in typeref:enum:E2
42 i = ep; /* { dg-error "" } */
48 l = ep; /* { dg-error "" } */
54 s = ep; /* { dg-error "" } */
60 c = ep; /* { dg-error "" } */
66 si = ep; /* { dg-error "" } */
72 sl = ep; /* { dg-error "" } */
78 ss = ep; /* { dg-error "" } */
84 sc = ep; /* { dg-error "" } */
90 ui = ep; /* { d
[all...]
H A D900210_02.C34 enum E2 {enum_value_1} * ep; variable in typeref:enum:E2
76 ep = i; /* { dg-error "" } */
77 ep = l; /* { dg-error "" } */
78 ep = s; /* { dg-error "" } */
79 ep = c; /* { dg-error "" } */
80 ep = si; /* { dg-error "" } */
81 ep = sl; /* { dg-error "" } */
82 ep = ss; /* { dg-error "" } */
83 ep = sc; /* { dg-error "" } */
84 ep
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.jason/
H A Dmi.C12 E* ep = new E; local
14 ep->foo();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900210_03.C14 enum E {enum_value_1} * ep; variable in typeref:enum:E
22 ep = vp; /* { dg-error "" } */
H A D900210_01.C33 enum E2 {enum_value_1} * ep; variable in typeref:enum:E2
42 i = ep; /* { dg-error "" } */
48 l = ep; /* { dg-error "" } */
54 s = ep; /* { dg-error "" } */
60 c = ep; /* { dg-error "" } */
66 si = ep; /* { dg-error "" } */
72 sl = ep; /* { dg-error "" } */
78 ss = ep; /* { dg-error "" } */
84 sc = ep; /* { dg-error "" } */
90 ui = ep; /* { d
[all...]
H A D900210_02.C34 enum E2 {enum_value_1} * ep; variable in typeref:enum:E2
76 ep = i; /* { dg-error "" } */
77 ep = l; /* { dg-error "" } */
78 ep = s; /* { dg-error "" } */
79 ep = c; /* { dg-error "" } */
80 ep = si; /* { dg-error "" } */
81 ep = sl; /* { dg-error "" } */
82 ep = ss; /* { dg-error "" } */
83 ep = sc; /* { dg-error "" } */
84 ep
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.jason/
H A Dmi.C12 E* ep = new E; local
14 ep->foo();
/netbsd-6-1-5-RELEASE/sbin/mount/
H A Dfattr.c51 char *ep; local
53 id = strtol(s, &ep, 0);
54 if (*ep || s == ep || id < 0)
83 char *ep; local
85 rv = strtol(s, &ep, 8);
86 if (s == ep || *ep || rv < 0)
/netbsd-6-1-5-RELEASE/usr.bin/w/
H A Dw.c137 struct entry *ep; local
229 if ((ep = calloc(1, sizeof(struct entry))) == NULL)
231 (void)memcpy(ep->name, utx->ut_name, sizeof(utx->ut_name));
232 (void)memcpy(ep->line, utx->ut_line, sizeof(utx->ut_line));
233 ep->name[sizeof(utx->ut_name)] = '\0';
234 ep->line[sizeof(utx->ut_line)] = '\0';
236 utx->ut_ss.ss_len, ep->host, sizeof(ep->host), NULL, 0,
238 (void)memcpy(ep->host, utx->ut_host,
240 ep
561 process(struct entry *ep) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/env/
H A Denv.c56 char **ep; local
87 for (ep = environ; *ep; ep++)
88 (void)printf("%s\n", *ep);
/netbsd-6-1-5-RELEASE/lib/libcrypt/
H A Dcrypt-sha1.c126 char *ep; local
144 iterations = strtoul(salt, &ep, 10);
145 if (*ep != '$')
147 salt = ep + 1; /* skip over the '$' */
176 ep = passwd + pl;
183 __crypt_to64(ep, ul, 4); ep += 4;
189 __crypt_to64(ep, ul, 4); ep += 4;
190 *ep
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/v850/
H A Dlib1funcs.asm267 mov ep,r1
269 mov sp,ep
270 sst.w r29,0[ep]
271 sst.w r28,4[ep]
272 sst.w r27,8[ep]
273 sst.w r26,12[ep]
274 sst.w r25,16[ep]
275 sst.w r24,20[ep]
276 sst.w r23,24[ep]
277 sst.w r22,28[ep]
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/who/
H A Dwho.c232 struct utmpentry *ehead, *ep; local
243 for (ep = ehead; ep; ep = ep->next)
244 if (strcmp(ep->line, p) == 0) {
247 eprint(ep);
263 struct utmpentry *ehead, *ep; local
267 for (ep = ehead; ep !
272 eprint(const struct utmpentry *ep) argument
368 struct utmpentry *ehead, *ep; local
[all...]

Completed in 597 milliseconds

1234567891011>>