Searched refs:weight (Results 251 - 275 of 619) sorted by relevance

<<11121314151617181920>>

/external/llvm/lib/CodeGen/
H A DRegAllocBase.cpp104 << ':' << *VirtReg << " w=" << VirtReg->weight << '\n');
/external/ltp/utils/ffsb-6.0-rc2/
H A Dffsb_fs.h37 int weight; member in struct:size_weight
H A Dffsb_tg.h153 void tg_set_op_weight(ffsb_tg_t *tg, char *opname, unsigned weight);
/external/pdfium/core/fxge/win32/
H A Dfx_win32_device.cpp325 void* MapFont(int weight,
339 void* MapFont(int weight,
356 void GetGBPreference(ByteString& face, int weight, int picth_family);
357 void GetJapanesePreference(ByteString& face, int weight, int picth_family);
473 void* CFX_Win32FallbackFontInfo::MapFont(int weight, argument
493 return FindFont(weight, bItalic, charset, pitch_family, cstr_face, !bCJK);
497 int weight,
519 } else if (!(picth_family & FF_ROMAN) && weight > 550) {
527 int weight,
556 if (!(picth_family & FF_ROMAN) && weight > 40
496 GetGBPreference(ByteString& face, int weight, int picth_family) argument
526 GetJapanesePreference(ByteString& face, int weight, int picth_family) argument
563 MapFont(int weight, bool bItalic, int charset, int pitch_family, const char* cstr_face) argument
[all...]
/external/pdfium/fxjs/xfa/
H A Dcjx_font.cpp99 void CJX_Font::weight(CFXJSE_Value* pValue, function in class:CJX_Font
/external/python/cpython3/Lib/idlelib/
H A Dtabbedpages.py397 self.columnconfigure(0, weight=1)
398 self.rowconfigure(1, weight=1)
403 self.pages_frame.columnconfigure(0, weight=1)
404 self.pages_frame.rowconfigure(0, weight=1)
/external/skia/src/gpu/
H A DGrPathUtils.h96 // Input is 3 control points and a weight for a bezier conic. Calculates the
106 void getConicKLM(const SkPoint p[3], const SkScalar weight, SkMatrix* klm);
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.cpp239 SkScalar weight = *weightPtr++; local
244 SkConic conic(pointsPtr, weight);
248 fContourBuilder.addConic(pointsPtr, weight);
263 fContourBuilder.addConic(pointsPtr, weight);
/external/skia/tools/fonts/
H A Dsk_tool_utils_font.cpp48 SkDebugf("missing %s weight %d, width %d, slant %d\n",
49 name, style.weight(), style.width(), style.slant());
/external/skqp/src/gpu/
H A DGrPathUtils.h96 // Input is 3 control points and a weight for a bezier conic. Calculates the
106 void getConicKLM(const SkPoint p[3], const SkScalar weight, SkMatrix* klm);
/external/skqp/src/pathops/
H A DSkOpEdgeBuilder.cpp239 SkScalar weight = *weightPtr++; local
244 SkConic conic(pointsPtr, weight);
248 fContourBuilder.addConic(pointsPtr, weight);
263 fContourBuilder.addConic(pointsPtr, weight);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DLiveInterval.h210 float weight; // weight of this interval
226 : reg(Reg), weight(Weight) {}
513 return weight != HUGE_VALF;
518 weight = HUGE_VALF;
521 /// ComputeJoinedWeight - Set the weight of a live interval after
/external/tensorflow/tensorflow/compiler/xla/
H A Dreference_util_test.cc322 Array4D<float> weight({{
349 input, weight, {1, 1}, Padding::kSame, dimension_numbers);
378 Array4D<float> weight({{
406 input, weight, {1, 1}, Padding::kValid, dimension_numbers);
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
H A Destimator.py55 weights. It is used to down weight or boost examples during training. It
103 weights. It is used to down weight or boost examples during training. It
144 weight=weights)
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DLocaleMatcher.java194 final double weight = matchWeight.value * languageList.getWeight(language) - penalty;
195 if (weight > bestWeight) {
196 bestWeight = weight;
250 * @return best matching language code and weight (as per
273 final double weight = match * matchedWeight;
274 if (weight > bestWeight) {
275 bestWeight = weight;
277 if (weight > 0.999d) { // bail on good enough match.
287 outputWeight.value = bestWeight; // only return the weight when needed
301 private void add(ULocale language, Double weight) { argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocaleMatcher.java198 final double weight = matchWeight.value * languageList.getWeight(language) - penalty;
199 if (weight > bestWeight) {
200 bestWeight = weight;
257 * @return best matching language code and weight (as per
280 final double weight = match * matchedWeight;
281 if (weight > bestWeight) {
282 bestWeight = weight;
284 if (weight > 0.999d) { // bail on good enough match.
294 outputWeight.value = bestWeight; // only return the weight when needed
308 private void add(ULocale language, Double weight) { argument
[all...]
/external/skia/gm/
H A Dbeziereffects.cpp345 SkScalar weight = rand.nextRangeF(0.f, 2.f); variable
364 int cnt = chop_conic(controlPts, dst, weight);
365 GrPathUtils::getConicKLM(controlPts, weight, &klm);
417 int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) { argument
421 dst[0].set(src, weight);
427 conic.set(src, weight);
429 dst[0].set(src, weight);
440 int chop_conic(const SkPoint src[3], SkConic dst[4], const SkScalar weight) { argument
442 int conicCnt = split_conic(src, dstTemp, weight);
/external/skqp/gm/
H A Dbeziereffects.cpp345 SkScalar weight = rand.nextRangeF(0.f, 2.f); variable
364 int cnt = chop_conic(controlPts, dst, weight);
365 GrPathUtils::getConicKLM(controlPts, weight, &klm);
417 int split_conic(const SkPoint src[3], SkConic dst[2], const SkScalar weight) { argument
421 dst[0].set(src, weight);
427 conic.set(src, weight);
429 dst[0].set(src, weight);
440 int chop_conic(const SkPoint src[3], SkConic dst[4], const SkScalar weight) { argument
442 int conicCnt = split_conic(src, dstTemp, weight);
/external/skia/samplecode/
H A DSampleAAGeometry.cpp49 SkDebugf(", %1.9g", weight());
210 SkScalar weight SK_INIT_TO_AVOID_WARNING;
231 weight = chop[1].fW;
247 weight = iter.conicWeight();
260 result.conicTo(pts[1], lastPt = pts[2], weight);
359 SkScalar weight = verb == SkPath::kConic_Verb ? iter.conicWeight() : 1; local
366 weight = w;
391 weight = w;
413 weight = w;
443 result.conicTo(pts[1], pts[2], weight);
[all...]
/external/skqp/samplecode/
H A DSampleAAGeometry.cpp49 SkDebugf(", %1.9g", weight());
210 SkScalar weight SK_INIT_TO_AVOID_WARNING;
231 weight = chop[1].fW;
247 weight = iter.conicWeight();
260 result.conicTo(pts[1], lastPt = pts[2], weight);
359 SkScalar weight = verb == SkPath::kConic_Verb ? iter.conicWeight() : 1; local
366 weight = w;
391 weight = w;
413 weight = w;
443 result.conicTo(pts[1], pts[2], weight);
[all...]
/external/opencv/cvaux/src/
H A Dcvhmm.cpp166 2/*for weight and log_var_val*/ ) * sizeof( float) );
175 all_states[i].weight = pointers; pointers += num_mix[i];
548 // weight - pointer to the wights of the Gaussian mixture
559 int vect_size, float* weight, int num_mix )
574 if ( weight[m] > 0.0)
581 prob = prob + weight[m]*exp((double)l_prob);
803 /* 3a. first mixture - simply scale by weight */
809 mp[l] *= state[l].weight[0];
824 mp[l + ofs] += mp[l] * state[l].weight[m];
863 state[m].log_var_val, vect_size, state[m].weight,
[all...]
/external/autotest/server/cros/ap_configurators/
H A Dlinksys_ap_configurator.py97 weight = 1 if enabled else 1000
98 self.add_item_to_command_list(self._set_radio, (enabled,), 1, weight)
H A Dlinksyse_single_band_configurator.py187 weight = 1 if enabled else 1000
188 self.add_item_to_command_list(self._set_radio, (enabled,), 1, weight)
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DAllocationStats.java81 * {@code baseline} measurement. The {@code baseline} measurement must have a lower weight
137 .weight(reps)
141 .weight(reps)
/external/kernel-headers/original/uapi/linux/
H A Dip_vs.h153 int weight; /* destination weight */ member in struct:ip_vs_dest_user
218 int weight; /* destination weight */ member in struct:ip_vs_dest_entry
380 IPVS_DEST_ATTR_WEIGHT, /* destination weight */

Completed in 2384 milliseconds

<<11121314151617181920>>