/external/eigen/Eigen/src/SparseCore/ |
TriangularSolver.h | 7 // Public License v. 2.0. If a copy of the MPL was not distributed 171 enum { copy = internal::traits<OtherDerived>::Flags & RowMajorBit }; enumerator in enum:Eigen::__anon17950 173 typedef typename internal::conditional<copy, 179 if (copy) 296 // enum { copy = internal::traits<OtherDerived>::Flags & RowMajorBit }; 298 // typedef typename internal::conditional<copy, 304 // if (copy)
|
/external/eigen/test/ |
stable_norm.cpp | 7 // Public License v. 2.0. If a copy of the MPL was not distributed 25 template<typename T> EIGEN_DONT_INLINE T copy(const T& x) function 80 VERIFY_IS_NOT_APPROX(internal::sqrt(copy(vbig.squaredNorm())), internal::abs(internal::sqrt(size)*big)); // here the default norm must fail 87 VERIFY_IS_NOT_APPROX(internal::sqrt(copy(vsmall.squaredNorm())), internal::abs(internal::sqrt(size)*small)); // here the default norm must fail
|
/external/elfutils/libdwfl/ |
dwfl_module_build_id.c | 14 You should have received a copy of the GNU General Public License along 63 void *copy = malloc (len); local 64 if (unlikely (copy == NULL)) 70 mod->build_id_bits = memcpy (copy, bits, len);
|
/external/guava/guava/src/com/google/common/collect/ |
ObjectArrays.java | 6 * You may obtain a copy of the License at 106 T[] copy = newArray(original, newLength); local 108 original, 0, copy, 0, Math.min(original.length, newLength)); 109 return copy;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ObjectArrays.java | 6 * You may obtain a copy of the License at 79 T[] copy = newArray(original, newLength); local 81 original, 0, copy, 0, Math.min(original.length, newLength)); 82 return copy;
|
/external/icu4c/i18n/ |
utrans.cpp | 58 virtual void copy(int32_t start, int32_t limit, int32_t dest); 122 void ReplaceableGlue::copy(int32_t start, int32_t limit, int32_t dest) { function in class:ReplaceableGlue 123 (*func->copy)(rep, start, limit, dest); 457 // Copy the string buffer back to text (only if necessary) 487 // Copy the string buffer back to text (only if necessary)
|
/external/javassist/src/main/javassist/ |
CtNewConstructor.java | 111 * Creates a copy of a constructor. 124 public static CtConstructor copy(CtConstructor c, CtClass declaring, method in class:CtNewConstructor 232 * <p>If <code>body</code> is not null, a copy of that method is
|
/external/javassist/src/main/javassist/bytecode/ |
AnnotationDefaultAttribute.java | 104 * Copies this attribute and returns a new copy. 106 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:AnnotationDefaultAttribute
|
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/ |
VertexCache.java | 92 public void copy(VertexCache inVcache)
method in class:VertexCache
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
UnmodifiableData.java | 6 * You may obtain a copy of the License at 40 public void copy(Data from) { method in class:UnmodifiableData 45 public void copy(String toPath, Data from) { method in class:UnmodifiableData
|
/external/llvm/utils/lit/lit/ |
Test.py | 65 import copy namespace 66 res = copy.copy(self)
|
/external/mesa3d/src/glsl/ |
lower_output_reads.cpp | 6 * copy of this software and associated documentation files (the "Software"), 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 37 * main() function to copy the final values to the actual shader outputs. 109 * Create an assignment to copy a temporary value back to the actual output. 112 copy(void *ctx, ir_variable *output, ir_variable *temp) function 119 /** Insert a copy-back assignment before a "return" statement */ 124 ir->insert_before(copy(ir, (ir_variable *) key, (ir_variable *) data)); 127 /** Insert a copy-back assignment at the end of the main() function */ 132 sig->body.push_tail(copy(sig, (ir_variable *) key, (ir_variable *) data));
|
/external/mesa3d/src/mapi/glapi/gen/ |
gl_x86-64_asm.py | 7 # copy of this software and associated documentation files (the "Software"), 9 # on the rights to use, copy, modify, merge, publish, distribute, sub 30 import sys, getopt, copy namespace 68 temp = copy.deepcopy(registers)
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_cse.cpp | 5 * copy of this software and associated documentation files (the "Software"), 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 131 fs_inst *copy = new(ralloc_parent(inst)) local 133 entry->generator->insert_after(copy); 138 fs_inst *copy = new(ralloc_parent(inst)) local 140 inst->replace_with(copy); 144 block->end = copy; 147 /* Continue iteration with copy->next */ 148 inst = copy;
|
/external/mockito/src/org/mockito/internal/util/reflection/ |
LenientCopyTool.java | 16 copy(from, mock, from.getClass(), mock.getClass().getSuperclass());
method 20 copy(from, to, from.getClass(), to.getClass());
method 23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) {
method in class:LenientCopyTool
|
/external/proguard/src/proguard/classfile/instruction/ |
BranchInstruction.java | 17 * You should have received a copy of the GNU General Public License along 56 public BranchInstruction copy(BranchInstruction branchInstruction) method in class:BranchInstruction
|
SimpleInstruction.java | 17 * You should have received a copy of the GNU General Public License along 68 public SimpleInstruction copy(SimpleInstruction simpleInstruction) method in class:SimpleInstruction
|
/external/regex-re2/util/ |
stringpiece.cc | 36 int StringPiece::copy(char* buf, size_type n, size_type pos) const { function in class:StringPiece
|
/external/sfntly/cpp/src/test/tinyxml/ |
tinystr.h | 70 // TiXmlString copy constructor 71 TiXmlString ( const TiXmlString & copy) : rep_(0) 73 init(copy.length()); 74 memcpy(start(), copy.data(), length()); 78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) 80 init( static_cast<size_type>( strlen(copy) )); 81 memcpy(start(), copy, length()); local 97 TiXmlString& operator = (const char * copy) 99 return assign( copy, (size_type)strlen(copy)); [all...] |
/external/skia/src/animator/ |
SkDisplayMovie.cpp | 55 SkDisplayMovie* copy = (SkDisplayMovie*) INHERITED::deepCopy(maker); local 56 copy->fMovie.fMaker->fParentMaker = fMovie.fMaker->fParentMaker; 57 copy->fMovie.fMaker->fHostEventSinkID = fMovie.fMaker->fHostEventSinkID; 58 copy->fMovieBuilt = false; 59 *fMovie.fMaker->fParentMaker->fMovies.append() = copy; 60 return copy;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
prune.h | 5 // You may obtain a copy of the License at 171 vector<StateId> copy; local 185 while (copy.size() <= state) 186 copy.push_back(kNoStateId); 191 if (copy[state] == kNoStateId) 192 copy[state] = ofst->AddState(); 194 ofst->SetFinal(copy[state], ifst.Final(state)); 207 while (copy.size() <= arc.nextstate) 208 copy.push_back(kNoStateId); 214 if (copy[arc.nextstate] == kNoStateId [all...] |
/external/tinyxml/ |
tinystr.h | 33 * - added "copy" constructor with length, and most compare operators. 67 // TiXmlString copy constructor 68 TiXmlString (const TiXmlString & copy) 70 init(copy.length()); 71 memcpy(start(), copy.data(), length()); 75 TiXmlString (const char * copy) 77 init( static_cast<size_type>( strlen(copy) )); 78 memcpy(start(), copy, length()); local 95 TiXmlString& operator = (const char * copy) 97 return assign( copy, (size_type)strlen(copy)) [all...] |
/frameworks/av/media/libstagefright/httplive/ |
LiveDataSource.cpp | 6 * You may obtain a copy of the License at 114 size_t copy = size - sizeDone; local 116 if (copy > buffer->size()) { 117 copy = buffer->size(); 120 memcpy((uint8_t *)data + sizeDone, buffer->data(), copy); 122 sizeDone += copy; 124 buffer->setRange(buffer->offset() + copy, buffer->size() - copy);
|
/frameworks/base/graphics/java/android/graphics/ |
LinearGradient.java | 6 * You may obtain a copy of the License at 101 protected Shader copy() { method in class:LinearGradient 102 final LinearGradient copy; local 105 copy = new LinearGradient(mX0, mY0, mX1, mY1, mColors.clone(), 109 copy = new LinearGradient(mX0, mY0, mX1, mY1, mColor0, mColor1, mTileMode); 115 copyLocalMatrix(copy); 116 return copy;
|
RadialGradient.java | 6 * You may obtain a copy of the License at 102 protected Shader copy() { method in class:RadialGradient 103 final RadialGradient copy; local 106 copy = new RadialGradient(mX, mY, mRadius, mColors.clone(), 110 copy = new RadialGradient(mX, mY, mRadius, mColor0, mColor1, mTileMode); 116 copyLocalMatrix(copy); 117 return copy;
|