HomeSort by: relevance | last modified time | path
    Searched defs:copied (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/mit/libcbor/dist/oss-fuzz/
cbor_load_fuzzer.cc 32 cbor_item_t *copied = cbor_copy(item); local
33 cbor_decref(&copied);
  /src/external/mit/isl/dist/
isl_sort.c 36 * every element into a temporary buffer, blocks of elements are copied
57 size_t copied = 0; local
89 if (copied == 0) {
103 copied += (lo - ls);
108 copied += (hi - hs);
110 } else if (copied) {
112 copied += (lo - ls);
116 memcpy (a1, buf, copied);
126 copied += (am - lo);
129 memcpy (a1, buf, copied);
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/uc/
intel_guc_fw.c 67 size_t copied; local
70 copied = intel_uc_fw_copy_rsa(guc_fw, rsa, sizeof(rsa));
71 GEM_BUG_ON(copied < sizeof(rsa));
147 * Note that GuC needs the CSS header plus uKernel code to be copied
intel_huc.c 67 size_t copied; local
96 copied = intel_uc_fw_copy_rsa(&huc->fw, vaddr, vma->size);
97 GEM_BUG_ON(copied < huc->fw.rsa_size);
  /src/external/mit/libuv/dist/src/unix/
hurd.c 43 ssize_t copied; local
57 copied = uv__strscpy(buffer, exepath, *size);
60 *size = copied < 0 ? strlen(buffer) : (size_t) copied;
  /src/crypto/external/apache2/openssl/dist/crypto/dso/
dso_lib.c 227 char *copied; local
238 copied = OPENSSL_strdup(filename);
239 if (copied == NULL)
242 dso->filename = copied;
  /src/crypto/external/apache2/openssl/dist/include/internal/
ring_buf.h 236 size_t src_len = 0, copied = 0; local
253 if (!ring_buf_get_buf_at(r, r->ctail_offset + copied, &src, &src_len)) {
266 copied += src_len;
  /src/crypto/external/bsd/openssl/dist/crypto/dso/
dso_lib.c 232 char *copied; local
243 copied = OPENSSL_strdup(filename);
244 if (copied == NULL) {
249 dso->filename = copied;
  /src/crypto/external/bsd/openssl.old/dist/crypto/dso/
dso_lib.c 242 char *copied; local
253 copied = OPENSSL_strdup(filename);
254 if (copied == NULL) {
259 dso->filename = copied;
  /src/sys/external/bsd/drm2/include/linux/
kfifo.h 152 size_t copied = 0; local
161 copied = size;
166 copied = size;
171 copied = size;
176 return copied;
187 size_t copied = 0; local
197 copied = size;
203 copied = size;
209 copied = size;
214 return copied;
225 size_t copied = 0; local
    [all...]
  /src/sys/netinet/
accf_http.c 355 int ccleft, copied; local
363 * copied - how much we've copied so far
368 copied = 0;
381 tocopy = (NCHRS - ccleft) - copied;
385 switch (copied++) {
  /src/sys/external/bsd/drm2/dist/drm/
drm_property.c 472 int i, copied; local
499 copied = 0;
509 if (copy_to_user(&enum_ptr[copied].value,
513 if (copy_to_user(&enum_ptr[copied].name,
516 copied++;
drm_connector.c 2198 int copied = 0; local
2216 copied = 0;
2220 if (put_user(encoder->base.id, encoder_ptr + copied)) {
2224 copied++;
2262 copied = 0;
2272 if (copy_to_user(mode_ptr + copied,
2279 copied++;
  /src/sys/external/bsd/ipf/netinet/
ip_log.c 518 * Are we copied from the mblk or an aligned array ?
686 size_t dlen, copied; local
782 for (copied = 0; (ipl = softl->iplt[unit]) != NULL; copied += dlen) {
  /src/external/gpl3/gcc/dist/gcc/config/sh/
sh-mem.cc 70 /* We could use different pseudos for each copied word, but
75 int copied = 0; local
77 while (copied + 4 <= bytes)
79 rtx to = adjust_address (dest, SImode, copied);
81 src_addr, copied);
87 copied += 4;
90 if (copied < bytes)
91 move_by_pieces (adjust_address (dest, BLKmode, copied),
93 src_addr, copied),
94 bytes - copied, align, RETURN_BEGIN)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/sh/
sh-mem.cc 70 /* We could use different pseudos for each copied word, but
75 int copied = 0; local
77 while (copied + 4 <= bytes)
79 rtx to = adjust_address (dest, SImode, copied);
81 src_addr, copied);
87 copied += 4;
90 if (copied < bytes)
91 move_by_pieces (adjust_address (dest, BLKmode, copied),
93 src_addr, copied),
94 bytes - copied, align, RETURN_BEGIN)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-loop-ch.cc 386 auto_vec<std::pair<edge, loop_p> > copied; local
440 copied. TODO -- handle while (a || b) - like cases, by not requiring
452 header after the condition is copied. */
487 copied.safe_push (std::make_pair (entry, loop));
555 vectorization since nothing cleans up copied exit tests
557 region we copied till all loop exit blocks but not
559 for (unsigned i = 0; i < copied.length (); ++i)
561 edge entry = copied[i].first;
562 loop_p loop = copied[i].second;
lra-eliminations.cc 342 int copied = 0;
675 if (new_rtx != XEXP (x, i) && ! copied)
678 copied = 1;
694 if (! copied)
697 copied = 1;
341 int copied = 0; local
  /src/external/gpl3/binutils/dist/libctf/
ctf-serialize.c 807 ctf_stype_t *copied; local
828 copied = (ctf_stype_t *) t; /* name is at the start: constant offset. */
829 if (copied->ctt_name
830 && (name = ctf_strraw (fp, copied->ctt_name)) != NULL)
831 ctf_str_add_ref (fp, name, &copied->ctt_name);
832 copied->ctt_size = type_ctt_size;
860 /* These need to be copied across element by element, depending on
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-serialize.c 801 ctf_stype_t *copied; local
822 copied = (ctf_stype_t *) t; /* name is at the start: constant offset. */
823 if (copied->ctt_name
824 && (name = ctf_strraw (fp, copied->ctt_name)) != NULL)
825 ctf_str_add_ref (fp, name, &copied->ctt_name);
826 copied->ctt_size = type_ctt_size;
854 /* These need to be copied across element by element, depending on
  /src/external/gpl3/gcc/dist/gcc/
lra-eliminations.cc 345 int copied = 0;
691 if (new_rtx != XEXP (x, i) && ! copied)
694 copied = 1;
710 if (! copied)
713 copied = 1;
344 int copied = 0; local
tree-ssa-loop-ch.cc 802 auto_vec<std::pair<edge, loop_p> > copied; local
839 copied. TODO -- handle while (a || b) - like cases, by not requiring
870 header after the condition is copied. */
942 header after the condition is copied. */
992 copied.safe_push (std::make_pair (entry, loop));
1151 vectorization since nothing cleans up copied exit tests
1153 region we copied till all loop exit blocks but not
1155 for (unsigned i = 0; i < copied.length (); ++i)
1157 edge entry = copied[i].first;
1158 loop_p loop = copied[i].second
    [all...]
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-serialize.c 801 ctf_stype_t *copied; local
822 copied = (ctf_stype_t *) t; /* name is at the start: constant offset. */
823 if (copied->ctt_name
824 && (name = ctf_strraw (fp, copied->ctt_name)) != NULL)
825 ctf_str_add_ref (fp, name, &copied->ctt_name);
826 copied->ctt_size = type_ctt_size;
854 /* These need to be copied across element by element, depending on
  /src/external/gpl3/gdb/dist/libctf/
ctf-serialize.c 807 ctf_stype_t *copied; local
828 copied = (ctf_stype_t *) t; /* name is at the start: constant offset. */
829 if (copied->ctt_name
830 && (name = ctf_strraw (fp, copied->ctt_name)) != NULL)
831 ctf_str_add_ref (fp, name, &copied->ctt_name);
832 copied->ctt_size = type_ctt_size;
860 /* These need to be copied across element by element, depending on
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dmu.c 1395 int tocpy, copied, thiscpy; local
1413 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1415 thiscpy = MIN(PAGESIZE, tocpy - copied);
1453 int tocpy, copied, thiscpy; local
1471 for (copied = 0; copied < tocpy; copied += PAGESIZE) {
1473 thiscpy = MIN(PAGESIZE, tocpy - copied);
1510 int tocpy, copied, thiscpy; local
    [all...]

Completed in 44 milliseconds

1 2