Searched defs:weight (Results 126 - 150 of 274) sorted by relevance

1234567891011

/external/jmdns/src/javax/jmdns/impl/
H A DDNSRecord.java646 public Service(String name, DNSRecordClass recordClass, boolean unique, int ttl, int priority, int weight, int port, String server) { argument
649 this._weight = weight;
696 * @return the weight
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/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devent.h113 u64 weight; member in struct:perf_sample
H A Dhist.c203 u64 weight)
207 he_stat->weight += weight;
219 dest->weight += src->weight;
226 /* XXX need decay for weight too? */
344 u64 weight)
366 he_stat__add_period(&he->stat, period, weight);
410 u64 weight)
420 .weight
202 he_stat__add_period(struct he_stat *he_stat, u64 period, u64 weight) argument
340 add_hist_entry(struct hists *hists, struct hist_entry *entry, struct addr_location *al, u64 period, u64 weight) argument
405 __hists__add_mem_entry(struct hists *self, struct addr_location *al, struct symbol *sym_parent, struct mem_info *mi, u64 period, u64 weight) argument
435 __hists__add_branch_entry(struct hists *self, struct addr_location *al, struct symbol *sym_parent, struct branch_info *bi, u64 period, u64 weight) argument
466 __hists__add_entry(struct hists *self, struct addr_location *al, struct symbol *sym_parent, u64 period, u64 weight) argument
[all...]
/external/opencv/cvaux/src/
H A Dcv3dtracker.cpp443 int weight = 0; local
482 weight++;
486 CvPoint3D32f center = total/weight;
/external/openfst/src/include/fst/
H A Dencode.h52 // encoding and decoding of label/weight tuples used for encoding
61 // Encoded data consists of arc input/output labels and arc weight
65 : ilabel(ilabel_), olabel(olabel_), weight(weight_) {}
67 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {}
71 Weight weight; member in struct:fst::EncodeTable::Tuple
80 x->weight == y->weight);
104 hash = hash << lshift ^ hash >> rshift ^ x->weight.Hash();
134 flags_ & kEncodeWeights ? arc.weight
[all...]
/external/skia/src/effects/
H A DSkMagnifierImageFilter.cpp151 builder->fsCodeAppend("\t\tfloat weight = 0.0;\n");
162 builder->fsCodeAppend("\t\tvec2 mix_coord = mix(coord, zoom_coord, weight);\n");
317 SkScalar weight = 0; local
330 weight = SkMinScalar(SkScalarSquare(dist), SK_Scalar1);
334 weight = SkMinScalar(sqDist, SK_Scalar1);
337 SkScalar x_interp = SkScalarMul(weight, (fSrcRect.x() + x * inv_x_zoom)) +
338 (SK_Scalar1 - weight) * x;
339 SkScalar y_interp = SkScalarMul(weight, (fSrcRect.y() + y * inv_y_zoom)) +
340 (SK_Scalar1 - weight) * y;
/external/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp23 size += sizeof(int32_t) + sizeof(int32_t) + sizeof(uint8_t); // weight, width, italic
31 buffer.write32(fStyle.weight());
48 uint32_t strLen, weight, width; local
50 (void)buffer.readU32(&weight);
55 fStyle = SkFontStyle(weight, width, slant);
/external/srec/srec/Recognizer/include/
H A DSR_RecognizerImpl.h356 * Grammar weight.
358 unsigned int weight; member in struct:GrammarBag_t
428 unsigned int weight);
/external/srec/srec_jni/
H A Dandroid_speech_srec_Recognizer.cpp205 (JNIEnv *env, jclass clazz, jlong recognizer, jlong grammar, jstring ruleName, jint weight) {
207 checkEsrError(env, SR_RecognizerActivateRule((SR_Recognizer*)recognizer, (SR_Grammar*)grammar, rn, weight));
353 (JNIEnv *env, jclass clazz, jlong grammar, jstring slot, jstring word, jstring pronunciation, jint weight, jstring tag) {
362 checkEsrError(env, SR_GrammarAddWordToSlot((SR_Grammar*)grammar, sl, wo, pr, weight, ta));
204 Java_android_speech_srec_Recognizer_SR_1RecognizerActivateRule(JNIEnv *env, jclass clazz, jlong recognizer, jlong grammar, jstring ruleName, jint weight) argument
352 Java_android_speech_srec_Recognizer_SR_1GrammarAddWordToSlot(JNIEnv *env, jclass clazz, jlong grammar, jstring slot, jstring word, jstring pronunciation, jint weight, jstring tag) argument
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dbandwidth_estimator.c143 float weight = 0.0f; local
349 /* constant weight after initiation part */
350 weight = 0.01f;
354 /* weight decreases with number of updates */
355 weight = 1.0f / (float) bwest_str->count_tot_updates_rec;
386 bwest_str->rec_bw_inv = weight * curr_bw_inv +
387 (1.0f - weight) * bwest_str->rec_bw_inv;
407 bwest_str->rec_jitter = weight * arr_time_noise_abs +
408 (1.0f - weight) * bwest_str->rec_jitter;
605 const float weight local
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_framer.h291 uint8 weight,
581 SpdyPriority MapWeightToPriority(uint8 weight);
289 OnPriority(SpdyStreamId stream_id, SpdyStreamId parent_stream_id, uint8 weight, bool exclusive) argument
/external/chromium_org/third_party/freetype/src/cff/
H A Dcfftypes.h112 FT_UInt weight; member in struct:CFF_FontRecDictRec_
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtptngen_impl.h109 int16_t weight; member in struct:dtTypeElem
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c226 * Helper to compute the first coord and the weight for
252 /* convert to int, compute lerp weight */
264 * \param weight_out returns linear interpolation weight
282 LLVMValueRef coord0, coord1, weight; local
290 /* convert to int, compute lerp weight */
291 lp_build_ifloor_fract(coord_bld, coord, &coord0, &weight);
301 &coord0, &weight);
321 /* convert to int, compute lerp weight */
322 lp_build_ifloor_fract(coord_bld, coord, &coord0, &weight);
341 /* convert to int, compute lerp weight */
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_mpeg12_decoder.c278 unsigned field_select_mask, unsigned weight)
290 mv.top.weight = weight;
294 mv.bottom.weight = weight;
303 mv.top.weight = weight;
309 mv.bottom.weight = weight;
318 mv.top.weight
277 MotionVectorToPipe(const struct pipe_mpeg12_macroblock *mb, unsigned vector, unsigned field_select_mask, unsigned weight) argument
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathUtils.cpp311 void GrPathUtils::getConicKLM(const SkPoint p[3], const SkScalar weight, SkScalar klm[9]) { argument
312 const SkScalar w2 = 2.f * weight;
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontMgr_win_dw.cpp630 DWRITE_FONT_WEIGHT weight = (styleBits & SkTypeface::kBold) local
637 HRNM(fontFamily->GetFirstMatchingFont(weight, stretch, italic, &font),
680 int weight = font->GetWeight(); local
683 *fs = SkFontStyle(weight, width, slant);
707 DWRITE_FONT_WEIGHT weight = (DWRITE_FONT_WEIGHT)pattern.weight(); local
712 HRNM(fFontFamily->GetFirstMatchingFont(weight, width, slant, &font),
/external/chromium_org/third_party/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp662 void SkDebugCanvas::outputConicPoints(const SkPoint* pts, SkScalar weight) { argument
665 this->outputScalar(weight);
/external/freetype/src/cff/
H A Dcfftypes.h112 FT_UInt weight; member in struct:CFF_FontRecDictRec_
/external/icu/icu4c/source/i18n/
H A Ddtptngen_impl.h109 int16_t weight; member in struct:dtTypeElem
/external/libnl/lib/route/
H A Dlink.c474 nl_dump(p, "txqlen %u weight %u ", link->l_txqlen, link->l_weight);
720 __ADD(LINK_ATTR_WEIGHT, weight)
1305 void rtnl_link_set_weight(struct rtnl_link *link, unsigned int weight) argument
1307 link->l_weight = weight;
/external/libvorbis/lib/
H A Dfloor1.c479 double weight = (a[i].bn+a[i].an)*info->twofitweight/(a[i].an+1)+1.; local
481 xb+=a[i].xb + a[i].xa * weight;
482 yb+=a[i].yb + a[i].ya * weight;
483 x2b+=a[i].x2b + a[i].x2a * weight;
484 y2b+=a[i].y2b + a[i].y2a * weight;
485 xyb+=a[i].xyb + a[i].xya * weight;
486 bn+=a[i].bn + a[i].an * weight;
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-diff.c159 pr_err("Failed: wrong weight data, use 'wdiff:w1,w2'\n");
307 u64 weight)
309 if (__hists__add_entry(self, al, NULL, period, weight) != NULL)
331 if (hists__add_entry(&evsel->hists, &al, sample->period, sample->weight)) {
305 hists__add_entry(struct hists *self, struct addr_location *al, u64 period, u64 weight) argument
/external/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp488 void MachineBasicBlock::addSuccessor(MachineBasicBlock *succ, uint32_t weight) { argument
492 if (weight != 0 && Weights.empty())
495 if (weight != 0 || !Weights.empty())
496 Weights.push_back(weight);
561 // Update its weight instead of adding a duplicate edge.
1119 /// getSuccWeight - Return weight of the edge from this block to MBB.
1128 /// Set successor weight of a given iterator.
1129 void MachineBasicBlock::setSuccWeight(succ_iterator I, uint32_t weight) { argument
1132 *getWeightIterator(I) = weight;
1139 assert(Weights.size() == Successors.size() && "Async weight lis
[all...]

Completed in 573 milliseconds

1234567891011