Searched refs:MEMCPY (Results 1 - 25 of 45) sorted by relevance

12

/macosx-10.9.5/text_cmds-87/ed/
H A Dcbc.c53 #define MEMCPY(dest,src,len) memcpy((dest),(src),(len)) macro
340 MEMCPY(ivec, msgbuf, 8);
353 (void)MEMCPY(msgbuf + n, pvec, 8 - n);
378 MEMCPY(tbuf, msgbuf, 8);
382 MEMCPY(ivec, tbuf, 8);
/macosx-10.9.5/BerkeleyDB-21/db/dist/brew/
H A Dbrew_posix.h72 #define MEMCPY(a, b, c) (NULL) macro
/macosx-10.9.5/ruby-104/ruby/
H A Dcont.c400 MEMCPY(cont->machine_stack, cont->machine_stack_src, VALUE, size);
413 MEMCPY(cont->machine_register_stack, cont->machine_register_stack_src, VALUE, size);
476 MEMCPY(cont->vm_stack, th->stack, VALUE, cont->vm_stack_slen);
477 MEMCPY(cont->vm_stack + cont->vm_stack_slen, (VALUE*)th->cfp, VALUE, cont->vm_stack_clen);
480 MEMCPY(cont->vm_stack, th->stack, VALUE, th->stack_size);
521 MEMCPY(th->stack, cont->vm_stack, VALUE, cont->vm_stack_slen);
522 MEMCPY(th->stack + sth->stack_size - cont->vm_stack_clen,
525 MEMCPY(th->stack, cont->vm_stack, VALUE, sth->stack_size);
722 MEMCPY(cont->machine_stack_src, cont->machine_stack,
728 MEMCPY(con
[all...]
H A Darray.c158 MEMCPY(ptr, ARY_EMBED_PTR(ary), VALUE, len);
173 MEMCPY(RARRAY(ary)->as.ary, ptr, VALUE, len);
264 MEMCPY(ARY_EMBED_PTR(ary), ptr, VALUE, len);
279 MEMCPY(ptr, RARRAY_PTR(ary), VALUE, len);
457 MEMCPY(RARRAY_PTR(ary), elts, VALUE, n);
535 MEMCPY(ARY_EMBED_PTR(subst), RARRAY_PTR(ary), VALUE, RARRAY_LEN(ary));
711 MEMCPY(RARRAY_PTR(ary), argv, VALUE, argc);
756 MEMCPY(ARY_EMBED_PTR(result), RARRAY_PTR(ary) + offset, VALUE, len);
851 MEMCPY(RARRAY_PTR(ary) + oldlen, ptr, VALUE, len);
1078 MEMCPY(RARRAY_PT
[all...]
H A Dvm_insnhelper.c1169 MEMCPY(new_argv, argv, VALUE, argc);
1173 MEMCPY(&orig_argv[iseq->arg_post_start], &argv[argc -= iseq->arg_post_len],
1624 MEMCPY(argv, cfp->sp - ci->argc, VALUE, ci->argc);
1687 MEMCPY(argv, cfp->sp - argc, VALUE, argc);
2214 MEMCPY(argv, RARRAY_PTR(ary), VALUE, argc);
H A Dbignum.c132 MEMCPY(ds, RBIGNUM(big)->as.ary, BDIGIT, RBIGNUM_EMBED_LEN_MAX);
144 MEMCPY(RBIGNUM(big)->as.ary, ds, BDIGIT, len);
197 MEMCPY(BDIGITS(z), BDIGITS(x), BDIGIT, len);
797 MEMCPY(p, s, char, len);
2181 MEMCPY(t1ds, yds + n, BDIGIT, r);
2213 MEMCPY(BDIGITS(h), vds + ln, BDIGIT, hn - 1);
2219 MEMCPY(BDIGITS(l), vds, BDIGIT, ln - 1);
2265 MEMCPY(zds + 2 * n, BDIGITS(t1), BDIGIT, t1n);
2274 MEMCPY(zds, BDIGITS(t2), BDIGIT, t2n);
2546 MEMCPY(zd
[all...]
H A Deval.c784 MEMCPY(&org_jmpbuf, &(th)->root_jmpbuf, rb_jmpbuf_t, 1);
788 MEMCPY(&(th)->root_jmpbuf, &org_jmpbuf, rb_jmpbuf_t, 1);
H A Dstruct.c399 MEMCPY(RSTRUCT_PTR(self), argv, VALUE, argc);
646 MEMCPY(RSTRUCT_PTR(copy), RSTRUCT_PTR(s), VALUE, RSTRUCT_LEN(copy));
H A Dobject.c241 MEMCPY(ROBJECT(dest)->as.ary, ROBJECT(obj)->as.ary, VALUE, ROBJECT_EMBED_LEN_MAX);
247 MEMCPY(ptr, ROBJECT(obj)->as.heap.ivptr, VALUE, len);
2642 MEMCPY(p, s, char, len);
H A Dst.c514 MEMCPY(packed_bins, PACKED_BINS(table), st_packed_entry, MAX_PACKED_HASH);
679 MEMCPY(new_table->bins, old_table->bins, st_table_entry*, old_table->num_bins);
H A Dstring.c1880 if (slen > 0) MEMCPY(RSTRING(str)->as.ary, ptr, char, slen);
2919 MEMCPY(save, p, char, len);
2926 MEMCPY(p, save, char, len);
2929 MEMCPY(save, p, char, len);
2934 MEMCPY(p, save, char, len);
2939 MEMCPY(p, save, char, len);
2949 MEMCPY(carry, p, char, len);
2953 MEMCPY(carry, p, char, len);
3041 MEMCPY(carry, s, char, l);
H A Dvm_eval.c715 MEMCPY(nargv + 1, argv, VALUE, argc);
759 MEMCPY(argv, RARRAY_PTR(args), VALUE, argc);
H A Dload.c493 MEMCPY(buf, feature, char, len);
H A Dsprintf.c1172 MEMCPY(buf, iov->iov_base, char, n = iov->iov_len);
H A Dtranscode.c420 MEMCPY(TRANSCODING_READBUF(tc) + tc->recognized_len,
768 MEMCPY(readagain_buf, TRANSCODING_READBUF(tc) + tc->recognized_len,
773 MEMCPY(TRANSCODING_READBUF(tc) + tc->recognized_len + tc->readagain_len,
2201 MEMCPY(str2, str, unsigned char, len); /* xxx: str may be invalid */
H A Dencoding.c1537 MEMCPY(s = ALLOCA_N(char, len), name, char, len);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfgetr.c143 MEMCPY(s,ends,n);
H A Dsfhdr.h1140 /* note that MEMCPY advances the associated pointers */
1141 #define MEMCPY(to,fr,n) \ macro
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DRuntimeLibcalls.h260 MEMCPY, enumerator in enum:llvm::RTLIB::Libcall
/macosx-10.9.5/ruby-104/ruby/ext/json/fbuffer/
H A Dfbuffer.h118 MEMCPY(fb->ptr + fb->len, newstr, char, len);
/macosx-10.9.5/emacs-92/emacs/src/
H A Dstrftime.c109 # define MEMCPY(d, s, n) __wmemcpy (d, s, n) macro
119 # define MEMCPY(d, s, n) bcopy ((s), (d), (n)) macro
121 # define MEMCPY(d, s, n) memcpy ((d), (s), (n)) macro
300 MEMCPY ((PTR) p, (const PTR) (s), _n))
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dstrftime.c101 # define MEMCPY(d, s, n) __wmemcpy (d, s, n) macro
111 # define MEMCPY(d, s, n) bcopy ((s), (d), (n)) macro
113 # define MEMCPY(d, s, n) memcpy ((d), (s), (n)) macro
292 MEMCPY ((PTR) p, (const PTR) (s), _n))
/macosx-10.9.5/ruby-104/ruby/ext/socket/
H A Dancdata.c1206 MEMCPY(cmsg, &cmh, char, sizeof(cmh));
1207 MEMCPY(cmsg+((char*)CMSG_DATA(&cmh)-(char*)&cmh), RSTRING_PTR(cdata), char, RSTRING_LEN(cdata));
H A Draddrinfo.c38 MEMCPY(&tmp_hints, hints, struct addrinfo, 1);
113 MEMCPY(&tmp_hints, hints, struct addrinfo, 1);
/macosx-10.9.5/ruby-104/ruby/ext/json/generator/
H A Dgenerator.c965 MEMCPY(objState, origState, JSON_Generator_State, 1);

Completed in 224 milliseconds

12