HomeSort by relevance Sort by last modified time
    Searched full:subvector (Results 1 - 25 of 33) sorted by null

1 2

  /external/llvm/test/CodeGen/X86/
widen_extract-1.ll 2 ; widen extract subvector
negate-add-zero.ll 87 %"struct.SubVector<CDSVector<double, 1, CDS::DefaultAlloc> >" = type { %"struct.CDSVector<double,0,CDS::DefaultAlloc>"*, i32, i32 }
88 %"struct.SubVector<FixedVector<double, 6, 0> >" = type { %"struct.FixedMatrix<double,1,6,0,0>"*, i32, i32 }
271 declare %"struct.std::basic_ostream<char,std::char_traits<char> >"* @_ZlsI11FixedVectorIdLi6ELi0EEERSoS2_RK9SubVectorIT_E(%"struct.std::basic_ostream<char,std::char_traits<char> >"*, %"struct.SubVector<FixedVector<double, 6, 0> >"*)
    [all...]
  /external/valgrind/main/auxprogs/
gsl16-badfree.patch 12 - view = FUNCTION (gsl_vector, subvector) (v, 0, N);
13 + view = FUNCTION (gsl_vector, subvector) (v0, 0, N);
28 - view = FUNCTION (gsl_vector, subvector) (v, 0, N);
29 + view = FUNCTION (gsl_vector, subvector) (v0, 0, N);
  /external/eigen/Eigen/src/Core/
VectorwiseOp.h 201 * \returns the i-th subvector according to the \c Direction */
204 typename ExpressionType::RowXpr>::type SubVector;
205 SubVector subVector(Index i)
207 return SubVector(m_matrix.derived(),i);
406 /** Copies the vector \a other to each subvector of \c *this */
416 /** Adds the vector \a other to each subvector of \c *this */
425 /** Substracts the vector \a other to each subvector of \c *this */
434 /** Multiples each subvector of \c *this by the vector \a other */
445 /** Divides each subvector of \c *this by the vector \a other *
    [all...]
  /external/v8/src/
preparse-data.cc 101 function_store_.WriteTo(data.SubVector(PreparseDataConstants::kHeaderSize,
157 function_store_.WriteTo(data.SubVector(PreparseDataConstants::kHeaderSize,
162 Vector<byte>::cast(data.SubVector(symbol_start, total_size)));
strtod.cc 97 return buffer.SubVector(i, buffer.length());
107 return buffer.SubVector(0, i + 1);
utils.h 349 Vector<T> SubVector(int from, int to) {
655 chunks_.Add(current_chunk_.SubVector(0, index_));
693 return this->current_chunk_.SubVector(sequence_start, this->index_);
728 this->chunks_.Add(this->current_chunk_.SubVector(0, sequence_start_));
compiler.cc 250 && name->IsEqualTo(filter.SubVector(1, filter.length())))
parser.cc 216 Vector<const uc16> prefix = char_vector.SubVector(0, num_chars - 1);
218 char_vector = char_vector.SubVector(num_chars - 1, num_chars);
299 return FunctionEntry(store_.SubVector(index,
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-raytrace.js 45 function subVector(self, v) {
262 var zaxis = normaliseVector(subVector(lookat, origin));
264 var yaxis = normaliseVector(cross(xaxis, subVector([0,0,0], zaxis)));
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-raytrace.js 45 function subVector(self, v) {
262 var zaxis = normaliseVector(subVector(lookat, origin));
264 var yaxis = normaliseVector(cross(xaxis, subVector([0,0,0], zaxis)));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
VectorTest.java 1217 SubVector<String> subvector = new SubVector<String>(); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder.cpp 491 ind[0] = Serial_parm(8, &prms); /* index of 1st ISP subvector */
492 ind[1] = Serial_parm(8, &prms); /* index of 2nd ISP subvector */
493 ind[2] = Serial_parm(6, &prms); /* index of 3rd ISP subvector */
494 ind[3] = Serial_parm(7, &prms); /* index of 4th ISP subvector */
495 ind[4] = Serial_parm(7, &prms); /* index of 5th ISP subvector */
496 ind[5] = Serial_parm(5, &prms); /* index of 6th ISP subvector */
497 ind[6] = Serial_parm(5, &prms); /* index of 7th ISP subvector */
    [all...]
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 207 // TODO: Once we have extract/insert subvector cost we need to use them.
429 // TODO: Once we have extract/insert subvector cost we need to use them.
  /external/eigen/Eigen/src/SparseCore/
AmbiVector.h 164 /** Set all coefficients of current subvector to zero */
  /external/harfbuzz/contrib/
harfbuzz-unicode.h 32 // A script run is a subvector of codepoints, all of which are in the same
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf_5.cpp 165 This function performs the quantization of a 4-dimensional subvector.
203 /* Quantization of a 4 dimensional subvector */
329 This function performs the quantization of a 4-dimensional subvector.
369 /* Quantization of a 4 dimensional subvector with a signed codebook */
q_plsf_3.cpp 186 This function performs the quantization of a 4-dimensional subvector.
492 This function performs the quantization of a 3 dimensional subvector.
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 283 /// The index and subtype parameters are used by the subvector insertion and
  /external/llvm/include/llvm/Target/
TargetSelectionDAG.td 197 def SDTSubVecExtract : SDTypeProfile<1, 2, [// subvector extract
200 def SDTSubVecInsert : SDTypeProfile<1, 3, [ // subvector insert
470 // This operator does not do subvector type checking. The ARM
476 // This operator does subvector type checking.
    [all...]
  /external/speex/libspeex/
cb_search.c 367 /*For all n-bests of previous subvector*/
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.h 436 /// INSERT_SUBVECTOR operand specifies a subvector insert that is
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 279 /// EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR (an
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 1125 // Handle multiple-vector values specially, emitting each subvector as an
    [all...]

Completed in 704 milliseconds

1 2