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

  /external/android-clat/
checksum.c 53 * temp_sum - sum from ip_checksum_add
56 uint16_t ip_checksum_fold(uint32_t temp_sum) {
57 while(temp_sum > 0xffff)
58 temp_sum = (temp_sum >> 16) + (temp_sum & 0xFFFF);
60 return temp_sum;
65 * temp_sum - sum from ip_checksum_add
68 uint16_t ip_checksum_finish(uint32_t temp_sum) {
69 return ~ip_checksum_fold(temp_sum);
78 uint32_t temp_sum; local
    [all...]
checksum.h 26 uint16_t ip_checksum_finish(uint32_t temp_sum);
  /external/opencv3/modules/imgproc/src/opencl/
match_template.cl 387 T image_sum = (T)(0), value, temp_sum;
389 temp_sum.x = template_sum.x;
390 temp_sum.y = template_sum.y;
391 temp_sum.z = template_sum.z;
398 image_sum = mad(value, temp_sum , 0);
420 T image_sum = (T)(0), value, temp_sum;
423 temp_sum.x = template_sum.x;
424 temp_sum.y = template_sum.y;
426 temp_sum = template_sum;
431 image_sum = mad(value, temp_sum , image_sum)
    [all...]
corner.cl 185 float temp_sum = 0;
187 temp_sum += temp[k][col+i];
188 tmp_sum[k] = temp_sum;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
expand.cc 702 int32_t temp_sum = kCoefficients[0] << 14; local
703 temp_sum += kCoefficients[1] * x1;
704 temp_sum += kCoefficients[2] * x2;
705 temp_sum += kCoefficients[3] * x3;
707 static_cast<int16_t>(std::min(temp_sum / 4096, 16384));
    [all...]
  /external/opencv3/modules/imgproc/
opencl_kernels_imgproc.cpp     [all...]

Completed in 392 milliseconds