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

1 2

  /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/ltp/testcases/realtime/func/periodic_cpu_load/
periodic_cpu_load_single.c 73 void *calc(int loops) function
125 calc(loops);
137 ("Missed period, aborting (calc took too long)\n");
periodic_cpu_load.c 107 void *calc(void *arg) function
153 ("Missed period, aborting (calc took too long)\n");
203 { PERIOD_A, iterations, calc, (void *)CALC_LOOPS_A };
205 { PERIOD_B, iterations, calc, (void *)CALC_LOOPS_B };
207 { PERIOD_C, iterations, calc, (void *)CALC_LOOPS_C };
  /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...]
  /system/update_engine/payload_generator/
payload_signer.cc 199 HashCalculator calc; local
200 TEST_AND_RETURN_FALSE(calc.Update(payload.data(), metadata_size));
203 TEST_AND_RETURN_FALSE(calc.Update(
206 TEST_AND_RETURN_FALSE(calc.Finalize());
207 *out_hash_data = calc.raw_hash();
  /external/libmojo/mojo/public/cpp/bindings/tests/
interface_ptr_unittest.cc 219 math::CalculatorPtr calc; local
220 EXPECT_FALSE(calc.is_bound());
221 MathCalculatorImpl calc_impl(GetProxy(&calc));
222 EXPECT_TRUE(calc.is_bound());
226 math::CalculatorPtr calc; local
227 MathCalculatorImpl calc_impl(GetProxy(&calc));
230 MathCalculatorUI calculator_ui(std::move(calc));
242 math::CalculatorPtr calc; local
243 MathCalculatorImpl calc_impl(GetProxy(&calc));
246 MathCalculatorUI calculator_ui(std::move(calc));
527 math::CalculatorPtr calc; local
600 math::CalculatorPtr calc; local
    [all...]
  /external/pdfium/xfa/fxfa/app/
xfa_ffwidgethandler.cpp 174 CXFA_Calculate calc = pWidgetAcc->GetCalculate(); local
175 if (!calc)
177 if (calc.GetScript())
214 CXFA_Calculate calc = pWidgetAcc->GetCalculate(); local
215 if (!calc)
220 CXFA_Script script = calc.GetScript();
xfa_fffield.cpp 637 CXFA_Calculate calc = pAcc->GetCalculate(); local
638 if (!calc) {
642 if (calc) {
643 int32_t iOverride = calc.GetOverride();
659 CXFA_Script script = calc.GetScript();
675 calc.GetMessageText(wsMessage);
xfa_ffdocview.cpp 420 CXFA_Calculate calc = pWidgetAcc->GetCalculate(); local
421 if (!calc) {
427 CXFA_Script script = calc.GetScript();
  /external/autotest/client/cros/
power_status.py 1420 def calc(self, mtype=None): member in class:MeasurementLogger
1522 def calc(self, mtype='pwr'): member in class:PowerLogger
1578 def calc(self, mtype='temp'): member in class:TempLogger
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformation.java 357 DigestCalculator calc = verifier.getDigestCalculator(this.getDigestAlgorithmID()); local
360 OutputStream digOut = calc.getOutputStream();
395 resultDigest = calc.getDigest();
  /external/libpng/
pngwrite.c 1598 png_uint_32 calc = component * reciprocal; local
    [all...]
  /external/pdfium/third_party/libpng16/
pngwrite.c 1598 png_uint_32 calc = component * reciprocal; local
    [all...]
  /external/skia/third_party/libpng/
pngwrite.c 1598 png_uint_32 calc = component * reciprocal; local
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 382 long calc = (year / 400) * MILLISECONDS_PER_400_YEARS; local
385 calc += year * (365 * MILLISECONDS_PER_DAY);
386 calc += ((year + 3) / 4) * MILLISECONDS_PER_DAY;
389 calc -= ((year - 1) / 100) * MILLISECONDS_PER_DAY;
395 calc += mlen[month] * MILLISECONDS_PER_DAY;
396 calc += (day - 1) * MILLISECONDS_PER_DAY;
397 calc += millis;
399 calc -= mRawOffset;
400 calc -= UNIX_OFFSET;
402 return getOffset(calc);
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp 208 CvSVMKernel::CvSVMKernel( const CvSVMParams* _params, Calc _calc_func )
215 bool CvSVMKernel::create( const CvSVMParams* _params, Calc _calc_func )
322 void CvSVMKernel::calc( int vcount, int var_count, const float** vecs, function in class:CvSVMKernel
506 kernel->calc( sample_count, var_count, samples, samples[i1], row->data );
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-util-0.9.0.M2.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M2/
aether-util-0.9.0.M2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/0.9.0.M3/
aether-util-0.9.0.M3.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-util/1.0.2.v20150114/
aether-util-1.0.2.v20150114.jar 
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/jaxb-core/2.2.11/
jaxb-core-2.2.11.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/aether/aether-util/1.7/
aether-util-1.7.jar 
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 2890 milliseconds

1 2