HomeSort by relevance Sort by last modified time
    Searched refs:calc (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/bison/examples/
Makefile.am 18 SUBDIRS = calc++
  /external/bison/examples/calc++/
Makefile.am 34 $(srcdir)/calc.stamp: $(doc) $(extexi)
39 ../../doc/bison.texi -- calc++-parser.yy \
40 calc++-scanner.ll calc++.cc calc++-driver.hh calc++-driver.cc
43 $(calc_extracted): $(srcdir)/calc.stamp
58 $(srcdir)/calc++-parser.stamp \
59 $(srcdir)/calc++-parser.yy \
60 $(srcdir)/calc.stam
    [all...]
test 31 ./calc++ input
32 ./calc++ -p input
38 ./calc++ input
44 ./calc++ -s input
calc++-parser.cc 37 #line 38 "../../../../examples/calc++/calc++-parser.cc"
40 #include "calc++-parser.hh"
45 #line 46 "../../../../examples/calc++/calc++-parser.cc"
50 # include "calc++-driver.hh"
54 #line 55 "../../../../examples/calc++/calc++-parser.cc"
149 #line 150 "../../../../examples/calc++/calc++-parser.cc
    [all...]
  /system/update_engine/common/
hash_calculator_unittest.cc 52 HashCalculator calc; local
53 calc.Update("hi", 2);
54 calc.Finalize();
55 EXPECT_EQ(kExpectedHash, calc.hash());
58 EXPECT_TRUE(raw_hash == calc.raw_hash());
62 HashCalculator calc; local
63 calc.Update("h", 1);
64 calc.Update("i", 1);
65 calc.Finalize();
66 EXPECT_EQ(kExpectedHash, calc.hash())
73 HashCalculator calc; local
88 HashCalculator calc; local
121 HashCalculator calc; local
130 HashCalculator calc; local
158 HashCalculator calc; local
165 HashCalculator calc; local
168 HashCalculator calc; local
    [all...]
hash_calculator.cc 92 HashCalculator calc; local
93 TEST_AND_RETURN_FALSE(calc.Update(data, length));
94 TEST_AND_RETURN_FALSE(calc.Finalize());
95 *out_hash = calc.raw_hash();
106 HashCalculator calc; local
107 off_t res = calc.UpdateFile(name, length);
111 if (!calc.Finalize()) {
114 *out_hash = calc.raw_hash();
119 HashCalculator calc; local
120 calc.Update(data, length)
    [all...]
  /external/llvm/tools/llvm-c-test/
llvm-c-test.h 26 // calc.c
27 int calc(void);
Android.mk 11 calc.c \
  /external/opencv3/modules/video/test/ocl/
test_optflow_tvl1flow.cpp 94 OCL_ON(alg->calc(frame0, frame1, uflow));
101 OCL_OFF(alg->calc(frame0, frame1, flow));
102 OCL_ON(alg->calc(frame0, frame1, uflow));
  /external/libpng/contrib/tools/
makesRGB.c 129 unsigned int calc; local
131 calc = nearbyint((lo+adjust) * 256);
132 if (calc > 65535)
134 fprintf(stderr, "table[%d][0]: overflow %08x (%d)\n", i, calc,
135 calc);
138 png_sRGB_base[i] = calc;
140 calc = nearbyint((hi-lo) * 32);
141 if (calc > 255)
143 fprintf(stderr, "table[%d][1]: overflow %08x (%d)\n", i, calc,
144 calc);
    [all...]
  /external/opencv3/modules/superres/src/
optical_flow.cpp 61 void calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2);
120 void CpuOpticalFlow::calc(InputArray _frame0, InputArray _frame1, OutputArray _flow1, OutputArray _flow2) function in class:__anon21202::CpuOpticalFlow
180 void calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2);
215 void Farneback::calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2) function in class:__anon21203::Farneback
217 CpuOpticalFlow::calc(frame0, frame1, flow1, flow2);
335 void calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2);
359 void DualTVL1::calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2) function in class:__anon21204::DualTVL1
361 CpuOpticalFlow::calc(frame0, frame1, flow1, flow2);
366 alg_->calc(input0, input1, (InputOutputArray)dst);
419 void calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2)
435 void GpuOpticalFlow::calc(InputArray _frame0, InputArray _frame1, OutputArray _flow1, OutputArray _flow2) function in class:__anon21205::GpuOpticalFlow
522 void Brox_CUDA::calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2) function in class:__anon21206::Brox_CUDA
594 void PyrLK_CUDA::calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2) function in class:__anon21207::PyrLK_CUDA
675 void Farneback_CUDA::calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2) function in class:__anon21208::Farneback_CUDA
763 void DualTVL1_CUDA::calc(InputArray frame0, InputArray frame1, OutputArray flow1, OutputArray flow2) function in class:__anon21209::DualTVL1_CUDA
    [all...]
  /external/opencv3/apps/traincascade/
