Searched refs:copy (Results 26 - 50 of 1287) sorted by relevance

1234567891011>>

/external/elfutils/src/libdwfl/
H A Ddwfl_module_report_build_id.c60 void *copy = NULL; local
63 copy = malloc (len);
64 if (unlikely (copy == NULL))
69 memcpy (copy, bits, len);
74 mod->build_id_bits = copy;
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFUtils.h35 CFReleaser(const CFReleaser& copy) : _ptr(copy.get()) argument
43 CFReleaser& operator= (const CFReleaser<T>& copy) argument
45 if (copy != *this)
48 reset(copy.get());
/external/mockito/src/org/mockito/internal/creation/settings/
H A DCreationSettings.java37 public CreationSettings(CreationSettings copy) { argument
38 this.typeToMock = copy.typeToMock;
39 this.extraInterfaces = copy.extraInterfaces;
40 this.name = copy.name;
41 this.spiedInstance = copy.spiedInstance;
42 this.defaultAnswer = copy.defaultAnswer;
43 this.mockName = copy.mockName;
44 this.serializable = copy.serializable;
45 this.invocationListeners = copy.invocationListeners;
46 this.stubOnly = copy
[all...]
/external/gptfdisk/
H A Dguid.cc39 } // copy constructor
43 } // copy (from string) constructor
47 } // copy (from char*) constructor
67 string copy, fragment; local
82 copy = DeleteSpaces(orig);
85 len = copy.length();
93 uuidData[3] = StrToHex(copy, 0);
94 uuidData[2] = StrToHex(copy, 2);
95 uuidData[1] = StrToHex(copy, 4);
96 uuidData[0] = StrToHex(copy,
[all...]
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefstruct.c21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy
[all...]
H A Dbyrefcopyint.c50 voidVoid copy = Block_copy(dummy); local
53 return copy;
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
H A DBiMapInverseTester.java6 * You may obtain a copy of the License at
46 BiMapPair<K, V> copy = SerializableTester.reserialize(pair);
47 assertEquals(pair.forward, copy.forward);
48 assertEquals(pair.backward, copy.backward);
49 assertSame(copy.backward, copy.forward.inverse());
50 assertSame(copy.forward, copy.backward.inverse());
/external/guava/guava-tests/benchmark/com/google/common/collect/
H A DComparatorDelegationOverheadBenchmark.java5 * in compliance with the License. You may obtain a copy of the License at
53 Integer[] copy = inputArrays[i & 0xFF].clone();
54 Arrays.sort(copy);
55 tmp += copy[0];
63 Integer[] copy = inputArrays[i & 0xFF].clone();
64 Arrays.sort(copy, Ordering.natural());
65 tmp += copy[0];
80 Integer[] copy = inputArrays[i & 0xFF].clone();
81 Arrays.sort(copy, Ordering.from(NATURAL_INTEGER));
82 tmp += copy[
[all...]
/external/guava/guava-tests/test/com/google/common/jdk5backport/
H A DArrays.java16 byte[] copy = new byte[newLength];
17 System.arraycopy(original, from, copy, 0, Math.min(original.length - from, newLength));
18 return copy;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DUnivariateStatistic.java7 * the License. You may obtain a copy of the License at
47 * Returns a copy of the statistic with the same internal state.
49 * @return a copy of the statistic
51 UnivariateStatistic copy(); method in interface:UnivariateStatistic
H A DStorelessUnivariateStatistic.java7 * the License. You may obtain a copy of the License at
80 * Returns a copy of the statistic with the same internal state.
82 * @return a copy of the statistic
84 StorelessUnivariateStatistic copy(); method in interface:StorelessUnivariateStatistic
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DSecondMoment.java7 * the License. You may obtain a copy of the License at
65 * @param original the {@code SecondMoment} instance to copy
105 public SecondMoment copy() { method in class:SecondMoment
107 copy(this, result);
115 * @param source SecondMoment to copy
116 * @param dest SecondMoment to copy to
119 public static void copy(SecondMoment source, SecondMoment dest) { method in class:SecondMoment
120 FirstMoment.copy(source, dest);
H A DFourthMoment.java7 * the License. You may obtain a copy of the License at
73 * @param original the {@code FourthMoment} instance to copy
77 copy(original, this);
124 public FourthMoment copy() { method in class:FourthMoment
126 copy(this, result);
134 * @param source FourthMoment to copy
135 * @param dest FourthMoment to copy to
138 public static void copy(FourthMoment source, FourthMoment dest) { method in class:FourthMoment
139 ThirdMoment.copy(source, dest);
H A DThirdMoment.java7 * the License. You may obtain a copy of the License at
75 * @param original the {@code ThirdMoment} instance to copy
78 copy(original, this);
119 public ThirdMoment copy() { method in class:ThirdMoment
121 copy(this, result);
129 * @param source ThirdMoment to copy
130 * @param dest ThirdMoment to copy to
133 public static void copy(ThirdMoment source, ThirdMoment dest) { method in class:ThirdMoment
134 SecondMoment.copy(source, dest);
H A DFirstMoment.java7 * the License. You may obtain a copy of the License at
87 * @param original the {@code FirstMoment} instance to copy
91 copy(original, this);
139 public FirstMoment copy() { method in class:FirstMoment
141 copy(this, result);
149 * @param source FirstMoment to copy
150 * @param dest FirstMoment to copy to
153 public static void copy(FirstMoment source, FirstMoment dest) { method in class:FirstMoment
/external/selinux/libsepol/cil/src/
H A Dcil_copy_ast.c49 void cil_copy_list(struct cil_list *data, struct cil_list **copy) argument
83 *copy = new;
86 int cil_copy_node(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
93 *copy = new;
98 int cil_copy_block(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
108 *copy = new;
110 *copy = datum;;
116 int cil_copy_blockabstract(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
125 *copy = new;
130 int cil_copy_blockinherit(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute_ argument
145 cil_copy_policycap(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
163 cil_copy_perm(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
216 cil_copy_classmapping(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
233 cil_copy_class(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
255 cil_copy_classorder(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
270 cil_copy_classpermission(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
292 cil_copy_classpermissionset(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
306 cil_copy_classcommon(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
321 cil_copy_sid(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
339 cil_copy_sidcontext(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
358 cil_copy_sidorder(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
373 cil_copy_user(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
391 cil_copy_userrole(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
406 cil_copy_userlevel(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
426 cil_copy_userrange(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
447 cil_copy_userprefix(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
462 cil_copy_role(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
480 cil_copy_roletype(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
495 cil_copy_roleattribute(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
513 cil_copy_roleattributeset(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
530 cil_copy_roleallow(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
545 cil_copy_type(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
563 cil_copy_typepermissive(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
577 cil_copy_typeattribute(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
595 cil_copy_typeattributeset(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
612 cil_copy_alias(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
632 cil_copy_aliasactual(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused))symtab_t *symtab) argument
647 cil_copy_roletransition(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
664 cil_copy_nametypetransition(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
683 cil_copy_rangetransition(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
706 cil_copy_bool(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
726 cil_copy_tunable(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
746 cil_copy_avrule(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
763 cil_copy_type_rule(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
781 cil_copy_sens(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
799 cil_copy_cat(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
824 cil_copy_catset(struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
846 cil_copy_senscat(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
862 cil_copy_catorder(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
877 cil_copy_sensitivityorder(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
903 cil_copy_level(struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
940 cil_copy_levelrange(struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
977 cil_copy_context(struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
1000 cil_copy_netifcon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1028 cil_copy_genfscon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1050 cil_copy_filecon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1072 cil_copy_nodecon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1105 cil_copy_portcon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1128 cil_copy_pirqcon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1149 cil_copy_iomemcon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1171 cil_copy_ioportcon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1193 cil_copy_pcidevicecon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1214 cil_copy_devicetreecon(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1235 cil_copy_fsuse(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1298 cil_copy_constrain(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1314 cil_copy_validatetrans(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1331 cil_copy_call(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1361 cil_copy_macro(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
1426 cil_copy_optional(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
1450 cil_copy_ipaddr(__attribute__((unused)) struct cil_db *db, void *data, void **copy, symtab_t *symtab) argument
1471 cil_copy_condblock(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1482 cil_copy_boolif(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1498 cil_copy_tunif(struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1513 cil_copy_default(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1533 cil_copy_defaultrange(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1551 cil_copy_handleunknown(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1563 cil_copy_mls(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
1575 cil_copy_bounds(__attribute__((unused)) struct cil_db *db, void *data, void **copy, __attribute__((unused)) symtab_t *symtab) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DBiMapInverseTester.java6 * You may obtain a copy of the License at
51 BiMapPair<K, V> copy = SerializableTester.reserialize(pair);
52 assertEquals(pair.forward, copy.forward);
53 assertEquals(pair.backward, copy.backward);
54 assertSame(copy.backward, copy.forward.inverse());
55 assertSame(copy.forward, copy.backward.inverse());
/external/skia/src/core/
H A DSkRecorder.cpp64 // The structs we're creating all copy their constructor arguments. Given the way the SkRecords
66 // into a single copy unless the class has a non-trivial copy constructor. For classes with
67 // non-trivial copy constructors, we skip the first copy (and its destruction) by wrapping the value
70 // This is used below for SkBitmap, SkPaint, SkPath, and SkRegion, which all have non-trivial copy
85 // Use copy() only for optional arguments, to be copied if present or skipped if not.
86 // (For most types we just pass by value and let copy constructors do their thing.)
88 T* SkRecorder::copy(const T* src) { function in class:SkRecorder
95 // This copy() i
98 T* SkRecorder::copy(const T src[], size_t count) { function in class:SkRecorder
113 char* SkRecorder::copy(const char src[], size_t count) { function in class:SkRecorder
124 char* SkRecorder::copy(const char* src) { function in class:SkRecorder
[all...]
/external/llvm/bindings/ocaml/llvm/
H A DMakefile22 all-local:: copy-meta
29 copy-meta: $(OcamlDir)/META.llvm
43 .PHONY: copy-meta install-meta uninstall-meta
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { function
22 copy("Hello, world!", 14, stuff);
/external/zlib/src/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
379 local int updatewindow(strm, end, copy)
382 unsigned copy;
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
97 unsigned copy));
382 unsigned copy)
404 /* copy state->wsize or less output bytes into the circular window */
405 if (copy >= state->wsize) {
412 if (dist > copy) dist = copy;
413 zmemcpy(state->window + state->wnext, end - copy, dis
379 updatewindow( z_streamp strm, const Bytef *end, unsigned copy) argument
616 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
H A DStepInterpolator.java7 * the License. You may obtain a copy of the License at
39 * {@link #copy()} method.
79 * specific state must be preserved, a copy of the instance must be
80 * created using {@link #copy()}.</p>
125 * @return a deep copy of the instance, which can be used independently.
130 StepInterpolator copy() throws DerivativeException; method in interface:StepInterpolator
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DMax.java7 * the License. You may obtain a copy of the License at
63 * @param original the {@code Max} instance to copy
66 copy(original, this);
144 public Max copy() { method in class:Max
146 copy(this, result);
154 * @param source Max to copy
155 * @param dest Max to copy to
158 public static void copy(Max source, Max dest) { method in class:Max
H A DMin.java7 * the License. You may obtain a copy of the License at
63 * @param original the {@code Min} instance to copy
66 copy(original, this);
144 public Min copy() { method in class:Min
146 copy(this, result);
154 * @param source Min to copy
155 * @param dest Min to copy to
158 public static void copy(Min source, Min dest) { method in class:Min

Completed in 668 milliseconds

1234567891011>>