Searched refs:ea (Results 1 - 25 of 63) sorted by relevance

123

/macosx-10.10/lsof-53/lsof/lib/
H A Dckkv.c52 ckkv(d, er, ev, ea)
56 char *ea; /* expected architecture; NULL, no
83 if (ea && strcmp(ea, u.machine)) {
86 Pn, d, ea, u.machine);
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Derrorlist.c43 const struct error_entry *ea = (const struct error_entry*)a; local
46 if (ea->start >= eb->start && ea->start < eb->start + eb->len)
48 return ea->start - eb->start;
H A Dbidi.c43 const struct range_entry *ea = (const struct range_entry*)a; local
46 if (ea->start >= eb->start && ea->start < eb->start + eb->len)
48 return ea->start - eb->start;
/macosx-10.10/bootp-298/bootplib/
H A Dutil.h51 #define EA_LIST(ea) EA_CH(ea,0),EA_CH(ea,1),EA_CH(ea,2),EA_CH(ea,3),EA_CH(ea,4),EA_CH(ea,5)
55 #define FWA_LIST(ea) FWA_CH(ea,0),FWA_CH(ea,
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/net/
H A Dether_inet_pr_module.c116 struct ether_arp *ea; local
121 if (mbuf_len(m) < sizeof (*ea) && mbuf_pullup(&m, sizeof (*ea)) != 0)
124 ea = mbuf_data(m);
127 if (ntohs(ea->arp_hrd) != ARPHRD_ETHER ||
128 ntohs(ea->arp_pro) != ETHERTYPE_IP ||
129 ea->arp_pln != sizeof (struct in_addr) ||
130 ea->arp_hln != ETHER_ADDR_LEN) {
136 if (bcmp(ea->arp_sha, etherbroadcastaddr, ETHER_ADDR_LEN) == 0) {
144 _ip_copy(&sender_ip.sin_addr, ea
405 struct ether_arp *ea; local
[all...]
/macosx-10.10/vim-55/src/
H A Dex_docmd.c1710 exarg_T ea; /* Ex command arguments */ local
1721 vim_memset(&ea, 0, sizeof(ea));
1722 ea.line1 = 1;
1723 ea.line2 = 1;
1751 ea.cmd = *cmdlinep;
1757 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1758 ++ea
3075 exarg_T ea; local
3121 exarg_T ea; local
6875 exarg_T ea; local
7331 exarg_T ea; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_keychain/
H A DExtendedAttribute.cpp85 ExtendedAttribute* ea = new ExtendedAttribute(keychain, primaryKey, uniqueId); local
86 keychain->addItem(primaryKey, ea);
87 return ea;
94 ExtendedAttribute* ea = new ExtendedAttribute(keychain, primaryKey); local
95 keychain->addItem(primaryKey, ea);
96 return ea;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DExtendedAttribute.cpp85 ExtendedAttribute* ea = new ExtendedAttribute(keychain, primaryKey, uniqueId); local
86 keychain->addItem(primaryKey, ea);
87 return ea;
94 ExtendedAttribute* ea = new ExtendedAttribute(keychain, primaryKey); local
95 keychain->addItem(primaryKey, ea);
96 return ea;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DExtendedAttribute.cpp85 ExtendedAttribute* ea = new ExtendedAttribute(keychain, primaryKey, uniqueId); local
86 keychain->addItem(primaryKey, ea);
87 return ea;
94 ExtendedAttribute* ea = new ExtendedAttribute(keychain, primaryKey); local
95 keychain->addItem(primaryKey, ea);
96 return ea;
/macosx-10.10/network_cmds-457/ifconfig.tproj/
H A Difbond.c62 #define EA_LIST(ea) EA_CH(ea,0),EA_CH(ea,1),EA_CH(ea,2),EA_CH(ea,3),EA_CH(ea,4),EA_CH(ea,5)
H A Difbridge.c239 struct ether_addr ea; local
249 bcopy(ifbrfh.ifbrhf_hwsrca, ea.octet, ETHER_ADDR_LEN);
252 bzero(ea.octet, ETHER_ADDR_LEN);
257 ether_ntoa(&ea), inet_ntoa(in));
274 struct ether_addr ea; local
291 memcpy(ea.octet, ifba->ifba_dst,
292 sizeof(ea.octet));
293 printf("%s%s Vlan%d %s %lu ", prefix, ether_ntoa(&ea),
536 struct ether_addr *ea; local
541 ea
557 struct ether_addr *ea; local
783 struct ether_addr *ea; local
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/kdp/
H A Dkdp_udp.c229 struct kdp_ether_addr ea; member in struct:__anon15410::__anon15411
233 struct kdp_ether_addr ea; member in struct:__anon15410::__anon15412
635 enaddr_copy(&adr.loc.ea, eh->ether_shost);
636 enaddr_copy(&adr.rmt.ea, eh->ether_dhost);
778 struct kdp_ether_arp aligned_ea, *ea = &aligned_ea; local
782 memcpy((void *)ea, (void *)&pkt.data[arp_header_offset], sizeof(*ea));
784 switch(ntohs(ea->arp_op)) {
786 kdp_arp_reply(ea);
789 kdp_process_arp_reply(ea);
797 kdp_process_arp_reply(struct kdp_ether_arp *ea) argument
818 kdp_arp_reply(struct kdp_ether_arp *ea) argument
974 struct kdp_ether_arp *ea = (struct kdp_ether_arp *) &pkt.data[sizeof(struct kdp_ether_header)]; local
[all...]
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DCanvasPathMethods.h50 void arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode&);
H A DCanvasPathMethods.cpp133 void CanvasPathMethods::arc(float x, float y, float r, float sa, float ea, bool anticlockwise, ExceptionCode& ec) argument
136 if (!std::isfinite(x) || !std::isfinite(y) || !std::isfinite(r) || !std::isfinite(sa) || !std::isfinite(ea))
144 if (!r || sa == ea) {
153 // If 'sa' and 'ea' differ by more than 2Pi, just add a circle starting/ending at 'sa'.
154 if (anticlockwise && sa - ea >= 2 * piFloat) {
158 if (!anticlockwise && ea - sa >= 2 * piFloat) {
163 m_path.addArc(FloatPoint(x, y), r, sa, ea, anticlockwise); local
/macosx-10.10/BerkeleyDB-21/db/examples_c/ex_rep/base/
H A Drep_msg.c52 elect_args *ea; local
63 ea = NULL;
180 if (ea != NULL) {
186 ea = NULL;
188 if ((ea = calloc(sizeof(elect_args), 1)) == NULL) {
193 ea->dbenv = dbenv;
194 ea->machtab = tab;
196 NULL, elect_thread, (void *)ea)) != 0) {
224 if (ea != NULL && thread_join(elect_thr, &status) != 0)
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/
H A Dcheck.c163 struct exec_data *ea = v; local
165 const_execvp(ea->m_argv[0], ea->m_argv);
166 fprintf(stderr, "execvp(%s) failed: %s\n", ea->m_argv[0], strerror(errno));
178 struct exec_data ea = { argv }; local
184 err = atf_process_fork(&child, exec_child, &outsb, &errsb, &ea);
/macosx-10.10/bootp-298/bootpd.tproj/
H A Dbootplookup.c328 my_ether_aton(const char *a, struct ether_addr *ea, int eaLen) argument
337 &ea[0], &ea[1], &ea[2], &ea[3], &ea[4], &ea[5]);
342 return ea;
H A Dbootpdfile.c369 struct ether_addr * ea; local
379 ea = ether_aton(argv[1]);
380 if (ea == NULL) {
392 found = bootp_getbyhw_file(HTYPE_ETHER, ea, 6,
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dprocess.c601 struct exec_args *ea = v; local
603 const int ret = const_execvp(atf_fs_path_cstring(ea->m_prog), ea->m_argv);
607 atf_fs_path_cstring(ea->m_prog), strerror(errnocopy));
620 struct exec_args ea = { prog, argv }; local
627 err = atf_process_fork(&c, do_exec, outsb, errsb, &ea);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DPathCairo.cpp272 float ea = acos(orth_p1p2.x() / orth_p1p2_length); local
274 ea = 2 * piDouble - ea;
275 if ((sa > ea) && ((sa - ea) < piDouble))
277 if ((sa < ea) && ((ea - sa) > piDouble))
282 addArc(p, radius, sa, ea, anticlockwise);
/macosx-10.10/ruby-106/ruby/test/open-uri/
H A Dtest_ssl.rb146 00:9f:58:19:39:bc:ea:0c:b8:c3:5d:12:a7:d8:20:
215 1c:57:0b:c0:0c:3a:1d:6e:23:a9:03:26:7c:ea:8c:
231 9a:34:99:ea:76:a2:ed:f0:f7:a7:75:3b:81:fb:75:57:93:c1:
238 ea:63
267 1c:57:0b:c0:0c:3a:1d:6e:23:a9:03:26:7c:ea:8c:
274 c1:2e:17:5a:25:82:00:c4:e7:fb:1d:42:ea:71:6c:
299 6f:17:32:ab:84:c7:01:51:2d:e9:9f:ea:3a:36:52:
/macosx-10.10/Heimdal-398.1.2/appl/rsh/
H A Drsh.c743 struct addrinfo *ea, *eai; local
757 for (ea = eai; ea != NULL; ea = ea->ai_next) {
758 errsock = socket (ea->ai_family, ea->ai_socktype,
759 ea->ai_protocol);
762 if (bind (errsock, ea->ai_addr, ea
[all...]
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_pkcs5.rb23 raw = %w{ ea 6c 01 4d c7 2d 6f 8c
/macosx-10.10/xar-254/xar/lib/
H A Dlinuxattr.c88 xar_ea_t ea; member in struct:_linuxattr_context
153 if( !xar_check_prop(x, "ea") )
191 context.ea = e;
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Di960-dis.c39 static void ea (bfd_vma, int, const char *, const char *, int, unsigned int);
409 ea (memaddr, mode, reg2, reg3, word1, word2);
428 ea (memaddr, mode, reg2, reg3, word1, word2);
444 ea (memaddr, mode, reg2, reg3, word1, word2);
766 ea (bfd_vma memaddr, int mode, const char *reg2, const char *reg3, int word1,
765 ea (bfd_vma memaddr, int mode, const char *reg2, const char *reg3, int word1, function

Completed in 189 milliseconds

123