HomeSort by relevance Sort by last modified time
    Searched refs:norm (Results 101 - 125 of 347) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 116 UBool getCollationKey(const char *norm, const UnicodeString &line,
119 UBool checkCompareTwo(const char *norm, const UnicodeString &prevFileLine,
    [all...]
  /external/ceres-solver/internal/ceres/
compressed_row_sparse_matrix_test.cc 65 EXPECT_EQ((y_a - y_b).norm(), 0);
114 EXPECT_EQ((b1 - b2).norm(), 0);
125 EXPECT_EQ((b1 - b2).norm(), 0);
215 EXPECT_EQ((tsm_dense - crsm_dense).norm(), 0.0);
276 EXPECT_EQ((dense.diagonal() - diagonal).norm(), 0.0);
406 EXPECT_NEAR((dense_matrix - dense_transpose.transpose()).norm(), 0.0, 1e-14);
558 const double diff_norm = (actual_matrix - expected_matrix).norm() / expected_matrix.norm();
iterative_schur_complement_solver_test.cc 101 double diff = (isc_sol - reference_solution).norm();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 386 src_type.norm == 0 &&
393 dst_type.norm == 1 &&
441 src_type.norm == 0 &&
448 dst_type.norm == 1 &&
547 if(!dst_type.fixed && !dst_type.sign && dst_type.norm) {
642 if(!src_type.fixed && !src_type.sign && src_type.norm) {
739 src_type.norm = FALSE;
744 dst_type.norm = FALSE;
lp_bld_format_aos_array.c 65 src_type.norm = format_desc->channel[0].normalized;
  /external/eigen/demos/opengl/
gpuhelper.cpp 60 float length = vec.norm();
81 float length = vec.norm();
  /external/eigen/test/
geo_orthomethods.cpp 80 VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), RealScalar(1));
88 VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), RealScalar(1));
vectorwiseop.cpp 176 // test norm
177 rrres = m1.colwise().norm();
178 VERIFY_IS_APPROX(rrres(c), m1.col(c).norm());
179 rcres = m1.rowwise().norm();
180 VERIFY_IS_APPROX(rcres(r), m1.row(r).norm());
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 29 VirtRegAuxInfo::NormalizingFn norm) {
34 VirtRegAuxInfo VRAI(MF, LIS, MLI, MBFI, norm);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_conv.c 386 src_type.norm == 0 &&
393 dst_type.norm == 1 &&
441 src_type.norm == 0 &&
448 dst_type.norm == 1 &&
547 if(!dst_type.fixed && !dst_type.sign && dst_type.norm) {
642 if(!src_type.fixed && !src_type.sign && src_type.norm) {
739 src_type.norm = FALSE;
744 dst_type.norm = FALSE;
lp_bld_format_aos_array.c 65 src_type.norm = format_desc->channel[0].normalized;
  /external/stlport/src/
num_get_float.cpp 232 static void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo) {
233 norm = 0;
247 norm = 1;
300 int norm; /* number of bits of normalization */ local
308 _Stl_norm_and_round(p, norm, prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
315 _Stl_norm_and_round(p, norm, prodhi, prodlo);
316 bexp += _Stl_twoexp[lo] - norm;
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.h 117 void SetNormConstraint(const double norm) {
118 norm_constraint_ = norm;
sparse_weight_vector.cpp 267 // and then reprojects to the L0 orthant with the requested norm.
270 // Compute order statistics and the current L0 norm.
310 // Compute order statistics and the current L1 norm.
361 int32 SparseWeightVector<Key, Hash>::Reproject(const double norm,
363 CHECK_GT(norm, 0);
365 ReprojectL0(norm);
367 ReprojectL1(norm);
369 ReprojectL2(norm);
  /frameworks/rs/
rsComponent.cpp 29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) {
32 mNormalized = norm;
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 232 static void _Stl_norm_and_round(uint64& p, int& norm, uint64 prodhi, uint64 prodlo) {
233 norm = 0;
247 norm = 1;
300 int norm; /* number of bits of normalization */ local
308 _Stl_norm_and_round(p, norm, prodhi, prodlo);
309 bexp += _Stl_twoexp[hi] - norm;
315 _Stl_norm_and_round(p, norm, prodhi, prodlo);
316 bexp += _Stl_twoexp[lo] - norm;
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
content_analysis_sse2.cc 250 const float norm = (float)pixelMSA; local
253 spatial_pred_err_ = spatialErr / norm;
256 spatial_pred_err_h_ = spatialErrH / norm;
259 spatial_pred_err_v_ = spatialErrV / norm;
  /external/eigen/test/eigen2/
eigen2_parametrizedline.cpp 41 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) );
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 98 struct Norm {
176 normMem=utm_open("gennorm2 normalization structs", 10000, 0x110100, sizeof(Norm));
177 norms=allocNorm(); // unused Norm struct at index 0
211 Norm *Normalizer2DataBuilder::allocNorm() {
212 Norm *p=(Norm *)utm_alloc(normMem);
213 norms=(Norm *)utm_getStart(normMem); // in case it got reallocated
217 /* get an existing Norm unit */
218 Norm *Normalizer2DataBuilder::getNorm(UChar32 c) {
226 const Norm &Normalizer2DataBuilder::getNormRef(UChar32 c) const
449 Norm &norm=norms[value]; local
1057 const Norm &norm=norms[i]; local
    [all...]
  /external/srec/srec/include/
c42mul.h 102 void convert_adjustment_to_imelda(norm_info *norm, preprocessed *prep);
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 143 RealScalar invnm = RealScalar(1)/(Vector2() << src.coeff(sndi),src.coeff(maxi)).finished().norm();
170 RealScalar invnm = RealScalar(1)/src.template head<2>().norm();
181 RealScalar invnm = RealScalar(1)/src.template tail<2>().norm();
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
pitch_f4.c 173 Word32 corr, exp_corr, norm, exp, scale; local
235 norm = extract_h(L_tmp);
239 L_tmp = vo_L_mult(corr, norm);
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_rasterpos.c 378 GLfloat *norm, eyenorm[3]; local
438 norm = eyenorm;
441 norm = objnorm;
447 shade_rastpos( ctx, vObj, norm,
466 compute_texgen(ctx, vObj, eye, norm, u, tc);
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 378 GLfloat *norm, eyenorm[3]; local
438 norm = eyenorm;
441 norm = objnorm;
447 shade_rastpos( ctx, vObj, norm,
466 compute_texgen(ctx, vObj, eye, norm, u, tc);
  /frameworks/base/rs/java/android/renderscript/
Element.java 784 Element(long id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) {
799 mNormalized = norm;
859 boolean norm = false;
861 long id = rs.nElementCreate(dt.mID, dk.mID, norm, vecSize);
862 return new Element(id, rs, dt, dk, norm, vecSize);
897 boolean norm = false;
898 long id = rs.nElementCreate(dt.mID, dk.mID, norm, size);
899 return new Element(id, rs, dt, dk, norm, size);
968 boolean norm = true;
969 long id = rs.nElementCreate(dt.mID, dk.mID, norm, size)
    [all...]

Completed in 985 milliseconds

1 2 3 45 6 7 8 91011>>