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

1 2 3

  /external/ply/ply/example/closurecalc/
calc.py 2 # calc.py
123 calc = make_calculator() variable
127 s = raw_input("calc > ")
130 r = calc(s)
  /external/ply/ply/test/
lex_object.py 47 calc = CalcLexer() variable
50 lex.lex(object=calc)
  /system/update_engine/common/
hash_calculator_unittest.cc 52 HashCalculator calc; local
53 calc.Update("hi", 2);
54 calc.Finalize();
57 EXPECT_TRUE(raw_hash == calc.raw_hash());
61 HashCalculator calc; local
62 calc.Update("h", 1);
63 calc.Update("i", 1);
64 calc.Finalize();
67 EXPECT_TRUE(raw_hash == calc.raw_hash());
71 HashCalculator calc; local
85 HashCalculator calc; local
119 HashCalculator calc; local
127 HashCalculator calc; local
156 HashCalculator calc; local
163 HashCalculator calc; local
166 HashCalculator calc; local
    [all...]
hash_calculator.cc 86 HashCalculator calc; local
87 TEST_AND_RETURN_FALSE(calc.Update(data, length));
88 TEST_AND_RETURN_FALSE(calc.Finalize());
89 *out_hash = calc.raw_hash();
100 HashCalculator calc; local
101 off_t res = calc.UpdateFile(name, length);
105 if (!calc.Finalize()) {
108 *out_hash = calc.raw_hash();
  /external/ply/ply/example/classcalc/
calc.py 4 # calc.py
52 s = raw_input('calc > ')
60 class Calc(Parser):
164 calc = Calc() variable
165 calc.run()
  /external/ply/ply/example/newclasscalc/
calc.py 4 # calc.py
54 s = raw_input('calc > ')
62 class Calc(Parser):
166 calc = Calc() variable
167 calc.run()
  /art/test/530-checker-lse-ctor-fences/src/
Main.java 124 CalcCircleAreaOrCircumference calc = local
131 calc.value = Math.PI * Math.PI * radius;
134 calc.value = 2 * Math.PI * radius;
137 return calc.value;
  /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 201 HashCalculator calc; local
202 TEST_AND_RETURN_FALSE(calc.Update(payload.data(), metadata_size));
205 TEST_AND_RETURN_FALSE(calc.Update(
208 TEST_AND_RETURN_FALSE(calc.Finalize());
209 *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/
cxfa_ffwidgethandler.cpp 198 CXFA_Calculate* calc = node->GetCalculateIfExists(); local
199 return calc && calc->GetScriptIfExists();
233 CXFA_Calculate* calc = node->GetCalculateIfExists(); local
234 if (!calc)
238 return node->ExecuteScript(m_pDocView, calc->GetScriptIfExists(), pParam);
cxfa_ffdocview.cpp 429 CXFA_Calculate* calc = node->GetCalculateIfExists(); local
430 if (!calc)
435 return node->ExecuteScript(pDocView, calc->GetScriptIfExists(), pParam);
cxfa_fffield.cpp 667 CXFA_Calculate* calc = pAcc->GetNode()->GetCalculateIfExists(); local
668 if (!calc)
672 switch (calc->GetOverride()) {
687 CXFA_Script* script = calc->GetScriptIfExists();
701 WideString wsMessage = calc->GetMessageText();
  /external/tensorflow/tensorflow/core/kernels/
resize_bicubic_op.cc 166 CachedInterpolationCalculator calc; local
171 x_wai.advance = calc.Advance(x_wai.index_0, x_wai.index_1, x_wai.index_2,
186 CachedInterpolationCalculator calc; local
191 x_wai.advance = calc.Advance(x_wai.index_0, x_wai.index_1, x_wai.index_2,
  /external/autotest/client/cros/power/
power_status.py 1446 def calc(self, mtype=None): member in class:MeasurementLogger
1546 def calc(self, mtype='pwr'): member in class:PowerLogger
1602 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 1610 png_uint_32 calc = component * reciprocal; local
    [all...]
  /external/pdfium/third_party/libpng16/
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/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 

Completed in 473 milliseconds

1 2 3