HomeSort by relevance Sort by last modified time
    Searched defs:Weight (Results 126 - 145 of 145) sorted by null

1 2 3 4 56

  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 318 /// \brief Unscaled probability weight.
320 /// Probability weight for an edge in the graph (including the
327 /// In addition to the raw weight amount, Weight stores the type of the edge
331 struct Weight {
336 Weight() : Type(Local), Amount(0) {}
339 /// \brief Distribution of unscaled probability weight.
341 /// Distribution of unscaled probability weight to a set of successors.
348 typedef SmallVector<Weight, 4> WeightList;
355 add(Node, Amount, Weight::Local)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h     [all...]
  /external/llvm/lib/Transforms/Scalar/
SampleProfile.cpp 15 // This pass generates branch weight annotations on the IR:
19 // The weight of each edge is the weight of the target block for
20 // that edge. The weight of a block B is computed as the maximum
178 /// The weight of a basic block is defined to be the maximum
338 /// \brief Print the weight of edge \p E on stream \p OS.
343 OS << "weight[" << E.first->getName() << "->" << E.second->getName()
358 /// \brief Print the weight of block \p BB on stream \p OS.
363 OS << "weight[" << BB->getName() << "]: " << BlockWeights[BB] << "\n";
530 /// \brief Get the weight for an instruction
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.h 404 // Weight assigned to this RegUnit for estimating register pressure.
407 unsigned Weight;
418 RegUnit() : Weight(0), RegClassUnitSetsIdx(0) {
434 unsigned Weight; // Cache the sum of all unit weights.
437 RegUnitSet() : Weight(0), Order(0) {}
510 // Compute a weight for each register unit created during getSubRegs.
587 unsigned newRegUnit(unsigned Weight) {
589 RegUnits.back().Weight = Weight;
595 // register additional weight but don't affect aliasing
    [all...]
CodeGenRegisters.cpp 536 unsigned Weight = 0;
539 Weight += RegBank.getRegUnit(*I).Weight;
541 return Weight;
    [all...]
  /external/openfst/src/include/fst/
arc-map.h 41 // A final weight is mapped into a final weight. An error
45 // A final weight is mapped to an arc to the superfinal state
46 // when the result cannot be represented as a final weight.
50 // A final weight is mapped to an arc to the superfinal state
51 // unless the result can be represented as a final weight of weight
83 // // form A(0, 0, weight, kNoStateId).
114 typedef typename A::Weight Weight;
    [all...]
cache.h 93 // you must set the final weight even if the state is non-final to
108 typedef typename Arc::Weight Weight;
219 void SetFinal(StateId s, Weight w) {
372 // Is the final weight of state s cached?
394 Weight Final(StateId s) const {
473 static const uint32 kCacheFinal = 0x0001; // Final weight has been cached
613 typedef typename A::Weight Weight;
616 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {
    [all...]
compact-fst.h 62 // non-Zero() final weight as a transition). A typical example is a
127 // 'Final(s) != Weight::Zero()') is stored first.
213 typedef typename A::Weight Weight;
226 if (fst.Final(s) != Weight::Zero()) ++nfinals;
248 if (fst.Final(s) != Weight::Zero())
284 typedef typename Arc::Weight Weight;
288 // For strings, allow implicit final weight.
319 Weight::One(), kNoStateId))
    [all...]
determinize.h 39 #include <fst/factor-weight.h>
57 typedef W Weight;
70 typedef StringWeight<L, S> Weight;
72 Weight operator()(const Weight &w1, const Weight &w2) const {
77 FSTERROR() << "LabelCommonDivisor: Weight needs to be left semiring";
78 return Weight::NoWeight();
80 return Weight::One();
81 } else if (w1 == Weight::Zero())
133 Weight weight; \/\/ Residual weight member in struct:fst::DeterminizeElement
    [all...]
fst.h 165 typedef typename A::Weight Weight;
172 virtual Weight Final(StateId) const = 0; // State's final weight
384 static const uint32 kArcWeightValue = 0x0004; // " " " weight
542 typename F::Arc::Weight Final(const F &fst, typename F::Arc::StateId s) {
564 typename A::Weight Final(const Fst<A> &fst, typename A::StateId s) {
605 typedef typename A::Weight Weight;
838 typedef typename Arc::Weight Weight
    [all...]
replace.h 329 typedef typename A::Weight Weight;
496 // return final weight of state (kInfWeight means state is not final)
497 Weight Final(StateId s) {
504 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth() == 0)
507 SetFinal(s, Weight::Zero());
698 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth()) {
709 arcp->weight = fst->Final(fst_state);
733 *arcp = A(arc.ilabel, arc.olabel, arc.weight, nextstate);
753 *arcp = A(ilabel, 0, arc.weight, nt_nextstate)
    [all...]
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 46 typedef typename A::Weight Weight;
78 typedef typename A::Weight Weight;
140 Weight Final(StateId state) const {
144 return Weight::Zero();
180 Weight weight; local
191 offset = (offset + sizeof(weight) - 1) & ~(sizeof(weight) - 1)
405 Weight weight; local
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
expand.h 80 typedef typename A::Weight Weight;
137 Weight Final(StateId s) {
140 Weight w = fst_->Final(tuple.state_id);
141 if (w != Weight::Zero() && tuple.stack_id == 0)
144 SetFinal(s, Weight::Zero());
232 typedef typename A::Weight Weight;
340 typedef typename A::Weight Weight;
    [all...]
shortest-path.h 71 typedef typename Arc::Weight Weight;
113 SearchData() : distance(Weight::Zero()),
118 Weight distance; // Distance to this state from PDT 'start' state
148 Weight Distance(SearchState s) const {
153 Weight Distance(const ParenSpec &paren) const {
178 void SetDistance(SearchState s, Weight w) {
183 void SetDistance(const ParenSpec &paren, Weight w) {
348 = Arc(kNoLabel, kNoLabel, Weight::Zero(), kNoStateId);
383 typedef typename Arc::Weight Weight
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compose.h 100 typedef typename A::Weight Weight;
136 Weight Final(StateId s) {
138 Weight final = ComputeFinal(s);
176 virtual Weight ComputeFinal(StateId s) = 0;
329 typedef typename A::Weight Weight;
434 arc.weight = Times(arcb.weight, arca.weight);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
BaseAccountType.java 102 protected interface Weight {
151 R.string.nameLabelsGroup, Weight.NONE, true));
181 R.string.nameLabelsGroup, Weight.NONE, true));
222 R.string.name_phonetic, Weight.NONE, true));
242 R.string.nicknameLabelsGroup, Weight.NICKNAME, true));
258 Weight.PHONE, true));
297 Weight.EMAIL, true));
317 R.string.postalLabelsGroup, Weight.STRUCTURED_POSTAL, true));
340 Weight.IM, true));
371 R.string.organizationLabelsGroup, Weight.ORGANIZATION, true))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9core.h 101 UINT Weight;
115 UINT Weight;
482 HRESULT WINAPI D3DXCreateFontA(struct IDirect3DDevice9 *device, INT height, UINT width, UINT weight,
485 HRESULT WINAPI D3DXCreateFontW(struct IDirect3DDevice9 *device, INT height, UINT width, UINT weight,
ksproxy.h 205 ULONG Weight;
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 

Completed in 599 milliseconds

1 2 3 4 56