Searched defs:vectors (Results 1 - 19 of 19) sorted by relevance

/external/eigen/Eigen/src/Householder/
H A DBlockHouseholder.h22 void make_block_householder_triangular_factor(TriangularFactorType& triFactor, const VectorsType& vectors, const CoeffsType& hCoeffs) argument
26 const Index nbVecs = vectors.cols();
27 eigen_assert(triFactor.rows() == nbVecs && triFactor.cols() == nbVecs && vectors.rows()>=nbVecs);
31 Index rs = vectors.rows() - i;
32 Scalar Vii = vectors(i,i);
33 vectors.const_cast_derived().coeffRef(i,i) = Scalar(1);
34 triFactor.col(i).head(i).noalias() = -hCoeffs(i) * vectors.block(i, 0, rs, i).adjoint()
35 * vectors.col(i).tail(rs);
36 vectors.const_cast_derived().coeffRef(i, i) = Vii;
46 void apply_block_householder_on_the_left(MatrixType& mat, const VectorsType& vectors, cons argument
[all...]
/external/compiler-rt/test/builtins/Unit/
H A Dcomparedf2_test.c145 static const struct TestVector vectors[] = { variable in typeref:struct:TestVector
473 const int numVectors = sizeof vectors / sizeof vectors[0];
476 if (test__cmpdf2(&vectors[i])) return 1;
H A Dcomparesf2_test.c145 static const struct TestVector vectors[] = { variable in typeref:struct:TestVector
473 const int numVectors = sizeof vectors / sizeof vectors[0];
476 if (test__cmpsf2(&vectors[i])) return 1;
/external/chromium_org/chrome/browser/history/
H A Dvisit_filter.cc246 TimeVector vectors[3]; local
247 GetTimesOnTheDayOfTheWeek(1, week, max_results, &vectors[0]);
249 GetTimesOnTheDayOfTheWeek(i, week, max_results, &vectors[(i - 1) % 3]);
250 UniteTimeVectors(vectors[(i - 2) % 3], vectors[(i - 1) % 3],
251 &vectors[i % 3]);
252 if (max_results && vectors[i % 3].size() > max_results)
253 vectors[i % 3].resize(max_results);
254 vectors[i % 3].swap(vectors[(
274 const TimeVector* vectors[2] = { &vector1, &vector2 }; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_sanity.c616 static struct reg vectors[512*4+1]; variable in typeref:struct:reg
638 for (i = 0, tmp = vector_names ; i < Elements(vectors) ; i++) {
640 vectors[i].idx = i;
641 vectors[i].closest = tmp;
642 vectors[i].flags = ISFLOAT|ISVEC;
647 vectors[Elements(vectors)-1].idx = -1;
798 for (i = 0 ; i < Elements(vectors) ; i++)
799 print_reg( &vectors[i] );
906 int sz = header.vectors
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_sanity.c338 static struct reg vectors[512*4+1]; variable in typeref:struct:reg
360 for (i = 0, tmp = vector_names ; i < Elements(vectors) ; i++) {
362 vectors[i].idx = i;
363 vectors[i].closest = tmp;
364 vectors[i].flags = ISFLOAT|ISVEC;
369 vectors[Elements(vectors)-1].idx = -1;
520 for (i = 0 ; i < Elements(vectors) ; i++)
521 print_reg( &vectors[i] );
628 int sz = header.vectors
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniform_query.cpp480 const unsigned vectors = MAX2(1, uni->type->matrix_columns); local
491 store->element_stride - (vectors * store->vector_stride);
493 (uint8_t *) (&uni->storage[array_index * (components * vectors)].i);
496 printf("%s: %p[%d] components=%u vectors=%u count=%u vector_stride=%u "
499 vectors, count, store->vector_stride, extra_stride);
511 for (v = 0; v < vectors; v++) {
530 for (v = 0; v < vectors; v++) {
551 for (v = 0; v < vectors; v++) {
834 unsigned vectors; local
853 vectors
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_sanity.c616 static struct reg vectors[512*4+1]; variable in typeref:struct:reg
638 for (i = 0, tmp = vector_names ; i < Elements(vectors) ; i++) {
640 vectors[i].idx = i;
641 vectors[i].closest = tmp;
642 vectors[i].flags = ISFLOAT|ISVEC;
647 vectors[Elements(vectors)-1].idx = -1;
798 for (i = 0 ; i < Elements(vectors) ; i++)
799 print_reg( &vectors[i] );
906 int sz = header.vectors
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_sanity.c338 static struct reg vectors[512*4+1]; variable in typeref:struct:reg
360 for (i = 0, tmp = vector_names ; i < Elements(vectors) ; i++) {
362 vectors[i].idx = i;
363 vectors[i].closest = tmp;
364 vectors[i].flags = ISFLOAT|ISVEC;
369 vectors[Elements(vectors)-1].idx = -1;
520 for (i = 0 ; i < Elements(vectors) ; i++)
521 print_reg( &vectors[i] );
628 int sz = header.vectors
[all...]
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp480 const unsigned vectors = MAX2(1, uni->type->matrix_columns); local
491 store->element_stride - (vectors * store->vector_stride);
493 (uint8_t *) (&uni->storage[array_index * (components * vectors)].i);
496 printf("%s: %p[%d] components=%u vectors=%u count=%u vector_stride=%u "
499 vectors, count, store->vector_stride, extra_stride);
511 for (v = 0; v < vectors; v++) {
530 for (v = 0; v < vectors; v++) {
551 for (v = 0; v < vectors; v++) {
834 unsigned vectors; local
853 vectors
[all...]
/external/chromium_org/third_party/skia/tests/
H A DMatrixTest.cpp217 // test a bunch of vectors. All should be scaled by between minScale and maxScale
222 SkVector vectors[1000]; local
223 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
224 vectors[i].fX = rand.nextSScalar1();
225 vectors[i].fY = rand.nextSScalar1();
226 if (!vectors[i].normalize()) {
231 mat.mapVectors(vectors, SK_ARRAY_COUNT(vectors));
232 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
233 SkScalar d = vectors[
[all...]
/external/skia/tests/
H A DMatrixTest.cpp217 // test a bunch of vectors. All should be scaled by between minScale and maxScale
222 SkVector vectors[1000]; local
223 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
224 vectors[i].fX = rand.nextSScalar1();
225 vectors[i].fY = rand.nextSScalar1();
226 if (!vectors[i].normalize()) {
231 mat.mapVectors(vectors, SK_ARRAY_COUNT(vectors));
232 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
233 SkScalar d = vectors[
[all...]
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsock.c2565 ssl_WriteV(PRFileDesc *fd, const PRIOVec *iov, PRInt32 vectors, argument
2578 if (vectors > PR_MAX_IOVECTOR_SIZE) {
2585 #define KILL_VECTORS while (vectors && !iov->iov_len) { ++iov; --vectors; }
2586 #define GET_VECTOR do { myIov = *iov++; --vectors; KILL_VECTORS } while (0)
2611 if (!vectors)
2614 if (!vectors) {
2621 while (vectors && left) {
2634 while (vectors || myIov.iov_len) {
2647 if (!vectors || myIo
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c373 * for byte vectors can do much better with psadbw.
374 * Using repeated shuffle/adds here. Note with multiple vectors
419 * Return the horizontal sums of 4 float vectors as a float4 vector.
474 * partially horizontally add 2-4 float vectors with length nx4,
479 * Return a vector of the same length as the initial vectors,
481 * The element order is independent of number of input vectors.
482 * For 3 vectors x0x1x2x3x4x5x6x7, y0y1y2y3y4y5y6y7, z0z1z2z3z4z5z6z7
488 LLVMValueRef vectors[],
500 /* only use this with at least 2 vectors, as it is sort of expensive
505 tmp[0] = vectors[
487 lp_build_hadd_partial4(struct lp_build_context *bld, LLVMValueRef vectors[], unsigned num_vecs) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_arit.c373 * for byte vectors can do much better with psadbw.
374 * Using repeated shuffle/adds here. Note with multiple vectors
419 * Return the horizontal sums of 4 float vectors as a float4 vector.
474 * partially horizontally add 2-4 float vectors with length nx4,
479 * Return a vector of the same length as the initial vectors,
481 * The element order is independent of number of input vectors.
482 * For 3 vectors x0x1x2x3x4x5x6x7, y0y1y2y3y4y5y6y7, z0z1z2z3z4z5z6z7
488 LLVMValueRef vectors[],
500 /* only use this with at least 2 vectors, as it is sort of expensive
505 tmp[0] = vectors[
487 lp_build_hadd_partial4(struct lp_build_context *bld, LLVMValueRef vectors[], unsigned num_vecs) argument
[all...]
/external/opencv/ml/src/
H A Dmltree.cpp1177 "Both cat_count and cat_map must exist and be valid 1d integer vectors of an appropriate size" );
1659 void CvDTree::cluster_categories( const int* vectors, int n, int m, argument
1674 const int* v = vectors + i*m;
1702 const int* v = vectors + i*m;
1727 const int* v = vectors + i*m;
/external/kernel-headers/original/uapi/drm/
H A Dradeon_drm.h197 } vectors; member in union:__anon22810
/external/qemu/qapi-auto-generated/
H A Dqapi-types.h2593 uint32_t vectors; member in struct:NetLegacyNicOptions
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 389 milliseconds