lbpfeatures.h 21 { return (float)features[featureIdx].calc( sum, sampleIdx); }
31 uchar calc( const cv::Mat& _sum, size_t y ) const;
42 inline uchar CvLBPEvaluator::Feature::calc(const cv::Mat &_sum, size_t y) const function in class:CvLBPEvaluator::Feature
HOGfeatures.h 35 float calc( const std::vector<cv::Mat> &_hists, const cv::Mat &_normSum, size_t y, int featComponent ) const;
56 //return features[featureIdx].calc( hist, sampleIdx, componentIdx);
57 return features[featureIdx].calc( hist, normSum, sampleIdx, componentIdx);
60 inline float CvHOGEvaluator::Feature::calc( const std::vector<cv::Mat>& _hists, const cv::Mat& _normSum, size_t y, int featComponent ) const function in class:CvHOGEvaluator::Feature
haarfeatures.h 51 float calc( const cv::Mat &sum, const cv::Mat &tilted, size_t y) const;
76 return !nf ? 0.0f : (features[featureIdx].calc( sum, tilted, sampleIdx)/nf);
79 inline float CvHaarEvaluator::Feature::calc( const cv::Mat &_sum, const cv::Mat &_tilted, size_t y) const function in class:CvHaarEvaluator::Feature
  /external/opencv3/modules/java/src/
video+DenseOpticalFlow.java 18 // C++: void calc(Mat I0, Mat I1, Mat& flow)
21 //javadoc: DenseOpticalFlow::calc(I0, I1, flow)
22 public void calc(Mat I0, Mat I1, Mat flow) method in class:DenseOpticalFlow
52 // C++: void calc(Mat I0, Mat I1, Mat& flow)
  /external/autotest/client/site_tests/power_Status/
power_Status.py 28 keyvals = plog.calc()
29 keyvals.update(tlog.calc())
  /external/chromium-trace/catapult/third_party/polymer/components/core-tooltip/
core-tooltip.css 84 left: calc(50% - 4px);
90 top: calc(50% - 4px);
96 left: calc(50% - 4px);
102 top: calc(50% - 4px);
  /external/opencv3/modules/video/perf/opencl/
perf_optflow_dualTVL1.cpp 99 alg->calc(uFrame0, uFrame1, uFlow);
105 alg->calc(uFrame0, uFrame1, uFlow);
  /external/opencv3/modules/videostab/src/
optical_flow.cpp 101 optFlowEstimator_->calc(frame0, frame1, points0, points1, status, errors);
111 optFlowEstimator_->calc(frame0, frame1, points0, points1, status);
139 optFlowEstimator_->calc(frame0_, frame1_, flow);
  /external/opencv3/modules/video/perf/
perf_tvl1optflow.cpp 27 TEST_CYCLE_N(10) tvl1->calc(frame1, frame2, flow);
  /external/opencv3/modules/core/test/
test_conjugate_gradient.cpp 64 double calc(const double* x)const{
76 double calc(const double* x)const{
test_downhill_simplex.cpp 72 double calc(const double* x)const{
78 double calc(const double* x)const{
  /external/v8/test/mjsunit/
top-level-assignments.js 92 var calc = new Calculator(20, 10);
93 assertEquals(30, calc.sum());
94 assertEquals(10, calc.difference());
95 assertEquals(200, calc.product());
96 assertEquals(2, calc.quotient());
  /external/opencv3/modules/cudaoptflow/perf/
perf_optflow.cpp 80 TEST_CYCLE() d_alg->calc(d_frame0, d_frame1, flow);
148 TEST_CYCLE() d_pyrLK->calc(d_frame0, d_frame1, d_pts, nextPts, status);
205 TEST_CYCLE() d_pyrLK->calc(d_frame0, d_frame1, flow);
254 TEST_CYCLE() d_farneback->calc(d_frame0, d_frame1, flow);
298 TEST_CYCLE() d_alg->calc(d_frame0, d_frame1, flow);
317 TEST_CYCLE() alg->calc(frame0, frame1, flow);
  /external/opencv3/modules/core/include/opencv2/core/cuda/detail/
vec_distance_detail.hpp 103 static __device__ __forceinline__ void calc(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int tid) function in struct:cv::cuda::device::vec_distance_detail::VecDiffCachedCalculator
111 static __device__ __forceinline__ void calc(const T1* vecCached, const T2* vecGlob, int len, Dist& dist, int tid) function in struct:cv::cuda::device::vec_distance_detail::VecDiffCachedCalculator

Completed in 606 milliseconds

1 2 3 4 5 6