HomeSort by relevance Sort by last modified time
    Searched refs:Push (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/openfst/src/include/fst/script/
push.h 22 #include <fst/push.h>
31 void Push(PushArgs1 *args) {
35 fst::Push(ofst, REWEIGHT_TO_FINAL, args->arg3, args->arg4);
37 fst::Push(ofst, REWEIGHT_TO_INITIAL, args->arg3, args->arg4);
46 void Push(PushArgs2 *args) {
51 fst::Push<Arc, REWEIGHT_TO_FINAL>(ifst, ofst, args->arg3, args->arg5);
53 fst::Push<Arc, REWEIGHT_TO_INITIAL>(ifst, ofst, args->arg3, args->arg5);
58 void Push(MutableFstClass *ofst, ReweightType type, float delta = kDelta,
62 void Push(const FstClass &ifst, MutableFstClass *ofst, uint32 flags,
  /external/openfst/src/script/
push.cc 19 #include <fst/script/push.h>
25 void Push(MutableFstClass *ofst, ReweightType dir, float delta,
28 Apply<Operation<PushArgs1> >("Push", ofst->ArcType(), &args);
32 void Push(const FstClass &ifst, MutableFstClass *ofst, uint32 flags,
34 if (!ArcTypesMatch(ifst, *ofst, "Push")) return;
37 Apply<Operation<PushArgs2> >("Push", ifst.ArcType(), &args);
41 REGISTER_FST_OPERATION(Push, StdArc, PushArgs1);
42 REGISTER_FST_OPERATION(Push, LogArc, PushArgs1);
43 REGISTER_FST_OPERATION(Push, Log64Arc, PushArgs1);
44 REGISTER_FST_OPERATION(Push, StdArc, PushArgs2)
    [all...]
  /external/chromium/base/
task_queue.h 22 // Push the specified task onto the queue. When the queue is run, the tasks
27 void Push(Task* task);
task_queue_unittest.cc 47 queue_->Push(task_to_queue_);
72 queue.Push(new TrackCallsTask(&ran_task1, &deleted_task1));
76 queue.Push(new TrackCallsTask(&ran_task2, &deleted_task2));
92 queue.Push(new TrackCallsTask(&ran_task1, &deleted_task1));
96 queue.Push(new TrackCallsTask(&ran_task2, &deleted_task2));
118 nested_queue->Push(
123 nested_queue->Push(
127 main_queue.Push(nested_queue.release());
task_queue.cc 18 void TaskQueue::Push(Task* task) {
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 96 Instruction *Push = 0;
101 Push = Inst;
104 // If this pop matches a push and nothing in between can autorelease,
106 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
108 DEBUG(dbgs() << "ObjCARCAPElim::OptimizeBB: Zapping push pop "
111 << " Push: " << *Push << "\n");
113 Push->eraseFromParent();
115 Push = 0
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 52 public void Push(object item)
  /external/chromium/chrome/browser/sync/util/
dbgq.h 19 void Push(const T& t) {
  /external/clang/test/Preprocessor/
_Pragma-in-macro-arg.c 4 #define A(desc) _Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Wparentheses\"") _Pragma("clang diagnostic pop")
23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
24 IGNORE_POPPUSH(_Pragma("clang diagnostic pop"), _Pragma("clang diagnostic push"),
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
push.h 0 // push.h
18 // Class to reweight/push an FST.
41 void Push(MutableFst<Arc> *fst, ReweightType type) {
57 void Push(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, uint32 ptype) {
61 Push(ofst, rtype);
  /external/openfst/src/bin/
fstpush.cc 22 #include <fst/script/push.h>
25 DEFINE_bool(push_weights, false, "Push weights");
26 DEFINE_bool(push_labels, false, "Push output labels");
31 DEFINE_bool(to_final, false, "Push/reweight to final (vs. to initial) states");
69 s::Push(*ifst, &ofst, flags, fst::REWEIGHT_TO_FINAL, FLAGS_delta);
71 s::Push(*ifst, &ofst, flags, fst::REWEIGHT_TO_INITIAL, FLAGS_delta);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 113 FIStackList.Push(Item);
115 FIStackList.Push(Item);
122 FIStackList.Push('Item 1');
123 FIStackList.Push('Item 2');
124 FIStackList.Push('Item 3');
  /external/regex-re2/re2/
bitstate.cc 44 void Push(int id, const char* p, int arg);
119 // Push the triple (id, p, arg) onto the stack, growing it if necessary.
120 void BitState::Push(int id, const char* p, int arg) {
146 Push(id0, p0, 0);
154 // Optimization: rather than push and pop,
155 // code that is going to Push and continue
158 // do the ShouldVisit check that Push
179 // Push(ip->out1(), p, 0);
180 // Push(ip->out(), p, 0);
183 // Pushing it here will inhibit that. Instead, re-push
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
ListStack`1.cs 93 public void Push(T item)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StackExtensions.cs 63 public static void push<T>( this Stack<T> stack, T obj ) method in class:Antlr.Runtime.JavaExtensions.StackExtensions
65 stack.Push( obj );
  /external/stressapptest/src/
queue.h 67 // Push a page onto the list.
68 int Push(struct page_entry *pe);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
ParseTreeBuilder.cs 51 callStack.Push(root);
87 callStack.Push(ruleNode);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnbufferedTokenStream.cs 115 _realTokens.Push(_realTokens.Peek());
128 _realTokens.Push(null);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
ParseTreeBuilder.cs 54 callStack.Push( root );
97 callStack.Push( ruleNode );
  /external/openfst/src/include/fst/
sparse-tuple-weight.h 75 Push(*it);
81 Push(key, w);
92 Push(it.Value());
127 Push(it.Value());
154 w.Push(it.Value().first, it.Value().second.Quantize(delta));
162 w.Push(it.Value().first, it.Value().second.Reverse());
186 inline void Push(const K &k, const W &w, bool default_value_check = true) {
187 Push(make_pair(k, w), default_value_check);
190 inline void Push(const Pair &p, bool default_value_check = true) {
283 ret->Push(k1, operator_mapper.Map(k1, v1, v2))
    [all...]
  /external/chromium/chrome/browser/net/
predictor_unittest.cc 502 queue.Push(first, UrlInfo::LEARNED_REFERAL_MOTIVATED);
504 queue.Push(second, UrlInfo::MOUSE_OVER_MOTIVATED);
512 queue.Push(first, UrlInfo::PAGE_SCAN_MOTIVATED);
514 queue.Push(second, UrlInfo::OMNIBOX_MOTIVATED);
525 // Push all the low priority items.
536 queue.Push(low1, UrlInfo::PAGE_SCAN_MOTIVATED);
537 queue.Push(low2, UrlInfo::UNIT_TEST_MOTIVATED);
538 queue.Push(low3, UrlInfo::LINKED_MAX_MOTIVATED);
539 queue.Push(low4, UrlInfo::OMNIBOX_MOTIVATED);
540 queue.Push(low5, UrlInfo::STARTUP_LIST_MOTIVATED)
    [all...]
  /external/v8/tools/
jsmin.py 76 def Push(self):
104 self.Push()
121 self.Push()
  /external/chromium/testing/gmock/test/
gmock-generated-function-mockers_test.cc 348 virtual void Push(const T& value) = 0;
360 MOCK_METHOD1_T(Push, void(const T& elem));
377 EXPECT_CALL(mock, Push(_));
385 mock.Push(5);
401 STDMETHOD_(void, Push)(const T& value) = 0;
413 MOCK_METHOD1_T_WITH_CALLTYPE(STDMETHODCALLTYPE, Push, void(const T& elem));
430 EXPECT_CALL(mock, Push(_));
438 mock.Push(5);
  /bionic/libc/arch-x86/bionic/
syscall.S 17 # Push the callee save registers.
18 push %ebx
19 push %esi
20 push %edi
21 push %ebp
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_lfstack.h 12 // The memory passed to Push() must not be ever munmap'ed.
36 void Push(T *p) {

Completed in 1733 milliseconds

1 2 3 4 5 6