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

1 2 3 4

  /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/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/external/mit/libcbor/dist/oss-fuzz/
cbor_load_fuzzer.cc 32 cbor_item_t *copied = cbor_copy(item); local
33 cbor_decref(&copied);
  /src/common/lib/libc/arch/m68k/string/
strcat.S 56 jne .Lscloop | copied non-null, keep going
strcpy.S 52 jne .Lscloop | copied non-null, keep going
strncpy.S 58 jeq .Lscpadding | copied null, padding if necessary
  /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/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/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
appending.d 198 int copied;
203 copied++;
212 assert(copied >= arr2.length);
  /src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-properties-1 12 !extract\ me=some text to get fuzzy copied to result
56 msgstr "some text to get fuzzy copied to result"
xgettext-c-7 30 /* this one is also copied */ nada
68 #. this one is also 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/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/external/gpl3/gcc/
gcc2gcc.old 59 echo GCC copied to gcc.old. use these commands to import:
  /src/sys/arch/m68k/m68k/
copy.s 230 * user's address space. Return the number of characters copied (including
248 jeq .Lcisdone | copied null, exit
256 subl 4(%sp),%a0 | yes, calculate length copied
269 * user's address space. Return the number of characters copied (including
287 jeq .Lcosdone | copied null, exit
295 subl 4(%sp),%a0 | yes, calculate length copied
  /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/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/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/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;
  /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/usr.bin/make/unit-tests/
dep-colon-bug-cross-file.mk 25 # properly copied before storing them in global variables.
  /src/external/apache2/llvm/dist/libcxx/src/support/solaris/
mbsnrtowcs.inc 4 * As noted in the source, some portions of this implementation are copied from
  /src/external/gpl3/gdb/dist/sim/testsuite/msp430/
testutils.inc 20 # up code which copied data from LMA to VMA. But we have no

Completed in 47 milliseconds

1 2 3 4