Searched refs:weight (Results 226 - 250 of 619) sorted by relevance

1234567891011>>

/external/tensorflow/tensorflow/core/kernels/
H A Dsdca_internal.h89 double Shrink(const double weight) const {
90 const double shrinked = std::max(std::abs(weight) - shrinkage_, 0.0);
92 return std::copysign(shrinked, weight);
119 // L1 divided by L2, pre-computed for use during weight shrinking.
195 // the parameters for it. We keep track of the original weight passed in and the
196 // delta weight which the optimizer learns in each call to the optimizer.
210 // Nominals here are the original weight matrix.
224 // The nominal value of the weight for a feature (indexed by its id).
226 // The accumulated delta weight for a feature (indexed by its id).
270 // The nominal value of the weight fo
[all...]
/external/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp129 // their weight.
132 return LHS->weight > RHS->weight;
160 li.weight += LiveIntervals::getSpillWeight(false, true, MBFI, MI);
179 /// to a sorted (by weight) list.
211 // Sort them by weight.
293 SlotWeights[NewSS] += li->weight;
302 li->weight = SlotWeights[SS];
304 // Sort them by new weight.
/external/python/cpython2/Demo/turtle/
H A DturtleDemo.py60 root.grid_rowconfigure(1, weight=1)
61 root.grid_columnconfigure(0, weight=1)
62 root.grid_columnconfigure(1, minsize=90, weight=1)
63 root.grid_columnconfigure(2, minsize=90, weight=1)
64 root.grid_columnconfigure(3, minsize=90, weight=1)
/external/python/cpython3/Lib/turtledemo/
H A D__main__.py150 root.grid_rowconfigure(0, weight=1)
151 root.grid_columnconfigure(0, weight=1)
152 root.grid_columnconfigure(1, minsize=90, weight=1)
153 root.grid_columnconfigure(2, minsize=90, weight=1)
154 root.grid_columnconfigure(3, minsize=90, weight=1)
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_decoder.c357 unsigned field_select_mask, unsigned weight)
369 mv.top.weight = weight;
373 mv.bottom.weight = weight;
382 mv.top.weight = weight;
388 mv.bottom.weight = weight;
397 mv.top.weight
356 MotionVectorToPipe(const struct pipe_mpeg12_macroblock *mb, unsigned vector, unsigned field_select_mask, unsigned weight) argument
[all...]
/external/icu/icu4j/
H A Dstylesheet7.css110 font-weight:bold;
280 font-weight:bold;
291 font-weight:bold;
381 font-weight:bold;
432 font-weight:bold;
489 font-weight:bold;
523 /* font-weight:bold; */
525 font-weight: bold;
549 font-weight: bold;
560 font-weight
[all...]
H A Dstylesheet8.css115 font-weight:bold;
287 font-weight:bold;
300 font-weight:bold;
379 font-weight:bold;
503 font-weight:bold;
565 font-weight:bold;
611 /* font-weight:bold; */
613 font-weight: bold;
637 font-weight: bold;
648 font-weight
[all...]
/external/opencv/cvaux/src/
H A Dcvclique.cpp147 assert(ver->weight>=0);
148 finder->vertex_weights[i] = ver->weight;
149 finder->cand_weight[0] += ver->weight;
176 assert( ((CvGraphWeightedEdge*)edge)->weight >= 0 );
178 finder->edge_weights[ j * graph->total + i ] = ((CvGraphWeightedEdge*)edge)->weight;
293 //check potential weight
401 //update total weight by edge weights
/external/skia/src/gpu/ops/
H A DGrAAHairLinePathRenderer.cpp139 static int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) { argument
143 dst[0].set(src, weight);
149 conic.set(src, weight);
151 dst[0].set(src, weight);
162 static int chop_conic(const SkPoint src[3], SkConic dst[4], const SkScalar weight) { argument
164 int conicCnt = split_conic(src, dstTemp, weight);
274 // hyperbolas with high weight still show error.
599 const SkScalar weight) {
602 GrPathUtils::getConicKLM(p, weight, &klm);
611 const SkScalar weight,
598 set_conic_coeffs(const SkPoint p[3], BezierVertex verts[kQuadNumVertices], const SkScalar weight) argument
610 add_conics(const SkPoint p[3], const SkScalar weight, const SkMatrix* toDevice, const SkMatrix* toSrc, BezierVertex** vert) argument
[all...]
/external/skqp/src/gpu/ops/
H A DGrAAHairLinePathRenderer.cpp139 static int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) { argument
143 dst[0].set(src, weight);
149 conic.set(src, weight);
151 dst[0].set(src, weight);
162 static int chop_conic(const SkPoint src[3], SkConic dst[4], const SkScalar weight) { argument
164 int conicCnt = split_conic(src, dstTemp, weight);
274 // hyperbolas with high weight still show error.
599 const SkScalar weight) {
602 GrPathUtils::getConicKLM(p, weight, &klm);
611 const SkScalar weight,
598 set_conic_coeffs(const SkPoint p[3], BezierVertex verts[kQuadNumVertices], const SkScalar weight) argument
610 add_conics(const SkPoint p[3], const SkScalar weight, const SkMatrix* toDevice, const SkMatrix* toSrc, BezierVertex** vert) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveInterval.cpp560 weight = RHS.weight;
578 /// ComputeJoinedWeight - Set the weight of a live interval Joined
581 // If either of these intervals was spilled, the weight is the
582 // weight of the non-spilled interval. This can only happen with
585 if (Other.weight != HUGE_VALF) {
586 weight += Other.weight;
588 else if (weight == HUGE_VALF &&
592 weight
[all...]
H A DMachineBasicBlock.cpp341 void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) { argument
345 if (weight != 0 && Weights.empty())
348 if (weight != 0 || !Weights.empty())
349 Weights.push_back(weight);
385 uint32_t weight = 0; local
391 weight = *WI;
396 addSuccessor(New, weight);
415 uint32_t weight = 0; local
420 weight = *fromMBB->Weights.begin();
422 addSuccessor(Succ, weight);
[all...]
/external/skia/src/pathops/
H A DSkOpSegment.h44 SkOpSegment* addConic(SkPoint pts[3], SkScalar weight, SkOpContour* parent) { argument
45 init(pts, weight, parent, SkPath::kConic_Verb);
47 curve.fConic.set(pts, weight);
48 curve.setConicBounds(pts, weight, 0, 1, &fBounds);
231 void init(SkPoint pts[], SkScalar weight, SkOpContour* parent, SkPath::Verb verb);
421 SkScalar weight() const { function in class:SkOpSegment
/external/skqp/src/pathops/
H A DSkOpSegment.h44 SkOpSegment* addConic(SkPoint pts[3], SkScalar weight, SkOpContour* parent) { argument
45 init(pts, weight, parent, SkPath::kConic_Verb);
47 curve.fConic.set(pts, weight);
48 curve.setConicBounds(pts, weight, 0, 1, &fBounds);
231 void init(SkPoint pts[], SkScalar weight, SkOpContour* parent, SkPath::Verb verb);
421 SkScalar weight() const { function in class:SkOpSegment
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java189 /** The maximum weight of this map. UNSET_INT if there is no maximum. */
381 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
382 return (weight == 1)
384 : new WeightedStrongValueReference<K, V>(value, weight);
396 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
397 return (weight == 1)
400 segment.valueReferenceQueue, value, entry, weight);
412 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
413 return (weight == 1)
416 segment.valueReferenceQueue, value, entry, weight);
428 referenceValue( Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) argument
1723 final int weight; field in class:LocalCache.WeightedWeakValueReference
1725 WeightedWeakValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry, int weight) argument
1747 final int weight; field in class:LocalCache.WeightedSoftValueReference
1749 WeightedSoftValueReference(ReferenceQueue<V> queue, V referent, ReferenceEntry<K, V> entry, int weight) argument
1771 final int weight; field in class:LocalCache.WeightedStrongValueReference
1773 WeightedStrongValueReference(V referent, int weight) argument
1833 newValueReference(ReferenceEntry<K, V> entry, V value, int weight) argument
2567 recordWrite(ReferenceEntry<K, V> entry, int weight, long now) argument
[all...]
/external/autotest/server/cros/ap_configurators/
H A Ddlink_ap_configurator.py180 weight = 1
182 weight = 1000
183 self.add_item_to_command_list(self._set_radio, (enabled,), 1, weight)
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-core.css251 font-weight: bold;
285 font-weight: bold;
566 font-weight : bold;
681 .kwd { color: #006; font-weight: bold; }
683 .typ { color: #404; font-weight: bold; }
687 .tag { color: #006; font-weight: bold; }
/external/guava/
H A Djavadoc-stylesheet.css101 font-weight:bold;
265 font-weight:bold;
276 font-weight:bold;
366 font-weight:bold;
417 font-weight:bold;
473 font-weight:bold;
/external/jmdns/src/javax/jmdns/impl/
H A DServiceInfoImpl.java121 * @param weight
127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) { argument
128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null);
144 * @param weight
150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) { argument
151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props));
159 * @param weight
165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) { argument
166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text);
169 public ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, in argument
173 ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, String text) argument
185 ServiceInfoImpl(Map<Fields, String> qualifiedNameMap, int port, int weight, int priority, boolean persistent, byte text[]) argument
[all...]
/external/libjpeg-turbo/java/doc/
H A Dstylesheet.css101 font-weight:bold;
265 font-weight:bold;
276 font-weight:bold;
366 font-weight:bold;
417 font-weight:bold;
473 font-weight:bold;
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DMacrobenchmarkWorker.java74 .weight(1)
/external/freetype/src/cache/
H A Dftcmanag.c482 FT_Offset weight = 0; local
496 weight += cache->clazz.node_weight( node, cache );
502 if ( weight != manager->cur_weight )
503 FT_TRACE0(( "FTC_Manager_Check: invalid weight %ld instead of %ld\n",
504 manager->cur_weight, weight ));
551 FT_TRACE0(( "compressing, weight = %ld, max = %ld, nodes = %d\n",
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_firstpass.h77 double weight; member in struct:__anon12885
H A Dvp9_mcomp.h46 int *mvcost[2], int weight);
/external/libvpx/libvpx/vpx_dsp/
H A Dssim.c169 const YV12_BUFFER_CONFIG *dest, double *weight) {
184 *weight = 1;
337 // term 1 -> uses change in scene Variance to weight error score
342 // term 2 -> uses change in local scene luminance to weight error
433 const YV12_BUFFER_CONFIG *dest, double *weight,
456 *weight = 1;
168 vpx_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *weight) argument
432 vpx_highbd_calc_ssim(const YV12_BUFFER_CONFIG *source, const YV12_BUFFER_CONFIG *dest, double *weight, uint32_t bd, uint32_t in_bd) argument

Completed in 796 milliseconds

1234567891011>>