Searched refs:weight (Results 276 - 300 of 619) sorted by relevance

<<11121314151617181920>>

/external/libnl/lib/route/
H A Dnexthop.c160 nl_dump(dp, " weight %u", nh->rtnh_weight);
198 void rtnl_route_nh_set_weight(struct rtnl_nexthop *nh, uint8_t weight) argument
200 nh->rtnh_weight = weight;
/external/python/cpython2/Lib/idlelib/
H A DSearchDialogBase.py84 self.top.grid_columnconfigure(0, pad=2, weight=0)
85 self.top.grid_columnconfigure(1, pad=2, minsize=100, weight=100)
/external/python/cpython2/Lib/lib-tk/
H A DtkFont.py13 # weight/slant
40 weight -- font thickness: NORMAL, BOLD
186 f = Font(family="times", size=30, weight=NORMAL)
190 print f.actual("weight")
194 print f.cget("weight")
212 fb.config(weight=BOLD)
/external/python/cpython3/Lib/idlelib/
H A Dsearchbase.py86 self.top.grid_columnconfigure(0, pad=2, weight=0)
87 self.top.grid_columnconfigure(1, pad=2, minsize=100, weight=100)
/external/python/cpython3/Lib/tkinter/
H A Dfont.py12 # weight/slant
40 weight -- font thickness: NORMAL, BOLD
202 f = Font(family="times", size=30, weight=NORMAL)
206 print(f.actual("weight"))
210 print(f.cget("weight"))
228 fb.config(weight=BOLD)
/external/skia/bench/
H A DHairlinePathBench.cpp166 float weight = randWeight.nextRangeF(0.0f, 2.0f); variable
173 weight);
/external/skqp/bench/
H A DHairlinePathBench.cpp166 float weight = randWeight.nextRangeF(0.0f, 2.0f); variable
173 weight);
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DSpiller.cpp80 assert(li->weight != HUGE_VALF &&
123 newLI->weight = HUGE_VALF;
H A DRegAllocBasic.cpp72 return A->weight < B->weight;
79 /// algorithm. It prioritizes live virtual registers by spill weight and spills
111 virtual float getPriority(LiveInterval *LI) { return LI->weight; }
506 // must have less spill weight.
507 if (interferingVirtReg->weight < VirtReg.weight ) {
511 // Try to spill another interfering reg with less spill weight.
H A DRegAllocLinearScan.cpp266 unsigned reg, float weight,
271 /// weight is the lowest among all the registers whose live intervals
770 /// register and its weight.
772 unsigned reg, float weight,
777 Weights[reg] += weight;
780 Weights[*as] += weight;
790 // register class we are trying to allocate. Then add the weight to all
792 // e.g. allocating for GR32, bh is not used, updating bl spill weight.
793 // bl should get the same spill weight otherwise it will be chosen
798 Weights[*sr] += weight;
771 updateSpillWeights(std::vector<float> &Weights, unsigned reg, float weight, const TargetRegisterClass *RC) argument
[all...]
/external/tcpdump/
H A Dprint-lisp.c217 nd_uint8_t weight; member in struct:map_register_loc
356 lisp_loc->priority, lisp_loc->weight,
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
H A Dweighted_quantiles_stream.h43 // weight across all points in the input dataset.
84 void PushEntry(const ValueType& value, const WeightType& weight) { argument
89 buffer_.PushEntry(value, weight);
/external/tensorflow/tensorflow/core/lib/histogram/
H A Dhistogram.cc150 double weight = Remap(threshold, cumsum_prev, cumsum, lhs, rhs); local
151 return weight;
/external/trappy/tests/trappy/stats/
H A DCorrelator.py93 for weight, corr in zip(weights, corr_output):
96 total += (weight * corr) / sum(weights)
/external/trappy/tests/trappy/
H A Dthermal.py210 tuple is the name of the actor, the second is the weight. The
233 for in_col, (name, weight) in zip(in_cols, actor_weights):
234 plot_dfr_dict[name] = dfr[in_col] * weight / 1024
/external/trappy/trappy/stats/
H A DCorrelator.py93 for weight, corr in zip(weights, corr_output):
96 total += (weight * corr) / sum(weights)
/external/trappy/trappy/
H A Dthermal.py210 tuple is the name of the actor, the second is the weight. The
233 for in_col, (name, weight) in zip(in_cols, actor_weights):
234 plot_dfr_dict[name] = dfr[in_col] * weight / 1024
/external/v8/tools/profviz/
H A Dprofviz.css114 font-weight: bold;
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
H A Dtest_geometry_managers.py490 self.root.grid_columnconfigure(i, weight=0, minsize=0, pad=0, uniform='')
492 self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='')
611 {'minsize': 0, 'pad': 0, 'uniform': None, 'weight': 0})
614 self.root.grid_columnconfigure((0, 3), weight=2)
621 self.root.grid_columnconfigure('all', weight=3)
624 self.assertEqual(self.root.grid_columnconfigure(0, 'weight'), 3)
625 self.assertEqual(self.root.grid_columnconfigure(3, 'weight'), 2)
626 self.assertEqual(self.root.grid_columnconfigure(265, 'weight'), 0)
628 self.root.grid_columnconfigure(b, weight=4)
629 self.assertEqual(self.root.grid_columnconfigure(0, 'weight'),
[all...]
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
H A Dtest_geometry_managers.py490 self.root.grid_columnconfigure(i, weight=0, minsize=0, pad=0, uniform='')
492 self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='')
613 {'minsize': 0, 'pad': 0, 'uniform': None, 'weight': 0})
616 self.root.grid_columnconfigure((0, 3), weight=2)
623 self.root.grid_columnconfigure('all', weight=3)
626 self.assertEqual(self.root.grid_columnconfigure(0, 'weight'), 3)
627 self.assertEqual(self.root.grid_columnconfigure(3, 'weight'), 2)
628 self.assertEqual(self.root.grid_columnconfigure(265, 'weight'), 0)
630 self.root.grid_columnconfigure(b, weight=4)
631 self.assertEqual(self.root.grid_columnconfigure(0, 'weight'),
[all...]
/external/iproute2/tc/
H A Dq_cbq.c31 fprintf(stderr, " [ allot BYTES ] [ mpu BYTES ] [ weight RATE ]\n");
304 } else if (matches(*argv, "weight") == 0) {
306 if (get_size(&wrr.weight, *argv)) {
307 explain1("weight");
386 if (wrr.weight == 0)
387 wrr.weight = (wrr.priority == TC_CBQ_MAXPRIO) ? 1 : r.rate;
525 if (wrr->weight != 1) {
526 print_rate(buf, sizeof(buf), wrr->weight);
527 fprintf(f, "weight %s ", buf);
/external/pdfium/core/fxge/
H A Dcfx_font.cpp263 int weight,
271 face_name, bTrueType, flags, weight, italic_angle, CharsetCP,
505 int weight) const {
512 if (weight == 0)
515 coords[0] = weight;
260 LoadSubst(const ByteString& face_name, bool bTrueType, uint32_t flags, int weight, int italic_angle, int CharsetCP, bool bVertical) argument
/external/perf_data_converter/src/quipper/
H A Dsample_info_reader.cc268 // u64 regs[weight(mask)]; } && PERF_SAMPLE_REGS_USER
275 size_t weight = abi == 0 ? 0 : __builtin_popcountll(attr.sample_regs_user); local
277 if (weight > 0 && !reader.ReadData(weight * sizeof(u64), regs)) {
301 // { u64 weight; } && PERF_SAMPLE_WEIGHT
303 reader.ReadUint64(&sample->weight);
483 // u64 regs[weight(mask)]; } && PERF_SAMPLE_REGS_USER
497 // { u64 weight; } && PERF_SAMPLE_WEIGHT
499 *array++ = sample.weight;
/external/tensorflow/tensorflow/contrib/model_pruning/python/
H A Dpruning.py21 # Returns a list containing the sparsity of each of the weight tensors
24 # Returns a list of all the masked weight tensorflow variables
33 # Returns a list of all the weight tensors that have been masked
96 var: the weight variable that needs to be masked
119 var: The weight variable that needs to be masked
245 """Apply mask to a given weight tensor.
248 x: Input weight tensor
262 # weight variables
294 A list containing the sparsity of each of the weight tensors
472 """Updates the mask for a given weight tenso
[all...]
/external/ImageMagick/MagickCore/
H A Daccelerate-kernels-private.h1858 float weight = 1.0f;
1863 sum += (weight + k) * dot(RGB, convert_float4(src[mirrorBottom(j+k)]));
1864 weight += 8.0f;
1868 sum += weight * dot(RGB, convert_float4(src[mirrorBottom(j)]));
1869 weight += 1.0f;
1875 sum += (weight - k) * dot(RGB, convert_float4(src[mirrorTop(j + k, imageWidth)]));
1876 weight -= 8.0f;
1880 sum += weight * dot(RGB, convert_float4(src[mirrorTop(j, imageWidth)]));
1881 weight -= 1.0f;
1908 float weight
[all...]

Completed in 841 milliseconds

<<11121314151617181920>>