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

  /external/bison/examples/
Makefile.am 20 SUBDIRS = calc++
Makefile 87 DIST_SUBDIRS = calc++
213 SUBDIRS = calc++
  /bionic/libc/tools/zoneinfo/
ZoneInfo.java 158 long calc = (year / 400) * MILLISECONDS_PER_400_YEARS; local
161 calc += year * (365 * MILLISECONDS_PER_DAY);
162 calc += ((year + 3) / 4) * MILLISECONDS_PER_DAY;
165 calc -= ((year - 1) / 100) * MILLISECONDS_PER_DAY;
170 calc += mlen[month] * MILLISECONDS_PER_DAY;
171 calc += (day - 1) * MILLISECONDS_PER_DAY;
172 calc += millis;
174 calc -= mRawOffset;
175 calc -= UNIX_OFFSET;
177 return getOffset(calc);
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 124 long calc = (year / 400) * MILLISECONDS_PER_400_YEARS; local
127 calc += year * (365 * MILLISECONDS_PER_DAY);
128 calc += ((year + 3) / 4) * MILLISECONDS_PER_DAY;
131 calc -= ((year - 1) / 100) * MILLISECONDS_PER_DAY;
137 calc += mlen[month] * MILLISECONDS_PER_DAY;
138 calc += (day - 1) * MILLISECONDS_PER_DAY;
139 calc += millis;
141 calc -= mRawOffset;
142 calc -= UNIX_OFFSET;
144 return getOffset(calc);
    [all...]
  /external/bison/tests/
testsuite 381 70;calc.at:550;Calculator ;;
382 71;calc.at:552;Calculator %defines;;
383 72;calc.at:553;Calculator %locations;;
384 73;calc.at:554;Calculator %name-prefix="calc";;
385 74;calc.at:555;Calculator %verbose;;
386 75;calc.at:556;Calculator %yacc;;
387 76;calc.at:557;Calculator %error-verbose;;
388 77;calc.at:559;Calculator %pure-parser %locations;;
389 78;calc.at:560;Calculator %error-verbose %locations;
    [all...]
Makefile.am 52 calc.at \
Makefile 211 calc.at \
  /packages/apps/Calculator/src/com/android/calculator2/
ColorButton.java 46 Calculator calc = (Calculator) context; local
47 init(calc);
48 mListener = calc.mListener;
56 private void init(Calculator calc) {
  /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/bison/djgpp/
config.bat 244 Rem Fixing ilicit calc++ file names in the calc++ directory.
245 test -d %XSRC%/examples/calc++
246 if not errorlevel 1 mv -f %XSRC%/examples/calc++ %XSRC%/examples/calcxx
249 test -f %XSRC%/examples/calcxx/calc++-scanner.cc
250 if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.cc %XSRC%/examples/calcxx/calcxx-scanner.cc
253 test -f %XSRC%/examples/calcxx/calc++-scanner.ll
254 if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-scanner.ll %XSRC%/examples/calcxx/calcxx-scanner.ll
257 test -f %XSRC%/examples/calcxx/calc++-driver.cc
258 if not errorlevel 1 mv -f %XSRC%/examples/calcxx/calc++-driver.cc %XSRC%/examples/calcxx/calcxx-driver.cc
    [all...]
  /external/freetype/include/freetype/internal/
fttrace.h 25 FT_TRACE_DEF( calc ) /* calculations (ftcalc.c) */
  /bionic/libc/bionic/
md5.c 76 calc (struct md5 *m, u_int32_t *data) function
232 calc(m, current);
234 calc(m, (u_int32_t*)m->save);
  /external/bluetooth/bluez/tools/
ubcsp.c 743 static void ubcsp_setup_packet (uint8 *part1, uint8 calc, uint8 *part2, uint16 len2)
747 if (calc)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
3d-cube.js 187 // calc current normals
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
3d-cube.js 187 // calc current normals
  /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...]
  /external/opencv/cv/src/
cvpyramids.cpp     [all...]
  /external/v8/test/cctest/
test-regexp.cc 1485 int calc = first[j] + i; local
    [all...]
  /external/opencv/cv/include/
cv.h 117 int calc CV_DEFAULT(1),
    [all...]
  /external/opencv/ml/include/
ml.h 343 typedef void (CvSVMKernel::*Calc)( int vec_count, int vec_size, const float** vecs,
346 CvSVMKernel( const CvSVMParams* _params, Calc _calc_func );
347 virtual bool create( const CvSVMParams* _params, Calc _calc_func );
351 virtual void calc( int vcount, int n, const float** vecs, const float* another, float* results );
354 Calc calc_func;
    [all...]

Completed in 899 milliseconds