HomeSort by relevance Sort by last modified time
    Searched refs:metric (Results 1 - 25 of 43) sorted by null

1 2

  /external/lldb/tools/lldb-perf/lib/
Measurement.h 15 #include "Metric.h"
34 m_metric (Metric<typename GaugeType::ValueType>(name, desc))
41 m_metric (Metric<typename GaugeType::ValueType>(name, desc))
74 virtual const Metric<typename GaugeType::ValueType>&
97 auto metric = GetMetric (); local
98 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStartValue()));
104 auto metric = GetMetric (); local
105 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, met (…)
111 auto metric = GetMetric (); local
118 auto metric = GetMetric (); local
129 auto metric = GetMetric (); local
    [all...]
  /external/dhcpcd/
if-pref.c 67 /* Finally, metric */
68 if (si->metric < ti->metric)
70 if (si->metric > ti->metric)
if-options.h 86 int metric; member in struct:if_options
if-linux.c 233 int len, idx, metric; local
260 metric = 0;
277 metric = *(int *)RTA_DATA(rta);
283 if (metric == rt.iface->metric) {
591 add_attr_32(&nlm->hdr, sizeof(*nlm), RTA_PRIORITY, rt->metric);
dhcpcd.h 117 int metric; member in struct:interface
net.h 87 int metric; member in struct:rt
configure.c 202 snprintf(env[3], e, "ifmetric=%d", iface->metric);
426 rt->iface->metric == r->iface->metric)) &&
514 /* We delete and add the route so that we can change metric.
707 rt->metric = ifp->metric;
717 rt->metric != or->metric)
821 /* We need to delete the subnet route to have our metric or
826 rt->metric = 0
    [all...]
  /external/tcpdump/
print-igrp.c 48 u_int metric, mtu; local
62 metric = bandwidth + delay;
63 if (metric > 0xffffff)
64 metric = 0xffffff;
69 igr->igr_rel, igr->igr_ld, metric,
print-dvmrp.c 173 register int metric, done; local
212 metric = *bp++;
213 done = metric & 0x80;
214 metric &= 0x7f;
215 printf("\n\t %s metric %d", intoa(htonl(origin)),
216 metric);
263 register u_char metric; local
271 metric = *bp++;
279 ipaddr_string(bp), metric, thresh);
294 register u_char metric, thresh, flags local
    [all...]
print-ripng.c 50 rip6_entry_print(register const struct netinfo6 *ni, int metric)
56 if (metric)
print-babel.c 443 u_short interval, seqno, metric; local
457 metric = EXTRACT_16BITS(message + 10);
458 printf("%s%s%s %s metric %u seqno %u interval %s",
463 metric, seqno, format_interval_update(interval));
print-eigrp.c 145 u_int8_t metric[4]; member in struct:eigrp_tlv_ip_ext_t
186 u_int8_t metric[2]; member in struct:eigrp_tlv_at_ext_t
373 printf("\n\t origin-router %s, origin-as %u, origin-proto %s, flags [0x%02x], tag 0x%08x, metric %u",
379 EXTRACT_32BITS(tlv_ptr.eigrp_tlv_ip_ext->metric));
436 printf("\n\t origin-router %u, origin-as %u, origin-proto %s, flags [0x%02x], tag 0x%08x, metric %u",
442 EXTRACT_16BITS(tlv_ptr.eigrp_tlv_at_ext->metric));
  /external/lldb/examples/summaries/cocoa/
metrics.py 51 string = string + "metric " + str(key) + ": " + str(value) + "\n"
60 string = string + "metric " + str(key) + " was hit " + str(value.count) + " times\n"
70 def metric_hit(self,metric,trigger):
71 self.metrics[metric].update(trigger)
87 def metric_success(self,metric):
89 metric_count = self[metric].count
  /external/skia/bench/
ResultsWriter.h 37 // then config and metric can be called multiple times to record runs.
46 // Record a single test metric.
47 virtual void metric(const char name[], double ms) {} function in class:ResultsWriter
108 virtual void metric(const char name[], double ms) { function in class:NanoJSONResultsWriter
  /external/libnl/lib/route/
route_utils.c 157 char *rtnl_route_metric2str(int metric, char *buf, size_t size)
159 return __type2str(metric, buf, size, route_metrices,
route_obj.c 668 int rtnl_route_set_metric(struct rtnl_route *route, int metric, uint32_t value)
670 if (metric > RTAX_MAX || metric < 1)
673 route->rt_metrics[metric - 1] = value;
675 if (!(route->rt_metrics_mask & (1 << (metric - 1)))) {
677 route->rt_metrics_mask |= (1 << (metric - 1));
685 int rtnl_route_unset_metric(struct rtnl_route *route, int metric)
687 if (metric > RTAX_MAX || metric < 1)
690 if (route->rt_metrics_mask & (1 << (metric - 1)))
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
20-resolv.conf 97 [ -n "$metric" ] && export IF_METRIC="$metric"
  /external/iproute2/ip/
ifcfg 140 ip ro append default dev $dev metric 30000 scope global
143 ip ro append default via $peer dev $dev metric 30001
  /external/libvorbis/vq/
vqgen.h 71 float (*metric)(vqgen *,float *, float *),
vqgen.c 50 * 'pressurized' [biased] according to some metric. The basic alg
59 /* default metric; squared 'distance' from desired value. */
241 float (*metric)(vqgen *,float *, float *),
257 if(metric)
258 v->metric_func=metric;
553 fprintf(stderr,": dist %g(%g) metric error=%g \n",
  /external/toybox/toys/pending/
route.c 115 int flags, ref, use, metric, mss, win, irtt, items; local
122 (toys.optflags & FLAG_e)? " MSS Window irtt" : "Metric Ref Use");
126 &gate, &flags, &ref, &use, &metric, &mask, &mss, &win, &irtt)) == 11) {
147 else xprintf("%-6d %-2d %7d %s\n", metric, ref, use, iface);
192 * used to get the params like: metric, netmask, gw, mss, window, irtt, dev and their values.
198 //set the metric field in the routing table.
199 if (!strcmp(*argv, "metric")) {
345 * used to get the params like: metric, gw, dev and their values.
351 if (!strcmp(*argv, "metric")) {
352 //set the metric field in the routing table
448 int prefixlen, metric, use, refcount, flag, items = 0; local
    [all...]
netstat.c 524 int flags, ref, use, metric, mss, win, irtt; local
531 is_more_info ? " MSS Window irtt" : "Metric Ref Use");
539 iface, &dest, &gate, &flags, &ref, &use, &metric, &mask, &mss, &win, &irtt);
570 else xprintf("%-6d %-2d %7d %s\n", metric, ref, use, iface);
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 377 TEXTMETRIC metric; local
383 VERIFY(GetTextMetrics(fontDevice, &metric));
435 VERIFY(TextOut(bitDevice, 0, metric.tmAscent, &curChar, 1));
452 glBitmap(bmapWidth, bmapHeight, 0.0, (GLfloat)metric.tmDescent,
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_L_C_.py 83 for metric in ('hori', 'vert'):
85 vars(curTable)[metric] = metricObj
192 for metric in ('hori', 'vert'):
193 metricObj = vars(curTable)[metric]
260 # Returns all the simple metric names that bitmap size table
271 for metric in ('hori', 'vert'):
272 getattr(self, metric).toXML(metric, writer, ttFont)
349 # the same XML except for specific metric information that is written
  /external/libopus/celt/
celt_encoder.c 366 /* Arbitrary metric for VBR boost */
553 VARDECL(int, metric);
569 ALLOC(metric, len, int);
627 /* metric is in Q1 to be able to select the mid-point (-0.5) for narrower bands */
629 metric[i] = 2*best_level;
631 metric[i] = -2*best_level;
632 *tf_sum += (isTransient ? LM : 0) - metric[i]/2;
633 /* For bands that can't be split to -1, set the metric to the half-way point to avoid
635 if (narrow && (metric[i]==0 || metric[i]==-2*LM)
    [all...]

Completed in 571 milliseconds

1 2