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

  /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);
  /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...]
  /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) {
  /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/v8/test/cctest/
test-regexp.cc 1485 int calc = first[j] + i; local
    [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...]

Completed in 452 milliseconds