Home
last modified time | relevance | path

Searched refs:edst (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/bin/csh/
H A Dstr.c100 Char *dst, *edst; in str2short() local
112 edst = &dst[dstsize]; in str2short()
115 if (dst == edst) { in str2short()
118 edst = &sdst[dstsize]; in str2short()
119 dst = &edst[-MALLOC_INCR]; in str2short()
131 char *dst, *edst; in short2str() local
141 edst = &dst[dstsize]; in short2str()
144 if (dst == edst) { in short2str()
147 edst = &sdst[dstsize]; in short2str()
148 dst = &edst[-MALLOC_INCR]; in short2str()
[all …]
/netbsd-src/external/bsd/less/dist/
H A Dcvt.c57 char *edst = odst; in cvt_text() local
100 if (dst > edst) in cvt_text()
101 edst = dst; in cvt_text()
103 if ((ops & CVT_CRLF) && edst > odst && edst[-1] == '\r') in cvt_text()
104 edst--; in cvt_text()
105 *edst = '\0'; in cvt_text()
107 *lenp = (int) (edst - odst); in cvt_text()
/netbsd-src/sys/net/
H A Dif_ethersubr.c197 uint8_t esrc[ETHER_ADDR_LEN], edst[ETHER_ADDR_LEN]; in ether_output() local
247 memcpy(edst, etherbroadcastaddr, sizeof(edst)); in ether_output()
249 ETHER_MAP_IP_MULTICAST(&satocsin(dst)->sin_addr, edst); in ether_output()
251 error = arpresolve(ifp0, rt, m, dst, edst, sizeof(edst)); in ether_output()
264 memcpy(edst, etherbroadcastaddr, sizeof(edst)); in ether_output()
273 memcpy(edst, tha, sizeof(edst)); in ether_output()
[all...]
/netbsd-src/sys/arch/powerpc/oea/
H A Daltivec.c274 const paddr_t edst = dst + PAGE_SIZE; in vcopypage() local
317 [edst] "b"(edst), [off0] "r"(0), [off16] "r"(16), in vcopypage()
/netbsd-src/external/bsd/libbind/dist/irs/
H A Dhesiod.c355 char *dst, *edst, **list; in get_txt_records() local
431 edst = dst + rr.dlen; in get_txt_records()
436 if (cp + n > eom || dst + n > edst) { in get_txt_records()
/netbsd-src/external/bsd/file/dist/src/
H A Dsoftmagic.c1404 char *edst = &p->s[sizeof(p->s) - 1]; in mcopy() local
1413 if (dst < edst) in mcopy()
1425 *edst = '\0'; in mcopy()
/netbsd-src/external/gpl3/gcc/dist/gcc/fortran/
H A Dtrans-stmt.cc5923 gfc_expr *cond, *tdst, *tsrc, *edst, *esrc; in gfc_trans_where_3() local
5943 edst = eblock ? eblock->next->expr1 : NULL; in gfc_trans_where_3()
5972 edss = gfc_walk_expr (edst); in gfc_trans_where_3()
6027 gfc_conv_expr (&edse, edst); in gfc_trans_where_3()
6031 estmt = eblock ? gfc_trans_scalar_assign (&edse, &esse, edst->ts, in gfc_trans_where_3()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/
H A Dtrans-stmt.c5887 gfc_expr *cond, *tdst, *tsrc, *edst, *esrc; in gfc_trans_where_3() local
5907 edst = eblock ? eblock->next->expr1 : NULL; in gfc_trans_where_3()
5936 edss = gfc_walk_expr (edst); in gfc_trans_where_3()
5991 gfc_conv_expr (&edse, edst); in gfc_trans_where_3()
5995 estmt = eblock ? gfc_trans_scalar_assign (&edse, &esse, edst->ts, in gfc_trans_where_3()
/netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_parser.c2455 int edst, esrc; in dt_node_xlator() local
2461 edst = dt_decl_type(ddp, &dst); in dt_node_xlator()
2467 if (edst != 0 || esrc != 0) { in dt_node_xlator()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCMac.cpp1689 llvm::Value *src, Address edst) override;