Searched refs:cp (Results 51 - 75 of 283) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/lwip2/src/core/ipv4/
H A Dip4_addr.c129 * @param cp IP address in ascii representation (e.g. "127.0.0.1")
133 ipaddr_addr(const char *cp) argument
137 if (ip4addr_aton(cp, &val)) {
144 * Check whether "cp" is a valid ascii representation
150 * @param cp IP address in ascii representation (e.g. "127.0.0.1")
152 * @return 1 if cp could be converted to addr, 0 on failure
155 ip4addr_aton(const char *cp, ip4_addr_t *addr) argument
163 c = *cp;
176 c = *++cp;
179 c = *++cp;
[all...]
/barrelfish-2018-10-04/lib/arranet/
H A Dip_addr.c127 * @param cp IP address in ascii represenation (e.g. "127.0.0.1")
131 ipaddr_addr(const char *cp) argument
135 if (ipaddr_aton(cp, &val)) {
142 * Check whether "cp" is a valid ascii representation
148 * @param cp IP address in ascii represenation (e.g. "127.0.0.1")
150 * @return 1 if cp could be converted to addr, 0 on failure
153 ipaddr_aton(const char *cp, ip_addr_t *addr) argument
161 c = *cp;
173 c = *++cp;
176 c = *++cp;
[all...]
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dprintf-pos.c187 char *cp; local
191 cp = *fmtp;
192 while (is_digit(*cp)) {
193 n2 = 10 * n2 + to_digit(*cp);
194 cp++;
196 if (*cp == '$') {
202 *fmtp = ++cp;
213 wchar_t *cp; local
217 cp = *fmtp;
218 while (is_digit(*cp)) {
[all...]
H A Dxprintf_int.c92 char *cp = endp; local
103 *--cp = to_char(val);
104 return (cp);
114 *--cp = to_char(val % 10);
120 *--cp = to_char(sval % 10);
128 *--cp = thousep;
144 *--cp = to_char(val & 7);
151 *--cp = xdigs[val & 15];
159 return (cp);
168 char *cp local
[all...]
/barrelfish-2018-10-04/lib/libc/include/
H A Dnscache.h163 #define NS_APPLY_OFFSET(cp, cb, ib, p_type) \
164 if ((cp) != NULL) \
165 (cp) = (p_type)((char *)(cb) + (size_t)(cp) - (size_t)(ib))
170 #define NS_GET_NEWP(cp, cb, ib) \
171 ((char *)(cb) + (size_t)(cp) - (size_t)(ib))
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dinet.h141 #define inet_addr(cp) ipaddr_addr(cp)
142 #define inet_aton(cp, addr) ip4addr_aton(cp, (ip4_addr_t*)addr)
161 #define inet6_aton(cp, addr) ip6addr_aton(cp, (ip6_addr_t*)addr)
/barrelfish-2018-10-04/include/lwip2/netif/ppp/
H A Dppp_impl.h499 * cp MUST be u_char *.
501 #define GETCHAR(c, cp) { \
502 (c) = *(cp)++; \
504 #define PUTCHAR(c, cp) { \
505 *(cp)++ = (u_char) (c); \
507 #define GETSHORT(s, cp) { \
508 (s) = *(cp)++ << 8; \
509 (s) |= *(cp)++; \
511 #define PUTSHORT(s, cp) { \
512 *(cp)
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dregex2.h93 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* regcomp() internal fns */
94 #define MCsub(p, cs, cp) mcsub(p, cs, cp)
95 #define MCin(p, cs, cp) mcin(p, cs, cp)
/barrelfish-2018-10-04/lib/libc/iconv/
H A Dcitrus_module.c126 _getdewey(int dewey[], char *cp) argument
131 if (*cp == '\0')
134 if (*cp == '.') cp++;
135 if (*cp < '0' || '9' < *cp)
138 dewey[n++] = (int)_bcs_strtol(cp, &cp, 10);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/shlib/
H A DMakefile.hpux10-cc16 cp -p $? $@
20 cp -p $? $@
/barrelfish-2018-10-04/usr/eclipseclp/Contrib/
H A DMakefile.in79 /bin/cp $< $@
91 /bin/cp $< $@
95 /bin/cp $< $@
99 /bin/cp $< $@
103 /bin/cp $< $@
115 /bin/cp README $@
119 /bin/cp COPYING $@
123 /bin/cp $< $@
/barrelfish-2018-10-04/usr/eclipseclp/icparc_solvers/ilog/
H A DINSTALL40 cp $2 $3/$2
/barrelfish-2018-10-04/usr/eclipseclp/documents/libman/
H A DMakefile.obs46 cp $(ROOTFILE).pdf ../../doc/$(DESTFILE).pdf
54 mv $$f $$f.old; cp $$f.old $$f; \
111 cp $(ROOTFILE)[0-9]??.* $(ROOTFILE)/
112 cp $(ROOTFILE).css $(ROOTFILE)/
113 cp contents_motif.gif next_motif.gif previous_motif.gif $(ROOTFILE)
114 cp index.html $(ROOTFILE)/$(ROOTFILE).html
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rc4/
H A Drc4_skey.c130 unsigned char *cp=(unsigned char *)d; local
132 for (i=0;i<256;i++) cp[i]=i;
133 for (i=0;i<256;i++) SK_LOOP(cp,i);
/barrelfish-2018-10-04/lib/libc/net/
H A Dgetprotoname.c62 char **cp; local
87 for (cp = pe.p_aliases; *cp != 0; cp++)
88 if (strcmp(*cp, name) == 0)
/barrelfish-2018-10-04/lib/libc/tests/nss/
H A Dgetgr_test.c86 char **cp; local
104 for (cp = src->gr_mem; *cp; ++cp)
110 for (cp = src->gr_mem; *cp; ++cp) {
111 dest->gr_mem[cp - src->gr_mem] = strdup(*cp);
112 ATF_REQUIRE(dest->gr_mem[cp
120 char **cp; local
176 char **cp; local
[all...]
H A Dgetproto_test.c85 char **cp; local
99 for (cp = src->p_aliases; *cp; ++cp)
105 for (cp = src->p_aliases; *cp; ++cp) {
106 dest->p_aliases[cp - src->p_aliases] = strdup(*cp);
107 assert(dest->p_aliases[cp
115 char **cp; local
169 char **cp; local
[all...]
H A Dgetrpc_test.c86 char **cp; local
100 for (cp = src->r_aliases; *cp; ++cp)
106 for (cp = src->r_aliases; *cp; ++cp) {
107 dest->r_aliases[cp - src->r_aliases] = strdup(*cp);
108 ATF_REQUIRE(dest->r_aliases[cp
116 char **cp; local
170 char **cp; local
[all...]
H A Dgetserv_test.c84 char **cp; local
102 for (cp = src->s_aliases; *cp; ++cp)
108 for (cp = src->s_aliases; *cp; ++cp) {
109 dest->s_aliases[cp - src->s_aliases] = strdup(*cp);
110 ATF_REQUIRE(dest->s_aliases[cp
118 char **cp; local
174 char **cp; local
[all...]
H A Dgethostby_test.c146 char **cp; local
163 for (cp = src->h_aliases; *cp; ++cp)
170 for (cp = src->h_aliases; *cp; ++cp) {
171 dest->h_aliases[cp - src->h_aliases] = strdup(*cp);
172 ATF_REQUIRE(dest->h_aliases[cp
197 char **cp; local
377 char **cp; local
409 char **cp; local
728 char **cp; local
803 char **cp; local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/documents/embedding/
H A DMakefile46 cp $(ROOTFILE).pdf ../../doc/$(DESTFILE).pdf
53 mv $$f $$f.old; cp $$f.old $$f; \
91 cp -r embjava-diagrams $(ROOTFILE)
97 cp $(ROOTFILE)[0-9]??.* $(ROOTFILE)/
98 cp $(ROOTFILE).css $(ROOTFILE)/
99 cp contents_motif.gif next_motif.gif previous_motif.gif $(ROOTFILE)
100 cp index.html $(ROOTFILE)/$(ROOTFILE).html
/barrelfish-2018-10-04/usr/eclipseclp/ZincInterface/
H A DMakefile.in64 /bin/cp $< $@
72 /bin/cp $< $@
80 /bin/cp $< $@
84 /bin/cp $< $@
88 /bin/cp $< $@
/barrelfish-2018-10-04/lib/libc/gen/
H A Dgetcap.c113 const char *cp; local
132 for (cp = cap; *cp == *bp && *bp != '\0'; cp++, bp++)
134 if (*cp != '\0')
651 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE]; local
715 for (cp = line; *cp != '\0'; cp++) {
716 if (*cp
1043 char *cp, tmp; local
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/documents/applications/
H A DMakefile48 cp $(ROOTFILE).pdf ../../doc/$(DESTFILE).pdf
57 mv $$f $$f.old; cp $$f.old $$f; \
111 cp $(ROOTFILE)[0-9]??.* $(ROOTFILE)/
112 cp $(ROOTFILE).css $(ROOTFILE)/
113 cp contents_motif.gif next_motif.gif previous_motif.gif $(ROOTFILE)
114 cp index.html $(ROOTFILE)/$(ROOTFILE).html
/barrelfish-2018-10-04/usr/eclipseclp/documents/internal/
H A DMakefile48 cp $(ROOTFILE).pdf ../../doc/$(DESTFILE).pdf
56 mv $$f $$f.old; cp $$f.old $$f; \
111 cp $(ROOTFILE)[0-9]??.* $(ROOTFILE)/
112 cp $(ROOTFILE).css $(ROOTFILE)/
113 cp contents_motif.gif next_motif.gif previous_motif.gif $(ROOTFILE)
114 cp index.html $(ROOTFILE)/$(ROOTFILE).html

Completed in 135 milliseconds

1234567891011>>