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

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
partial_sum.h 27 * sums.
113 value_type* sums; local
142 sums = static_cast<value_type*>(::operator new(sizeof(value_type)
153 ::new(&(sums[iam])) value_type(*(result + borders[1] - 1));
157 ::new(&(sums[iam]))
169 sums + 1, sums + num_threads, sums + 1, bin_op, sums[0]);
177 sums[iam])
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 405 static jlong getFreeMemoryImpl(const char* const sums[], const int sumsLen[], int num)
430 while (sums[i]) {
431 if (strncmp(p, sums[i], sumsLen[i]) == 0) {
455 static const char* const sums[] = { "MemFree:", "Cached:", NULL }; local
457 return getFreeMemoryImpl(sums, sumsLen, 2);
462 static const char* const sums[] = { "MemTotal:", NULL }; local
464 return getFreeMemoryImpl(sums, sumsLen, 1);

Completed in 361 milliseconds