Searched refs:weight (Results 351 - 375 of 619) sorted by relevance

<<11121314151617181920>>

/external/ImageMagick/MagickCore/
H A Ddistort.c2687 double weight =
2690 weight = pow(weight,coeff[0]); /* shepards power factor */
2691 weight = ( weight < 1.0 ) ? 1.0 : 1.0/weight;
2693 s.x += (arguments[ i ]-arguments[i+2])*weight;
2694 s.y += (arguments[i+1]-arguments[i+3])*weight;
2695 denominator += weight;
3145 double weight
2681 double weight = local
3137 double weight = local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c255 * Helper to compute the first coord and the weight for
288 /* convert to int, compute lerp weight */
298 * \param weight_out returns linear interpolation weight
317 LLVMValueRef coord0, coord1, weight; local
329 /* convert to int, compute lerp weight */
330 lp_build_ifloor_fract(coord_bld, coord, &coord0, &weight);
345 &coord0, &weight);
369 /* convert to int, compute lerp weight */
370 lp_build_ifloor_fract(coord_bld, coord, &coord0, &weight);
395 /* convert to int, compute lerp weight */
813 lp_build_masklerp(struct lp_build_context *bld, LLVMValueRef weight, LLVMValueRef mask0, LLVMValueRef mask1) argument
[all...]
H A Dlp_bld_sample_aos.c197 * Helper to compute the first coord and the weight for
220 /* convert to int, compute lerp weight */
439 * \param weight the filter weight as int (0-255)
452 LLVMValueRef *weight,
473 /* convert to int, compute lerp weight */
474 lp_build_ifloor_fract(coord_bld, coord, coord0, weight);
498 *weight = lp_build_fract(coord_bld, coord);
531 /* convert to int, compute lerp weight */
532 lp_build_ifloor_fract(coord_bld, coord, coord0, weight);
443 lp_build_sample_wrap_linear_float(struct lp_build_sample_context *bld, unsigned block_length, LLVMValueRef coord, LLVMValueRef length, LLVMValueRef offset, boolean is_pot, unsigned wrap_mode, LLVMValueRef *coord0, LLVMValueRef *coord1, LLVMValueRef *weight, unsigned force_nearest) argument
[all...]
/external/libxcam/xcore/
H A Dvec_mat.h137 inline Vector2<T> lerp (T weight, const Vector2<T>& vec) const { argument
138 return (*this) + (vec - (*this)) * weight;
196 inline VectorN<T, N> lerp (T weight, const VectorN<T, N>& vec) const;
506 VectorN<T, N> VectorN<T, N>::lerp (T weight, const VectorN<T, N>& vec) const { argument
507 return (*this) + (vec - (*this)) * weight;
1031 inline Quaternion<T> lerp (T weight, const Quaternion<T>& quat) const { argument
1032 return Quaternion<T>(v.lerp(weight, quat.v), (1 - weight) * w + weight * quat.w);
/external/freetype/src/cff/
H A Dcffobjs.c1002 char *weight = cff_index_get_sid_string( cff, local
1003 dict->weight );
1006 if ( weight )
1007 if ( !ft_strcmp( weight, "Bold" ) ||
1008 !ft_strcmp( weight, "Black" ) )
/external/libxcam/modules/ocl/
H A Dcl_newwavelet_denoise_handler.cpp319 float weight = 4; local
321 noise_variance[0] = buffer->noise_variance[0] * weight;
322 noise_variance[1] = buffer->noise_variance[0] * weight;
324 noise_variance[0] = buffer->noise_variance[1] * weight;
325 noise_variance[1] = buffer->noise_variance[2] * weight;
/external/skia/src/core/
H A DSkPathRef.cpp16 // Conic weights must be 0 < weight <= finite
492 void SkPathRef::interpolate(const SkPathRef& ending, SkScalar weight, SkPathRef* out) const {
497 outValues[index] = outValues[index] * weight + inValues[index] * (1 - weight);
584 SkPoint* SkPathRef::growForVerb(int /* SkPath::Verb*/ verb, SkScalar weight) {
643 *fConicWeights.append() = weight;
/external/skia/src/ports/
H A DSkFontMgr_fontconfig.cpp345 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR),
370 return SkFontStyle(weight, width, slant);
390 int weight = map_ranges(style.weight(), weightRanges, SK_ARRAY_COUNT(weightRanges));
413 FcPatternAddInteger(pattern, FC_WEIGHT, weight);
H A DSkFontMgr_android.cpp181 int weight = fontFile.fWeight != 0 ? fontFile.fWeight : style.weight(); local
189 style = SkFontStyle(weight, style.width(), slant);
/external/skqp/src/core/
H A DSkPathRef.cpp16 // Conic weights must be 0 < weight <= finite
476 void SkPathRef::interpolate(const SkPathRef& ending, SkScalar weight, SkPathRef* out) const {
481 outValues[index] = outValues[index] * weight + inValues[index] * (1 - weight);
568 SkPoint* SkPathRef::growForVerb(int /* SkPath::Verb*/ verb, SkScalar weight) {
625 *fConicWeights.append() = weight;
/external/skqp/src/ports/
H A DSkFontMgr_fontconfig.cpp345 int weight = map_ranges(get_int(pattern, FC_WEIGHT, FC_WEIGHT_REGULAR),
370 return SkFontStyle(weight, width, slant);
390 int weight = map_ranges(style.weight(), weightRanges, SK_ARRAY_COUNT(weightRanges));
413 FcPatternAddInteger(pattern, FC_WEIGHT, weight);
H A DSkFontMgr_android.cpp181 int weight = fontFile.fWeight != 0 ? fontFile.fWeight : style.weight(); local
189 style = SkFontStyle(weight, style.width(), slant);
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DPathProfiling.cpp136 // weight. The counter increment counts the number of executions of
254 long weight, BallLarusNode* v, BallLarusEdge* e);
459 // weight. The counter increment is counts the number of executions of
852 void BLInstrumentationDag::calculateChordIncrementsDfs(long weight, argument
861 calculateChordIncrementsDir(e,f)*(weight) +
866 calculateChordIncrementsDir(e,f)*(weight) +
876 calculateChordIncrementsDir(e,f)*weight);
/external/tensorflow/tensorflow/python/keras/_impl/keras/
H A Dcallbacks.py666 and weight histograms for the layers of the model. If set to 0,
712 for weight in layer.weights:
713 mapped_weight_name = weight.name.replace(':', '_')
714 tf_summary.histogram(mapped_weight_name, weight)
716 grads = model.optimizer.get_gradients(model.total_loss, weight)
725 w_img = array_ops.squeeze(weight)
/external/opencv/cv/src/
H A Dcvhaar.cpp59 float weight; member in struct:CvHidHaarFeature::__anon17540
322 if( fabs(feature->rect[2].weight) < DBL_EPSILON ||
378 ipp_weights[k] = classifier->haar_feature->rect[l].weight*ipp_weight_scale;
646 hidfeature->rect[k].weight = (float)(feature->rect[k].weight * correction_ratio);
651 sum0 += hidfeature->rect[k].weight * tr.width * tr.height;
654 hidfeature->rect[0].weight = (float)(-sum0/area0);
675 double sum = calc_sum(node->feature.rect[0],p_offset) * node->feature.rect[0].weight;
676 sum += calc_sum(node->feature.rect[1],p_offset) * node->feature.rect[1].weight;
679 sum += calc_sum(node->feature.rect[2],p_offset) * node->feature.rect[2].weight;
[all...]
H A Dcvmotempl.cpp382 double weight = mhi_row.data.fl[x] * a + b; local
390 shift_orient += weight * rel_angle;
391 shift_weight += weight;
/external/opencv/cvaux/src/
H A Dcv3dtracker.cpp443 int weight = 0; local
482 weight++;
486 CvPoint3D32f center = total/weight;
/external/tensorflow/tensorflow/contrib/gan/python/losses/python/
H A Dlosses_impl.py823 for weight in weights_list:
824 if weight is not None:
825 return tensor_util.constant_value(ops.convert_to_tensor(weight))
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
H A Dhead_test.py874 # This is what is being tested, features should not have weight for
1006 # weight.
1248 weight = .1
1252 features={"label_weight": weight},
1261 _assert_metrics(self, expected_loss * weight,
1271 weight = .1
1272 weights = (weight,)
1285 _assert_metrics(self, expected_loss * weight,
1295 weight = .1
1296 weights = ((weight,),)
[all...]
/external/tensorflow/tensorflow/python/layers/
H A Dnormalization.py70 beta_initializer: Initializer for the beta weight.
71 gamma_initializer: Initializer for the gamma weight.
74 beta_regularizer: Optional regularizer for the beta weight.
75 gamma_regularizer: Optional regularizer for the gamma weight.
77 weight after being updated by an `Optimizer` (e.g. used to implement
83 `gamma` weight after being updated by an `Optimizer`.
349 # the unbiased average stddev by dividing renorm_stddev by the weight.
461 def _update_renorm_variable(var, weight, value):
462 """Updates a moving average and weight, returns the unbiased value."""
466 # accomplished by dividing the exponential moving average by the weight
[all...]
/external/libvncserver/webclients/novnc/include/
H A Dbase.css95 font-weight: bold;
196 font-weight:bold;
372 font-weight: 700;
/external/skia/src/pathops/
H A DSkOpAngle.cpp446 (*CurveIntersectRay[cVerb])(segment.pts(), segment.weight(), rays[index], &i);
541 SkDVector slopeAtEnd = (*CurveDSlopeAtT[verb])(segment->pts(), segment->weight(),
548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd);
769 (*CurveIntersectRay[verb])(segment->pts(), segment->weight(), rayMid, &iMid);
777 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayMid, &oppMid);
942 SkDPoint pt = dcubic_xy_at_t(pts, segment->weight(), testT);
/external/skqp/src/pathops/
H A DSkOpAngle.cpp446 (*CurveIntersectRay[cVerb])(segment.pts(), segment.weight(), rays[index], &i);
541 SkDVector slopeAtEnd = (*CurveDSlopeAtT[verb])(segment->pts(), segment->weight(),
548 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayEnd, &iEnd);
769 (*CurveIntersectRay[verb])(segment->pts(), segment->weight(), rayMid, &iMid);
777 (*CurveIntersectRay[oppVerb])(oppSegment->pts(), oppSegment->weight(), rayMid, &oppMid);
942 SkDPoint pt = dcubic_xy_at_t(pts, segment->weight(), testT);
/external/autotest/frontend/client/src/autotest/public/
H A Dstandard.css38 font-weight: bold;
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DRuntimeInstrument.java407 double nanos = measurement.value().magnitude() / measurement.weight();
456 double nanos = measurement.value().magnitude() / measurement.weight();

Completed in 9152 milliseconds

<<11121314151617181920>>