Searched refs:memcpy (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/ast/src/lib/libast/comp/
H A Dmemcpy.c28 NoN(memcpy)
32 #undef memcpy
39 memcpy(void* s1, void* s2, size_t n)
48 memcpy(void* as1, const void* as2, register size_t n)
H A Dmemmove.c41 return(memcpy(to, from, n)); /* hope it's fast*/
H A Dopenlog.c47 memcpy(log.ident, ident, n);
/ast/src/lib/libast/astsa/
H A Dstrdup.c36 return (s && (t = newof(0, char, n = strlen(s) + 1, 0))) ? (char*)memcpy(t, s, n) : (char*)0;
/ast/src/lib/libast/string/
H A Dmemdup.c41 return((t = (void*)newof(0, char, n, 0)) ? memcpy(t, s, n) : 0);
H A Dccnative.c40 return memcpy(b, a, n * (UCHAR_MAX + 1));
53 memcpy(cb + n * c, ca + n * m[c], n);
H A Dstrdup.c59 return (s && (t = oldof(0, char, n = strlen(s) + 1, 0))) ? (char*)memcpy(t, s, n) : (char*)0;
H A Dfmtident.c72 memcpy(buf, s, i);
H A Dfmtint.c112 memcpy(buff+k,table+3*m,3);
/ast/src/lib/libast/vmalloc/
H A Dvmstrdup.c45 return (s && (t = vmalloc(v, n = strlen(s) + 1))) ? (char*)memcpy(t, s, n) : (char*)0;
/ast/src/lib/libpp/
H A Dppcontext.c45 memcpy(op, _PP_CONTEXT_BASE_, sizeof(struct ppcontext));
63 if (np) memcpy(_PP_CONTEXT_BASE_, np, sizeof(struct ppcontext));
/ast/src/cmd/dsslib/ip_t/
H A Dfv.h64 #define fvcpy(n,r,a) memcpy(r,a,n)
/ast/src/lib/libast/path/
H A Dpathnative.c63 memcpy(buf, tmp, n + 1);
87 memcpy(buf, path, n + 1);
116 memcpy(buf, path, n + 1);
H A Dpathposix.c63 memcpy(buf, tmp, n + 1);
87 memcpy(buf, path, n + 1);
118 memcpy(buf, path, n + 1);
/ast/src/cmd/dsslib/netflow/
H A Dflow-dump.c245 memcpy(&rp->version, state->data, n);
253 memcpy(&rp->engine_type, state->data + 20, 2);
257 memcpy(&rp->version, state->data, n);
269 memcpy(&rp->version, state->data, n);
297 memcpy(&rp->flags, state->data + 36, 4);
300 memcpy(rp, r1, sizeof(Rec_1_t));
312 memcpy(&rp->flags, state->data + 36, 4);
314 memcpy(&rp->src_maskv4, state->data + 44, 2);
317 memcpy(rp, state->data, sizeof(Rec_5_t));
328 memcpy(
[all...]
/ast/src/lib/libast/stdio/
H A Dvsnprintf.c43 memcpy(s, f->data, n);
/ast/src/lib/libast/sfio/
H A Dsfswap.c91 memcpy((Void_t*)(&tmp),(Void_t*)f1,sizeof(Sfio_t));
92 memcpy((Void_t*)f1,(Void_t*)f2,sizeof(Sfio_t));
93 memcpy((Void_t*)f2,(Void_t*)(&tmp),sizeof(Sfio_t));
H A Dsftable.c342 memcpy(&savft, ft, sizeof(*ft));
372 memcpy(ft,&fp[n].ft,sizeof(Sffmt_t));
377 memcpy(&fp[n].ft,ft,sizeof(Sffmt_t));
379 { memcpy(ft,&savft,sizeof(Sffmt_t));
412 memcpy(ft,&savft,sizeof(Sffmt_t));
417 memcpy(&savft,ft,sizeof(Sffmt_t));
465 memcpy(ft,&savft,sizeof(Sffmt_t));
525 memcpy((char*)&_Sffnan, (char*)flt_nan, sizeof(_Sffnan));
526 memcpy((char*)&_Sffinf, (char*)flt_inf, sizeof(_Sffinf));
527 memcpy((cha
[all...]
/ast/src/lib/libast/cdt/
H A Ddtclose.c52 memcpy(&pdt, dt, sizeof(Dt_t));
/ast/src/lib/libexpr/
H A Dexrewind.c46 memcpy(ex->input->pushback, ex->line, n);
/ast/src/cmd/3d/
H A Dreadlink3d.c52 memcpy(buf, state.path.linkname, r);
/ast/src/lib/libcs/
H A Dmsgbuf.c101 if (size) memcpy(data, *buf, size);
128 memcpy(*buf, data, n);
/ast/src/lib/libpz/
H A Dpzwrite.c93 memcpy(pz->ws.sp, bp, x);
110 memcpy(elt->buf, bp, k);
116 memcpy(elt->buf, bp, x);
130 memcpy(pz->ws.pb + pz->ws.pc, buf, x);
150 memcpy(pz->ws.pb + pz->ws.pc, be, k);
165 memcpy(pat, bp, pp->row);
170 memcpy(pz->ws.vp, pat, pp->row);
/ast/src/cmd/cs/vcs_src/
H A Dvcs_dir.c72 memcpy((char *)ntp, (char *)tp, tp->length);
84 memcpy((char *)ntp, (char *)tp, tp->length);
97 memcpy((char *)ntp, (char *)tp, tp->length);
/ast/src/cmd/vczip/tests/
H A Dtvcrtable.c56 memcpy(Data+dtsz1, Record1[k], n);
68 memcpy(Data+dtsz2, Record2[k], n);

Completed in 76 milliseconds

1234567891011>>