/external/eigen/unsupported/test/ |
D | levenberg_marquardt.cpp | 70 LevenbergMarquardt<lmder_functor> lm(functor); in testLmder1() local 71 info = lm.lmder1(x); in testLmder1() 75 VERIFY_IS_EQUAL(lm.nfev(), 6); in testLmder1() 76 VERIFY_IS_EQUAL(lm.njev(), 5); in testLmder1() 79 VERIFY_IS_APPROX(lm.fvec().blueNorm(), 0.09063596); in testLmder1() 99 LevenbergMarquardt<lmder_functor> lm(functor); in testLmder() local 100 info = lm.minimize(x); in testLmder() 104 VERIFY_IS_EQUAL(lm.nfev(), 6); in testLmder() 105 VERIFY_IS_EQUAL(lm.njev(), 5); in testLmder() 108 fnorm = lm.fvec().blueNorm(); in testLmder() [all …]
|
D | NonLinearOptimization.cpp | 177 LevenbergMarquardt<lmder_functor> lm(functor); in testLmder1() local 178 info = lm.lmder1(x); in testLmder1() 182 VERIFY_IS_EQUAL(lm.nfev, 6); in testLmder1() 183 VERIFY_IS_EQUAL(lm.njev, 5); in testLmder1() 186 VERIFY_IS_APPROX(lm.fvec.blueNorm(), 0.09063596); in testLmder1() 206 LevenbergMarquardt<lmder_functor> lm(functor); in testLmder() local 207 info = lm.minimize(x); in testLmder() 211 VERIFY_IS_EQUAL(lm.nfev, 6); in testLmder() 212 VERIFY_IS_EQUAL(lm.njev, 5); in testLmder() 215 fnorm = lm.fvec.blueNorm(); in testLmder() [all …]
|
/external/srec/seti/sltsEngine/src/ |
D | run_seq_lts.c | 69 static SWIsltsResult free_letter_mapping(LM *lm); 76 …lt free_trees(RT_LTREE **trees, int num_letters, LQUESTION **questions, int num_questions, LM *lm); 257 LM * lm; in load_letter_mapping() local 261 lm = (LM*) lts_alloc(1, sizeof(LM)); in load_letter_mapping() 262 if (lm == NULL) { in load_letter_mapping() 268 lm->num_letters = len; in load_letter_mapping() 270 lm->letters = (char*) lts_alloc(len, sizeof(char)); in load_letter_mapping() 271 if (lm->letters == NULL) { in load_letter_mapping() 276 lm->type = (char*) lts_alloc(len, sizeof(char)); in load_letter_mapping() 277 if (lm->type == NULL) { in load_letter_mapping() [all …]
|
/external/opencv/cv/src/ |
D | cvinpaint.cpp | 336 int lm=l-1+(l==1),lp=l-1-(l==t->cols-2); in icvTeleaInpaintFMM() local 352 …((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)))*2.0f; in icvTeleaInpaintFMM() 354 …(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color))); in icvTeleaInpaintFMM() 358 …(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color))); in icvTeleaInpaintFMM() 365 …gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,l… in icvTeleaInpaintFMM() 367 …gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,… in icvTeleaInpaintFMM() 371 …gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,… in icvTeleaInpaintFMM() 376 Ia += (float)w * (float)(CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color)); in icvTeleaInpaintFMM() 449 int lm=l-1+(l==1),lp=l-1-(l==t->cols-2); in icvTeleaInpaintFMM() local 465 … gradI.x=(float)((CV_MAT_ELEM(*out,uchar,km,lp+1)-CV_MAT_ELEM(*out,uchar,km,lm-1)))*2.0f; in icvTeleaInpaintFMM() [all …]
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkLocalMatrixShader.cpp | 23 SkMatrix lm; in CreateProc() local 24 buffer.readMatrix(&lm); in CreateProc() 29 return SkShader::CreateLocalMatrixShader(shader, lm); in CreateProc() 67 const SkMatrix* lm = &localMatrix; in CreateLocalMatrixShader() local 73 lm = &otherLocalMatrix; in CreateLocalMatrixShader() 77 return SkNEW_ARGS(SkLocalMatrixShader, (proxy, *lm)); in CreateLocalMatrixShader()
|
/external/eigen/test/ |
D | permutationmatrices.cpp | 42 Matrix<Scalar,Rows,Rows> lm(lp); in permutationmatrices() local 45 VERIFY_IS_APPROX(m_permuted, lm*m_original*rm); in permutationmatrices() 59 VERIFY_IS_APPROX((lp*lp2).toDenseMatrix().template cast<Scalar>(), lm*lm2); in permutationmatrices() 60 …S_APPROX((lv.asPermutation()*lv2.asPermutation()).toDenseMatrix().template cast<Scalar>(), lm*lm2); in permutationmatrices() 61 …(),lv.size())*MapLeftPerm(lv2.data(),lv2.size())).toDenseMatrix().template cast<Scalar>(), lm*lm2); in permutationmatrices() 91 lm = lp; in permutationmatrices() 92 lm.row(i).swap(lm.row(j)); in permutationmatrices() 93 VERIFY_IS_APPROX(lm, lp2.toDenseMatrix().template cast<Scalar>()); in permutationmatrices()
|
D | denseLM.cpp | 104 LevenbergMarquardt<FunctorType> lm(functor); in test_minimizeLM() local 107 info = lm.minimize(uv); in test_minimizeLM() 119 LevenbergMarquardt<FunctorType> lm(functor); in test_lmder() local 120 info = lm.lmder1(uv); in test_lmder() 131 LevenbergMarquardt<FunctorType> lm(functor); in test_minimizeSteps() local 132 info = lm.minimizeInit(uv); in test_minimizeSteps() 137 info = lm.minimizeOneStep(uv); in test_minimizeSteps()
|
/external/valgrind/main/none/tests/ppc64/ |
D | Makefile.am | 88 test_isa_2_06_part3_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(VSX_FLAG) \ 94 test_dfp1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 97 test_dfp2_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 99 test_dfp3_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 102 test_dfp4_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 105 test_dfp5_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 108 test_isa_2_07_part1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ 111 test_isa_2_07_part2_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ 114 test_tm_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ 116 test_touch_tm_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \
|
/external/skia/gm/ |
D | shadertext2.cpp | 126 for (int lm = 0; lm < localMatrices.count(); ++lm) { in onDraw() local 127 canvas->drawText(matrices[lm].fLabel, strlen(matrices[lm].fLabel), in onDraw() 129 SkScalar labelW = labelPaint.measureText(matrices[lm].fLabel, in onDraw() 130 strlen(matrices[lm].fLabel)); in onDraw() 149 for (int lm = 0; lm < localMatrices.count(); ++lm) { in onDraw() local 154 &localMatrices[lm].fMatrix))->unref(); in onDraw()
|
/external/chromium_org/third_party/skia/gm/ |
D | shadertext2.cpp | 129 for (int lm = 0; lm < localMatrices.count(); ++lm) { in onDraw() local 130 canvas->drawText(matrices[lm].fLabel, strlen(matrices[lm].fLabel), in onDraw() 132 SkScalar labelW = labelPaint.measureText(matrices[lm].fLabel, in onDraw() 133 strlen(matrices[lm].fLabel)); in onDraw() 152 for (int lm = 0; lm < localMatrices.count(); ++lm) { in onDraw() local 157 &localMatrices[lm].fMatrix))->unref(); in onDraw()
|
/external/valgrind/main/none/tests/ppc32/ |
D | Makefile.am | 116 test_isa_2_06_part3_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(VSX_FLAG) \ 119 test_dfp1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 121 test_dfp2_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 123 test_dfp3_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 126 test_dfp4_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 129 test_dfp5_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(DFP_FLAG) \ 132 test_isa_2_07_part1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ 135 test_isa_2_07_part2_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ 138 test_tm_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \ 140 test_touch_tm_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -lm -g -mregnames $(ISA_2_07_FLAG) \
|
/external/valgrind/main/none/tests/x86/ |
D | Makefile.am | 134 fxtract_LDADD = -lm 136 insn_basic_LDADD = -lm 138 insn_fpu_LDADD = -lm 140 insn_cmov_LDADD = -lm 142 insn_mmx_LDADD = -lm 144 insn_mmxext_LDADD = -lm 146 insn_sse_LDADD = -lm 148 insn_sse2_LDADD = -lm 150 insn_sse3_LDADD = -lm 152 insn_ssse3_LDADD = -lm
|
/external/valgrind/main/none/tests/amd64/ |
D | Makefile.am | 167 bug132918_LDADD = -lm 170 insn_basic_LDADD = -lm 172 insn_mmx_LDADD = -lm 174 insn_sse_LDADD = -lm 176 insn_sse2_LDADD = -lm 178 insn_sse3_LDADD = -lm 180 insn_ssse3_LDADD = -lm 182 insn_fpu_LDADD = -lm 184 fxtract_LDADD = -lm
|
/external/libpng/contrib/pngminus/ |
D | makefile.std | 44 $(LD) $(LDFLAGS) -o png2pnm$(E) png2pnm$(O) $(LDLIBS) -lm 47 $(LD) $(LDFLAGS) -o png2pnm-static$(E) png2pnm$(O) $(LDLIBSS) -lm 53 $(LD) $(LDFLAGS) -o pnm2png$(E) pnm2png$(O) $(LDLIBS) -lm 56 $(LD) $(LDFLAGS) -o pnm2png-static$(E) pnm2png$(O) $(LDLIBSS) -lm
|
/external/iproute2/netem/ |
D | Makefile | 6 LDLIBS += -lm 11 $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm 20 $(HOSTCC) $(CCOPTS) -I../include -o $@ $@.c -lm
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
D | preproc.h | 66 yasm_linemap *lm, 124 yasm_symtab *symtab, yasm_linemap *lm, yasm_errwarns *errwarns); 185 #define yasm_preproc_create(module, in_filename, symtab, lm, ews) \ argument 186 module->create(in_filename, symtab, lm, ews)
|
/external/iproute2/misc/ |
D | Makefile | 13 $(CC) $(CFLAGS) $(LDFLAGS) -o nstat nstat.c -lm 16 $(CC) $(CFLAGS) $(LDFLAGS) -o ifstat ifstat.c $(LIBNETLINK) -lm 19 $(CC) $(CFLAGS) $(LDFLAGS) -o rtacct rtacct.c $(LIBNETLINK) -lm
|
/external/skia/src/core/ |
D | SkLocalMatrixShader.cpp | 52 const SkMatrix* lm = &localMatrix; in CreateLocalMatrixShader() local 58 lm = &otherLocalMatrix; in CreateLocalMatrixShader() 62 return SkNEW_ARGS(SkLocalMatrixShader, (proxy, *lm)); in CreateLocalMatrixShader()
|
/external/chromium_org/third_party/libxml/linux/ |
D | xml2-config | 89 echo -lxml2 -lz -lm 91 echo -L${libdir} -lxml2 -lz -lm 94 echo -L${libdir} -lxml2 -lz -lm
|
/external/eigen/bench/btl/data/ |
D | mean.cxx | 44 …Lib_Mean(const Lib_Mean & lm):_lib_name(lm._lib_name),_mean_in_cache(lm._mean_in_cache),_mean_out_… in Lib_Mean() argument
|
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
D | LevenbergMarquardt.h | 364 LevenbergMarquardt<NumericalDiff<FunctorType> > lm(numDiff); in lmdif1() 365 lm.setFtol(tol); in lmdif1() 366 lm.setXtol(tol); in lmdif1() 367 lm.setMaxfev(200*(n+1)); in lmdif1() 369 LevenbergMarquardtSpace::Status info = LevenbergMarquardtSpace::Status(lm.minimize(x)); in lmdif1() 371 * nfev = lm.nfev(); in lmdif1()
|
/external/ltrace/sysdeps/linux-gnu/ |
D | proc.c | 380 struct lt_link_map_32 lm; in fetch_lm32() local 381 if (umovebytes(proc, addr, &lm, sizeof(lm)) != sizeof(lm)) in fetch_lm32() 384 ret->l_addr = lm.l_addr; in fetch_lm32() 385 ret->l_name = lm.l_name; in fetch_lm32() 386 ret->l_ld = lm.l_ld; in fetch_lm32() 387 ret->l_next = lm.l_next; in fetch_lm32() 388 ret->l_prev = lm.l_prev; in fetch_lm32()
|
/external/libpng/scripts/ |
D | makefile.sgi | 50 LDFLAGS_A=$(ABI) -L. -L$(ZLIBLIB) -lpng16 -lz -lm 51 LDFLAGS=$(ABI) -L. -L$(ZLIBLIB) -lpng -lz -lm 99 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
|
/external/chromium_org/third_party/sqlite/ |
D | test.patch | 75 -#LIBTCL = -ltcl -lm -ldl 76 -LIBTCL = /home/drh/tcltk/8.5linux/libtcl8.5g.a -lm -ldl 77 +LIBTCL = -ltcl8.5 -lm -ldl 78 +#LIBTCL = /home/drh/tcltk/8.5linux/libtcl8.5g.a -lm -ldl 80 #LIBTCL = /home/drh/tcltk/8.3hpux/libtcl8.3.a -ldld -lm -lc
|
/external/libpng/contrib/gregbook/ |
D | Makefile.unx | 59 RLIBSd = $(PNGLIBd) $(ZLIBd) $(XLIB) -lm 60 RLIBSs = $(PNGLIBs) $(ZLIBs) $(XLIB) -lm 61 WLIBSd = $(PNGLIBd) $(ZLIBd) -lm
|