/external/kernel-headers/original/uapi/linux/netfilter/ |
xt_hashlimit.h | 34 __u32 avg; /* Average secs between packets * scale */ 58 __u32 avg; /* Average secs between packets * scale */ 71 __u64 avg; /* Average secs between packets * scale */ 85 __u64 avg; /* Average secs between packets * scale */
|
xt_limit.h | 15 __u32 avg; /* Average secs between packets * scale */
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_limit.h | 16 __u32 avg; /* Average secs between packets * scale */
|
/external/libavc/encoder/ |
irc_est_sad.c | 39 /* Current (nth) ifi average P frame SAD */ 42 /* (n-1)th ifi average P frame SAD */ 45 /* (n-2)th ifi average P frame SAD */ 146 * frame sads we average it out here 225 /* Calculate the average SAD */ 235 /* Push the (n-1)th average SAD to the (n-2)th average SAD */ 238 /* Push the nth average SAD to the (n-1)th average SAD */
|
/external/toolchain-utils/cros_utils/ |
command_executer_unittest.py | 17 logging_level = 'average'
|
/external/toybox/tests/ |
uptime.test | 7 testing "uptime" "uptime | grep -q 'load average:' && echo t" "t\n" "" ""
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/ |
xt_limit.h | 14 __u32 avg; /* Average secs between packets * scale */
|
xt_hashlimit.h | 24 __u32 avg; /* Average secs between packets * scale */ 48 __u32 avg; /* Average secs between packets * scale */
|
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
MemHealthRecord.java | 149 out.printf("Average Native Heap: %d\n", getAverage(nativeHeap)); 150 out.printf("Average Dalvik Heap: %d\n", getAverage(dalvikHeap)); 151 out.printf("Average PSS: %d\n", getAverage(pss)); 157 out.printf("Average Summary Java Heap: %d\n", getAverage(asJavaHeap)); 158 out.printf("Average Summary Native Heap: %d\n", getAverage(asNativeHeap)); 159 out.printf("Average Summary Code: %d\n", getAverage(asCode)); 160 out.printf("Average Summary Stack: %d\n", getAverage(asStack)); 161 out.printf("Average Summary Graphics: %d\n", getAverage(asGraphics)); 162 out.printf("Average Summary Other: %d\n", getAverage(asOther)); 163 out.printf("Average Summary System: %d\n", getAverage(asSystem)) [all...] |
/frameworks/base/core/java/android/net/metrics/ |
NetworkMetrics.java | 109 /** Represents running sums for dns and connect average error counts and average latencies. */ 151 (int) dnsLatencies.average(), (int) dnsLatencies.max, 152 100 * dnsErrorRate.average(), dnsErrorRate.count)); 154 (int) connectLatencies.average(), (int) connectLatencies.max, 155 100 * connectErrorRate.average(), connectErrorRate.count)); 157 100 * tcpLossRate.average(), tcpLossRate.count, (int) tcpLossRate.sum)); 158 j.add(String.format("tcp rtt=%dms", (int) (roundTripTimeUs.average() / 1000))); 159 j.add(String.format("tcp sent-ack_diff=%dms", (int) sentAckTimeDiffenceMs.average())); 164 /** Tracks a running sum and returns the average of a metric. * 186 double average() { method in class:NetworkMetrics.Metrics [all...] |
/external/ImageMagick/tests/ |
cli-colorspace.tap | 28 # how to generate a one pixel (average rose) color and output its values 29 in="rose: -scale 1x1" # a one pixel image of the average color. 36 average=`eval ${MAGICK} "$in" -noop "$out"` 42 printf "$format2" "Average \"rose:\" Color" "$average" "sRGB(rose)" 59 if [ "X$average" != "X146,89,80" ]; then 60 echo "Sanity Failure: Average expected to be 145,89,80 - ABORTING" 82 if [ "X$color" = "X$average" ]; then
|
/external/autotest/test_suites/ |
control.perfalerts | 16 1) check that the average time is in range 17 2) check that if you boot repeatedly, the average time doesn't increase each
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
api_def_AvgPool.pbtxt | 12 The average pooled output tensor. 43 summary: "Performs average pooling on the input."
|
api_def_AvgPool3D.pbtxt | 12 The average pooled output tensor. 45 summary: "Performs 3D average pooling on the input."
|
api_def_BatchNormWithGlobalNormalization.pbtxt | 14 or a saved moving average thereof. 22 or a saved moving average thereof.
|
api_def_ConditionalAccumulator.pbtxt | 39 average can be extracted from the accumulator, provided sufficient 40 gradients have been accumulated. Extracting the average automatically
|
api_def_SparseConditionalAccumulator.pbtxt | 39 average can be extracted from the accumulator, provided sufficient 40 gradients have been accumulated. Extracting the average automatically
|
/external/webrtc/webrtc/tools/rtcbot/rtcBotReportVisualizer/ |
main.js | 75 var avergaData = ['Average Rtt x10']; 78 var average; 81 average = getStateAverage(reports[index], botName, "Conn-audio-1-0", 83 avergaData.push(average*10); 116 var avergaData = ['Average ' + statName]; 119 var average; 122 average = getStateAverage(reports[index], botName, reportId, statName); 123 avergaData.push(average);
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
wifi_config.h | 26 // statistics like average the TSF offset or average number of frame leaked
|
/toolchain/binutils/binutils-2.27/gprof/ |
flat_bl.m | 15 self the average number of milliseconds spent in this 19 total the average number of milliseconds spent in this
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
intrapred4_dspr2.c | 44 int32_t average; local 56 "addu.ph %[average], %[above_r], %[above_l] \n\t" 57 "addu.ph %[average], %[average], %[left_l] \n\t" 58 "addu.ph %[average], %[average], %[left_r] \n\t" 59 "addiu %[average], %[average], 4 \n\t" 60 "srl %[tmp], %[average], 16 \n\t" 61 "addu.ph %[average], %[tmp], %[average] \n\t [all...] |
/external/autotest/server/cros/res_resource_monitor/ |
top_test_data.txt | 1 top - 14:47:14 up 7:58, 9 users, load average: 0.00, 0.01, 0.05 18 top - 14:48:38 up 8:00, 9 users, load average: 0.00, 0.01, 0.05 31 top - 14:48:38 up 8:00, 9 users, load average: 0.00, 0.01, 0.05 37 top - 14:49:51 up 8:01, 8 users, load average: 0.00, 0.01, 0.05 43 top - 14:49:51 up 8:01, 8 users, load average: 0.00, 0.01, 0.05
|
/external/neven/Embedded/common/src/b_APIEm/ |
Functions.h | 39 bpi_SUB_MEAN, /* subtract average */ 42 bpi_SUB_4_MAX_2, /* subtract average maximum of best 4 entries (method 2) */ 43 bpi_SUB_8_MAX_2, /* subtract average maximum of best 8 entries (method 2) */ 44 bpi_SUB_16_MAX_2, /* subtract average maximum of best 16 entries (method 2) */ 45 bpi_SUB_32_MAX_2 /* subtract average maximum of best 32 entries (method 2) */
|
/external/eigen/doc/ |
TopicLinearAlgebraDecompositions.dox | 86 <td>Average</td> 131 <td>Fast-average<sup><a href="#note2">2</a></sup></td> 148 <td>Average</td> 155 <td>Average-slow<sup><a href="#note2">2</a></sup></td> 160 <td>Average</td> 167 <td>Fast-average<sup><a href="#note2">2</a></sup></td> 181 <td>Average-slow<sup><a href="#note2">2</a></sup></td> 186 <td>Average</td> 198 <td>Average</td> 217 <td>Average</td [all...] |
/external/lisa/tools/scripts/power/ |
cpu_frequency_power_average.py | 34 def average(values): function 87 # Compute the active cost as an average of computed active costs by cluster 88 self.active_cost = average([self.clusters[cluster].compute_active_cost() for cluster in self.clusters]) 143 # The initial core cost is the average of the additional power to add 145 self.core_costs[freq] = average(core_costs) 158 # Recompute the core cost as the sample average minus the cluster and 166 # The final core cost is the average of the core costs at freq 167 self.core_costs[freq] = average(core_costs) 191 # Return the average calculated cluster cost 192 self.cluster_cost = average(cluster_costs [all...] |