Searched defs:weight (Results 1 - 25 of 141) sorted by relevance

123456

/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DTrack.java47 * @param weight The weight from 0 to 1 on how much to apply the track
51 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars); argument
H A DBoneTrack.java185 * @param weight the weight of the animation
190 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
246 if (weight != 1f) {
247 target.blendAnimTransforms(tempV, tempQ, scales != null ? tempS : null, weight);
331 public void setTime(float time, float weight, AnimControl control, AnimChannel channel) { argument
H A DPoseTrack.java103 private void applyFrame(Mesh target, int frameIndex, float weight){ argument
108 float poseWeight = frame.weights[i] * weight;
117 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
124 applyFrame(target, 0, weight);
126 applyFrame(target, times.length - 1, weight);
137 applyFrame(target, startFrame, blend * weight);
138 applyFrame(target, endFrame, (1f - blend) * weight);
H A DSpatialTrack.java68 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
/external/openfst/src/include/fst/
H A Dreweight.h39 // An arc of weight w, with an origin state of potential p and
73 typename Arc::Weight weight = potential[state]; local
74 if (weight != Weight::Zero()) {
85 arc.weight = Divide(Times(arc.weight, nextweight), weight,
88 arc.weight = Divide(Times(weight, arc.weight), nextweight,
93 fst->SetFinal(state, Divide(fst->Final(state), weight, DIVIDE_LEF
[all...]
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DSRVRecord.java26 private int weight; field in class:SRVRecord
35 * @param weight Relative weight for records with same priority
38 public SRVRecord(String fqdn, int port, int priority, int weight) { argument
40 if (weight < 0 || weight > 65535)
42 "DNS SRV records weight must be a 16-bit unsiged integer (i.e. between 0-65535. Weight was: "
43 + weight);
51 this.weight = weight;
[all...]
/external/speex/libspeex/
H A Dquant_lsp_bfin.h108 spx_word16_t *weight,
131 " I1 = %3;\n\t" /* %3: &weight[0] */
155 : "a" (x), "a" (weight), "b" (cdbk), "a" (nbVec), "a" (nbDim)
106 lsp_weight_quant( spx_word16_t *x, spx_word16_t *weight, const signed char *cdbk, int nbVec, int nbDim ) argument
/external/webkit/Source/WebCore/css/
H A DFontValue.h44 RefPtr<CSSPrimitiveValue> weight; member in class:WebCore::FontValue
/external/marisa-trie/lib/marisa/
H A Dkey.h14 void set_weight(double weight) { argument
15 weight_ = weight;
27 double weight() const { function in class:marisa::Key
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa::WRange
83 return lhs.weight() > rhs.weight();
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dkey.h16 void set_weight(double weight) { argument
17 weight_ = weight;
29 double weight() const { function in class:marisa_alpha::Key
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa_alpha::WRange
83 return lhs.weight() > rhs.weight();
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontPlatformDataWx.cpp57 static wxFontWeight fontWeightToWxFontWeight(FontWeight weight) argument
59 if (weight >= FontWeight600)
62 if (weight <= FontWeight300)
87 fontWeightToWxFontWeight(desc.weight()),
96 fontWeightToWxFontWeight(desc.weight()),
/external/ceres-solver/internal/ceres/
H A Dgraph.h53 // its weight is set to the new weight.
54 void AddVertex(const Vertex& vertex, double weight) { argument
59 vertex_weights_[vertex] = weight;
62 // Uses weight = 1.0. If vertex already exists, its weight is set to
96 void AddEdge(const Vertex& vertex1, const Vertex& vertex2, double weight) { argument
105 edge_weights_[make_pair(vertex1, vertex2)] = weight;
107 edge_weights_[make_pair(vertex2, vertex1)] = weight;
111 // Uses weight
[all...]
H A Dvisibility.cc139 const double weight = static_cast<double>(count) / local
141 graph->AddEdge(camera1, camera2, weight);
H A Dgraph_algorithms.h175 // order of weight, adding them to G_T if doing so does not create a
192 // weight. Also add the vertices of the graph to the Maximum
211 const double weight = graph.EdgeWeight(vertex1, vertex2); local
212 weighted_edges.push_back(make_pair(weight, make_pair(vertex1, vertex2)));
248 // the same weight as the original graph.
/external/llvm/include/llvm/Analysis/
H A DProfileDataLoader.h85 /// addEdgeWeight - Add 'weight' to the already stored execution count for
87 void addEdgeWeight(Edge e, unsigned weight) { argument
88 EdgeInformation[getFunction(e)][e] += weight;
115 /// A special value used to represent the weight of an edge which has not
/external/llvm/lib/Analysis/
H A DProfileDataLoaderPass.cpp1 //===- ProfileDataLoaderPass.cpp - Set branch weight metadata from prof ---===//
10 // This pass loads profiling data from a dump file and sets branch weight
45 /// This pass loads profiling data from a dump file and sets branch weight
98 unsigned weight = Counters[ReadCount]; local
99 assert(weight != ProfileDataLoader::Uncounted);
100 PB.addEdgeWeight(e, weight);
154 DEBUG(dbgs() << "---- Edge '" << edge << "' has weight "
158 // Set branch weight metadata. This will set branch probabilities of
161 // (it gives the unexectuted branch a weight of 1 for the purposes of
/external/smack/src/org/xbill/DNS/
H A DSRVRecord.java20 private int priority, weight, port; field in class:SRVRecord
34 * @param weight The weight, used to select between records at the same
41 int weight, int port, Name target)
45 this.weight = checkU16("weight", weight);
53 weight = in.readU16();
61 weight = st.getUInt16();
71 sb.append(weight
40 SRVRecord(Name name, int dclass, long ttl, int priority, int weight, int port, Name target) argument
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darc.h22 #include "fst/lib/float-weight.h"
23 #include "fst/lib/product-weight.h"
24 #include "fst/lib/string-weight.h"
36 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
47 Weight weight; // Transition weight member in struct:fst::StdArc
60 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
71 Weight weight; // Transition weight member in struct:fst::LogArc
85 : ilabel(i), olabel(o), weight(
100 Weight weight; // Transition weight member in class:fst::StringArc
134 Weight weight; // Transition weight member in struct:fst::GallicArc
159 Weight weight; // Transition weight member in struct:fst::ReverseArc
[all...]
H A Dprune.h52 // do not belong to a successful path whose weight is no more than
53 // 'opts.threshold' Times() the weight of the shortest path. Weights
102 Weight weight = Times(Times((*idistance)[state], arc.weight), local
104 if(less(ceiling, weight)) {
124 // 'fst' that do not belong to a successful path whose weight is no
125 // more than 'opts.threshold' Times() the weight of the shortest
137 // 'ifst' whose weight is no more than 'opts.threshold' Times() the
138 // weight of the shortest path. Weights need to be commutative and
210 Weight weight local
[all...]
/external/webkit/Source/WebCore/platform/graphics/freetype/
H A DFontCacheFreeType.cpp145 int fontWeightToFontconfigWeight(FontWeight weight) argument
147 switch (weight) {
176 // and font weight (we only match bold/non-bold here).
185 if (!FcPatternAddInteger(pattern.get(), FC_WEIGHT, fontWeightToFontconfigWeight(fontDescription.weight())))
/external/bzip2/
H A Dhuffman.c37 while (weight[tmp] < weight[heap[zz >> 1]]) { \
52 weight[heap[yy+1]] < weight[heap[yy]]) \
54 if (weight[tmp] < weight[heap[yy]]) break; \
76 Int32 weight [ BZ_MAX_ALPHA_SIZE * 2 ]; local
80 weight[i+1] = (freq[i] == 0 ? 1 : freq[i]) << 8;
88 weight[0] = 0;
105 weight[nNode
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DBlenderTrack.java125 public void setTime(float time, float weight, AnimControl control, argument
128 boneTrack.setTime(time, weight, control, channel, vars);
130 spatialTrack.setTime(time, weight, control, channel, vars);
/external/linux-tools-perf/util/
H A Dtop.c19 * Ordering weight: count-1 * count-2 * ... / count-n
23 double weight = sym->snap_count; local
27 return weight;
30 weight *= sym->count[counter];
32 weight /= (sym->count[counter] + 1);
34 return weight;
54 if (se->weight > iter->weight)
193 syme->weight = sym_weight(syme, top);

Completed in 566 milliseconds

123456