HomeSort by relevance Sort by last modified time
    Searched refs:Arcs (Results 1 - 11 of 11) sorted by null

  /external/lzma/CPP/7zip/UI/Common/
OpenArchive.h 53 CObjectVector<CArc> Arcs;
63 IInArchive *GetArchive() const { return Arcs.Back().Archive; }
OpenArchive.cpp 361 for (int i = Arcs.Size() - 1; i >= 0; i--)
363 RINOK(Arcs[i].Archive->Close());
371 while (!Arcs.IsEmpty())
372 Arcs.DeleteBack();
395 if (Arcs.Size() >= formatIndices.Size())
397 formatIndex = formatIndices[formatIndices.Size() - Arcs.Size() - 1];
399 else if (Arcs.Size() >= 32)
402 if (Arcs.IsEmpty())
408 Arcs.Add(arc);
412 const CArc &arc = Arcs.Back();
    [all...]
Extract.cpp 231 for (int v = 0; v < archiveLink.Arcs.Size(); v++)
233 const UString &s = archiveLink.Arcs[v].ErrorMessage;
240 CArc &arc = archiveLink.Arcs.Back();
Update.cpp 706 CArc &arc = arcLink.Arcs.Back();
822 RINOK(EnumerateInArchiveItems(censor, arcLink.Arcs.Back(), arcItems));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Arcs.java 28 public class Arcs extends GraphicsActivity {
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 502 for (int i = 0; i < archiveLink.Arcs.Size(); i++)
504 const CArc &arc = archiveLink.Arcs[i];
528 if (i != archiveLink.Arcs.Size() - 1)
534 UInt32 mainIndex = archiveLink.Arcs[i + 1].SubfileIndex;
564 const CArc &arc = archiveLink.Arcs.Back();
  /external/openfst/src/include/fst/
rmepsilon.h 83 // Compute arcs and final weight for state 's'
86 // Returns arcs of expanded state.
87 vector<Arc> &Arcs() { return arcs_; }
138 // in the arcs vector of the state being expanded. 'e' corresponds
146 vector<Arc> arcs_; // Arcs of state being expanded
302 vector<Arc> &arcs = rmeps_state.Arcs(); local
303 fst->ReserveArcs(state, arcs.size());
304 while (!arcs.empty()) {
305 fst->AddArc(state, arcs.back())
483 vector<A> &arcs = rmeps_state_.Arcs(); local
    [all...]
const-fst.h 19 // Simple concrete immutable FST whose states and arcs are each stored
41 // States and arcs each implemented by single arrays, templated on the
92 A *Arcs(StateId s) { return arcs_ + states_[s].pos; }
103 data->arcs = arcs_ + states_[s].pos;
111 // States implemented by array *states_ below, arcs by (single) *arcs_.
114 Unsigned pos; // Start of state's arcs in *arcs_
115 Unsigned narcs; // Number of arcs (per state)
132 MappedFile *arcs_region_; // Mapped file for arcs
134 A *arcs_; // Arcs representation
136 size_t narcs_; // Number of arcs (per FST
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmepsilon.h 68 // Compute arcs and final weight for state 's'
71 // Returns arcs of expanded state.
72 vector<Arc> &Arcs() { return arcs_; }
121 // in the arcs vector of the state being expanded. 'e' corresponds
129 vector<Arc> arcs_; // Arcs of state being expanded
252 vector<Arc> &arcs = rmeps_state.Arcs(); local
253 while (!arcs.empty()) {
254 fst->AddArc(state, arcs.back());
255 arcs.pop_back()
390 vector<A> &arcs = rmeps_state_.Arcs(); local
    [all...]
const-fst.h 17 // Simple concrete immutable FST whose states and arcs are each stored
30 // States and arcs each implemented by single arrays, templated on the
72 A *Arcs(StateId s) { return arcs_ + states_[s].pos; }
83 data->arcs = arcs_ + states_[s].pos;
89 // States implemented by array *states_ below, arcs by (single) *arcs_.
92 uint32 pos; // Start of state's arcs in *arcs_
93 uint32 narcs; // Number of arcs (per state)
105 // Byte alignment for states and arcs in file format
109 A *arcs_; // Arcs representation
111 size_t narcs_; // Number of arcs (per FST
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 770 unsigned Arcs =
773 Builder.getInt32(Arcs),

Completed in 389 milliseconds