Searched defs:ofst (Results 76 - 100 of 102) sorted by relevance

12345

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmap.h158 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { argument
162 ofst->DeleteStates();
163 ofst->SetInputSymbols(ifst.InputSymbols());
164 ofst->SetOutputSymbols(ifst.OutputSymbols());
171 ofst->AddState();
176 superfinal = ofst->AddState();
177 ofst->SetFinal(superfinal, B::Weight::One());
182 ofst->SetStart(s);
185 ofst->AddArc(s, (*mapper)(aiter.Value()));
192 ofst
231 Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) argument
[all...]
H A Dreplace.h674 MutableFst<Arc> *ofst, typename Arc::Label root) {
677 *ofst = ReplaceFst<Arc>(ifst_array, opts);
672 Replace(const vector<pair<typename Arc::Label, const Fst<Arc>* > >& ifst_array, MutableFst<Arc> *ofst, typename Arc::Label root) argument
H A Dcompose.h896 MutableFst<Arc> *ofst,
900 *ofst = ComposeFst<Arc>(ifst1, ifst2, nopts);
902 Connect(ofst);
895 Compose(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, MutableFst<Arc> *ofst, const ComposeOptions &opts = ComposeOptions()) argument
H A Ddeterminize.h710 void Determinize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, argument
715 *ofst = DeterminizeFst<Arc>(ifst, nopts);
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest6.c526 static int cfShmLock(sqlite3_file *pFile, int ofst, int n, int flags){ argument
527 return sqlite3OsShmLock(((CrashFile*)pFile)->pRealFile, ofst, n, flags);
H A Dtest_multiplex.c851 int ofst, /* First lock to acquire or release */
859 return pSubOpen->pMethods->xShmLock(pSubOpen, ofst, n, flags);
849 multiplexShmLock( sqlite3_file *pConn, int ofst, int n, int flags ) argument
H A Dtest_quota.c541 int ofst, /* First lock to acquire or release */
546 return pSubOpen->pMethods->xShmLock(pSubOpen, ofst, n, flags);
539 quotaShmLock( sqlite3_file *pConn, int ofst, int n, int flags ) argument
H A Dos_os2.c824 ** Apply advisory locks for all n bytes beginning at ofst.
833 int ofst, /* Offset to first byte to be locked/unlocked */
845 area.lOffset = ofst;
1208 int ofst, /* First lock to acquire or release */
1219 assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK );
1227 mask = (u32)((1U<<(ofst+n)) - (1U<<ofst));
1228 assert( n>1 || mask==(1<<ofst) );
1245 rc = os2ShmSystemLock(pShmNode, _SHM_UNLCK, ofst
830 os2ShmSystemLock( os2ShmNode *pNode, int lockType, int ofst, int nByte ) argument
1206 os2ShmLock( sqlite3_file *id, int ofst, int n, int flags ) argument
[all...]
H A Dos_win.c1333 ** Apply advisory locks for all n bytes beginning at ofst.
1341 int ofst, /* Offset to first byte to be locked/unlocked */
1356 ovlp.Offset = ofst;
1592 int ofst, /* First lock to acquire or release */
1603 assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK );
1611 mask = (u16)((1U<<(ofst+n)) - (1U<<ofst));
1612 assert( n>1 || mask==(1<<ofst) );
1626 rc = winShmSystemLock(pShmNode, _SHM_UNLCK, ofst
1338 winShmSystemLock( winShmNode *pFile, int lockType, int ofst, int nByte ) argument
1590 winShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
[all...]
H A Dtest_osinst.c151 static int vfslogShmLock(sqlite3_file *pFile, int ofst, int n, int flags);
423 static int vfslogShmLock(sqlite3_file *pFile, int ofst, int n, int flags){ argument
428 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags);
H A Dtest_vfs.c826 int ofst,
837 sqlite3_snprintf(sizeof(zLock), zLock, "%d %d", ofst, n); local
864 u32 mask = (((1<<n)-1) << ofst);
824 tvfsShmLock( sqlite3_file *pFile, int ofst, int n, int flags ) argument
H A Dos_unix.c3614 ** Apply posix advisory locks for all bytes from ofst through ofst+n-1.
3622 int ofst, /* First byte of the locking range */
3642 f.l_start = ofst;
3653 mask = (1<<(ofst+n)) - (1<<ofst);
3656 OSTRACE(("unlock %d ok", ofst));
3660 OSTRACE(("read-lock %d ok", ofst));
3665 OSTRACE(("write-lock %d ok", ofst));
3671 OSTRACE(("unlock %d failed", ofst));
3619 unixShmSystemLock( unixShmNode *pShmNode, int lockType, int ofst, int n ) argument
3996 unixShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
[all...]
H A Dpager.c2230 i64 ofst = (pgno-1)*(i64)pPager->pageSize; local
2233 rc = sqlite3OsWrite(pPager->fd, (u8*)aData, pPager->pageSize, ofst);
/external/libhevc/decoder/
H A Dihevcd_parse_headers.c212 WORD32 ofst; local
219 ofst = ((shift * ps_wt_ofst->i2_chroma_weight_l0_cb[i]) >> ps_wt_ofst->i1_chroma_log2_weight_denom);
220 ofst = value - ofst + shift;
222 ps_wt_ofst->i2_chroma_offset_l0_cb[i] = CLIP_S8(ofst);
229 ofst = ((shift * ps_wt_ofst->i2_chroma_weight_l0_cr[i]) >> ps_wt_ofst->i1_chroma_log2_weight_denom);
230 ofst = value - ofst + shift;
232 ps_wt_ofst->i2_chroma_offset_l0_cr[i] = CLIP_S8(ofst);
289 WORD32 ofst; local
[all...]
/external/openfst/src/include/fst/
H A Darc-map.h200 void ArcMap(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { argument
204 ofst->DeleteStates();
207 ofst->SetInputSymbols(ifst.InputSymbols());
209 ofst->SetInputSymbols(0);
212 ofst->SetOutputSymbols(ifst.OutputSymbols());
214 ofst->SetOutputSymbols(0);
219 if (iprops & kError) ofst->SetProperties(kError, kError);
225 ofst->ReserveStates(CountStates(ifst) +
231 ofst->AddState();
235 superfinal = ofst
293 ArcMap(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) argument
[all...]
H A Dcompose.h700 MutableFst<Arc> *ofst,
707 *ofst = ComposeFst<Arc>(ifst1, ifst2, nopts);
711 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts);
715 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts);
719 *ofst = ComposeFst<Arc>(ifst1, ifst2, copts);
723 Connect(ofst);
699 Compose(const Fst<Arc> &ifst1, const Fst<Arc> &ifst2, MutableFst<Arc> *ofst, const ComposeOptions &opts = ComposeOptions()) argument
H A Ddeterminize.h980 void Determinize(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, argument
1002 Prune(dfst, ofst, popts);
1004 *ofst = DeterminizeFst<Arc>(ifst, nopts);
1005 Prune(ofst, opts.weight_threshold, opts.state_threshold);
1008 *ofst = DeterminizeFst<Arc>(ifst, nopts);
H A Drandgen.h611 RandGenVisitor(MutableFst<OArc> *ofst) : ofst_(ofst) {} argument
681 void RandGen(const Fst<IArc> &ifst, MutableFst<OArc> *ofst, argument
694 *ofst = rfst;
696 RandGenVisitor<IArc, OArc> rand_visitor(ofst);
704 void RandGen(const Fst<IArc> &ifst, MutableFst<OArc> *ofst) { argument
707 RandGen(ifst, ofst, opts);
H A Dfst.h929 template<class F, class G> void Cast(const F &ifst, G *ofst) { argument
930 ofst->SetImpl(reinterpret_cast<typename G::Impl *>(ifst.GetImpl()), false);
H A Dreplace.h1437 MutableFst<Arc> *ofst, typename Arc::Label root,
1441 *ofst = ReplaceFst<Arc>(ifst_array, opts);
1447 MutableFst<Arc> *ofst, typename Arc::Label root) {
1448 Replace(ifst_array, ofst, root, false);
1435 Replace(const vector<pair<typename Arc::Label, const Fst<Arc>* > >& ifst_array, MutableFst<Arc> *ofst, typename Arc::Label root, bool epsilon_on_replace) argument
1445 Replace(const vector<pair<typename Arc::Label, const Fst<Arc>* > >& ifst_array, MutableFst<Arc> *ofst, typename Arc::Label root) argument
/external/openfst/src/include/fst/extensions/pdt/
H A Dexpand.h379 // Writes the result in 'ofst'.
380 void Expand(MutableFst<A> *ofst, const Weight &threshold);
466 bool keep_parentheses_; // Keep parentheses in ofst?
471 vector<Weight> distance_; // Distance from initial state in efst_/ofst
472 vector<Weight> fdistance_; // Distance to final states in efst_/ofst
474 vector<uint8> flags_; // Status flags for states in efst_/ofst
869 // Writes the result in 'ofst'.
872 MutableFst<A> *ofst, const typename A::Weight &threshold) {
873 ofst_ = ofst;
936 MutableFst<Arc> *ofst,
871 Expand( MutableFst<A> *ofst, const typename A::Weight &threshold) argument
933 Expand( const Fst<Arc> &ifst, const vector<pair<typename Arc::Label, typename Arc::Label> > &parens, MutableFst<Arc> *ofst, const ExpandOptions<Arc> &opts) argument
965 Expand( const Fst<Arc> &ifst, const vector<pair<typename Arc::Label, typename Arc::Label> > &parens, MutableFst<Arc> *ofst, bool connect = true, bool keep_parentheses = false) argument
[all...]
H A Dshortest-path.h424 void ShortestPath(MutableFst<Arc> *ofst) { argument
425 Init(ofst);
429 if (error_) ofst->SetProperties(kError, kError);
455 void Init(MutableFst<Arc> *ofst);
486 void PdtShortestPath<Arc, Queue>::Init(MutableFst<Arc> *ofst) { argument
487 ofst_ = ofst;
488 ofst->DeleteStates();
489 ofst->SetInputSymbols(ifst_->InputSymbols());
490 ofst->SetOutputSymbols(ifst_->OutputSymbols());
779 MutableFst<Arc> *ofst,
776 ShortestPath(const Fst<Arc> &ifst, const vector<pair<typename Arc::Label, typename Arc::Label> > &parens, MutableFst<Arc> *ofst, const PdtShortestPathOptions<Arc, Queue> &opts) argument
786 ShortestPath(const Fst<Arc> &ifst, const vector<pair<typename Arc::Label, typename Arc::Label> > &parens, MutableFst<Arc> *ofst) argument
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp110 unsigned ofst; local
116 ofst = State.AllocateStack(ArgFlags.getByValSize(), 4);
117 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
131 ofst = State.AllocateStack(4, 4);
132 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
136 ofst = State.AllocateStack(8, 8);
137 State.addLoc(CCValAssign::getMem(ValNo, ValVT, ofst, LocVT, LocInfo));
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c3814 int ofst; local
3816 ofst = stp->iTknOfst;
3817 if( ofst==NO_OFFSET ) ofst = mnTknOfst - 1;
3819 fprintf(out, " %4d,", ofst);
3839 int ofst; local
3841 ofst = stp->iNtOfst;
3842 if( ofst==NO_OFFSET ) ofst = mnNtOfst - 1;
3844 fprintf(out, " %4d,", ofst);
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c22836 ** Apply advisory locks for all n bytes beginning at ofst.
22845 int ofst, /* Offset to first byte to be locked/unlocked */
22857 area.lOffset = ofst;
23220 int ofst, /* First lock to acquire or release */
23231 assert( ofst>=0 && ofst+n<=SQLITE_SHM_NLOCK );
23239 mask = (u32)((1U<<(ofst+n)) - (1U<<ofst));
23240 assert( n>1 || mask==(1<<ofst) );
23257 rc = os2ShmSystemLock(pShmNode, _SHM_UNLCK, ofst
22842 os2ShmSystemLock( os2ShmNode *pNode, int lockType, int ofst, int nByte ) argument
23218 os2ShmLock( sqlite3_file *id, int ofst, int n, int flags ) argument
27760 unixShmSystemLock( unixShmNode *pShmNode, int lockType, int ofst, int n ) argument
28137 unixShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
32457 winShmSystemLock( winShmNode *pFile, int lockType, int ofst, int nByte ) argument
32709 winShmLock( sqlite3_file *fd, int ofst, int n, int flags ) argument
38660 i64 ofst = (pgno-1)*(i64)pPager->pageSize; local
[all...]

Completed in 992 milliseconds

12345