/external/chromium_org/media/base/ |
D | decoder_buffer_queue_unittest.cc | 39 queue.Push(CreateBuffer(0)); in TEST() 45 queue.Push(CreateBuffer(0)); in TEST() 46 queue.Push(CreateBuffer(1)); in TEST() 59 queue.Push(CreateBuffer(0)); in TEST() 62 queue.Push(CreateBuffer(1)); in TEST() 65 queue.Push(CreateBuffer(2)); in TEST() 68 queue.Push(CreateBuffer(4)); in TEST() 86 queue.Push(CreateBuffer(10)); in TEST() 87 queue.Push(CreateBuffer(12)); in TEST() 91 queue.Push(CreateBuffer(8)); in TEST() [all …]
|
D | audio_fifo_unittest.cc | 35 TEST_F(AudioFifoTest, Push) { in TEST_F() argument 43 fifo.Push(bus.get()); in TEST_F() 51 fifo.Push(bus.get()); in TEST_F() 64 fifo.Push(bus.get()); in TEST_F() 72 fifo.Push(bus.get()); in TEST_F() 80 fifo.Push(bus.get()); in TEST_F() 97 fifo.Push(bus.get()); in TEST_F() 117 fifo.Push(bus2.get()); in TEST_F() 120 fifo.Push(bus2.get()); in TEST_F() 146 fifo.Push(bus.get()); in TEST_F() [all …]
|
D | audio_block_fifo_unittest.cc | 21 Push(fifo, frames_to_push, channels); in PushAndVerify() 29 void Push(AudioBlockFifo* fifo, int frames_to_push, int channels) { in Push() function in media::AudioBlockFifoTest 35 fifo->Push(data.get(), frames_to_push, bytes_per_sample); in Push() 66 TEST_F(AudioBlockFifoTest, Push) { in TEST_F() argument 175 Push(&fifo, frames, channels); in TEST_F() 197 Push(&fifo, frames_to_push, channels); in TEST_F() 222 Push(&fifo, frames - available_frames, channels); in TEST_F()
|
D | serial_runner.h | 37 void Push(const base::Closure& closure); 38 void Push(const BoundClosure& bound_fn); 39 void Push(const BoundPipelineStatusCB& bound_fn);
|
/external/chromium_org/chrome/renderer/net/ |
D | predictor_queue_unittest.cc | 26 bool Push(void); // Push the string value of next number. 46 bool DnsQueueSequentialTester::Push(void) { in Push() function in __anonc0df880e0111::DnsQueueSequentialTester 52 buffer_->Push(value.str().c_str(), value.str().size()) : in Push() 53 buffer_->Push(value.str()); in Push() 87 if (!tester.Push()) in TEST() 107 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push(big_string, 3)) in TEST() 109 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push(big_string, 0)) in TEST() 111 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push(big_string, 5)) in TEST() 134 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push(input_string)); in TEST() 136 EXPECT_EQ(DnsQueue::SUCCESSFUL_PUSH, buffer.Push("Hi There")); in TEST() [all …]
|
D | predictor_queue.h | 60 PushResult Push(const char* source, const size_t length); 62 PushResult Push(std::string source) { in Push() function 63 return Push(source.c_str(), source.length()); in Push()
|
/external/openfst/src/script/ |
D | push.cc | 25 void Push(MutableFstClass *ofst, ReweightType dir, float delta, in Push() function 32 void Push(const FstClass &ifst, MutableFstClass *ofst, uint32 flags, in Push() function 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); 45 REGISTER_FST_OPERATION(Push, LogArc, PushArgs2); 46 REGISTER_FST_OPERATION(Push, Log64Arc, PushArgs2);
|
/external/openfst/src/include/fst/script/ |
D | push.h | 31 void Push(PushArgs1 *args) { in Push() function 35 fst::Push(ofst, REWEIGHT_TO_FINAL, args->arg3, args->arg4); in Push() 37 fst::Push(ofst, REWEIGHT_TO_INITIAL, args->arg3, args->arg4); in Push() 46 void Push(PushArgs2 *args) { in Push() function 51 fst::Push<Arc, REWEIGHT_TO_FINAL>(ifst, ofst, args->arg3, args->arg5); in Push() 53 fst::Push<Arc, REWEIGHT_TO_INITIAL>(ifst, ofst, args->arg3, args->arg5); in Push() 58 void Push(MutableFstClass *ofst, ReweightType type, float delta = kDelta, 62 void Push(const FstClass &ifst, MutableFstClass *ofst, uint32 flags,
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
D | job_queue_unittest.cc | 21 queue.Push(101, LOW_PRIORITY); in TEST() 22 queue.Push(102, HIGH_PRIORITY); in TEST() 23 queue.Push(103, LOW_PRIORITY); in TEST() 24 queue.Push(104, HIGH_PRIORITY); in TEST() 52 queue.Push(105, LOW_PRIORITY); in TEST() 79 queue.Push(101, LOW_PRIORITY); in TEST() 80 queue.Push(102, HIGH_PRIORITY); in TEST() 81 queue.Push(103, LOW_PRIORITY); in TEST() 82 queue.Push(104, HIGH_PRIORITY); in TEST()
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page_func.cpp | 44 void Push(FX_FLOAT value); 45 void Push(int value) in Push() function in CPDF_PSEngine 47 Push((FX_FLOAT)value); in Push() 81 pEngine->Push(*(FX_FLOAT*)m_Operators[i + 1]); in Execute() 114 void CPDF_PSEngine::Push(FX_FLOAT v) in Push() function in CPDF_PSEngine 199 Push(d1 + d2); in DoOperator() 204 Push(d1 - d2); in DoOperator() 209 Push(d1 * d2); in DoOperator() 214 Push(d1 / d2); in DoOperator() 219 Push(i1 / i2); in DoOperator() [all …]
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCAPElim.cpp | 97 Instruction *Push = nullptr; in OptimizeBB() local 102 Push = Inst; in OptimizeBB() 107 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) { in OptimizeBB() 112 << " Push: " << *Push << "\n"); in OptimizeBB() 114 Push->eraseFromParent(); in OptimizeBB() 116 Push = nullptr; in OptimizeBB() 120 Push = nullptr; in OptimizeBB()
|
/external/chromium_org/third_party/webrtc/modules/audio_device/android/ |
D | single_rw_fifo_unittest.cc | 46 void Push(int number_of_buffers) { in Push() function in webrtc::SingleRwFifoTest 50 fifo_.Push(data); in Push() 107 TEST_F(SingleRwFifoTest, Push) { in TEST_F() argument 108 Push(kCapacity); in TEST_F() 113 Push(available_); in TEST_F() 118 Push(1); in TEST_F() 122 Push(1); in TEST_F()
|
/external/chromium_org/v8/src/ic/x64/ |
D | handler-compiler-x64.cc | 97 __ Push(name); in PushInterceptorArguments() local 101 __ Push(kScratchRegister); in PushInterceptorArguments() local 102 __ Push(receiver); in PushInterceptorArguments() local 103 __ Push(holder); in PushInterceptorArguments() local 125 __ Push(receiver); in GenerateFastApiCall() local 131 __ Push(arg); in GenerateFastApiCall() local 212 __ Push(value()); in GenerateStoreViaSetter() local 221 __ Push(receiver); in GenerateStoreViaSetter() local 222 __ Push(value()); in GenerateStoreViaSetter() local 261 __ Push(receiver); in GenerateLoadViaGetter() local [all …]
|
/external/chromium_org/v8/src/x64/ |
D | builtins-x64.cc | 41 __ Push(rdi); in Generate_Adaptor() local 58 __ Push(rdi); in CallRuntimePassFunction() local 60 __ Push(rdi); in CallRuntimePassFunction() local 120 __ Push(rbx); in Generate_JSConstructStubHelper() local 125 __ Push(rax); in Generate_JSConstructStubHelper() local 128 __ Push(rdi); in Generate_JSConstructStubHelper() local 179 __ Push(rax); in Generate_JSConstructStubHelper() local 180 __ Push(rdi); in Generate_JSConstructStubHelper() local 182 __ Push(rdi); // constructor in Generate_JSConstructStubHelper() local 354 __ Push(rdi); in Generate_JSConstructStubHelper() local [all …]
|
D | full-codegen-x64.cc | 168 __ Push(rdx); in Generate() local 177 __ Push(rdx); in Generate() local 191 __ Push(rdi); in Generate() local 192 __ Push(info->scope()->GetScopeInfo()); in Generate() local 200 __ Push(rdi); in Generate() local 242 __ Push(rdi); in Generate() local 244 __ Push(Operand(rbp, JavaScriptFrameConstants::kFunctionOffset)); in Generate() local 251 __ Push(rdx); in Generate() local 252 __ Push(Smi::FromInt(num_parameters)); in Generate() local 385 __ Push(rax); in EmitReturnSequence() local [all …]
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | 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/chromium_org/v8/src/arm64/ |
D | builtins-arm64.cc | 66 __ Push(x1); in Generate_Adaptor() local 227 __ Push(function); // Preserve the function. in Generate_StringConstructCode() local 231 __ Push(arg); in Generate_StringConstructCode() local 251 __ Push(argument); in Generate_StringConstructCode() local 263 __ Push(x1, x1); in CallRuntimePassFunction() local 328 __ Push(x2); in Generate_JSConstructStubHelper() local 335 __ Push(argc, constructor); in Generate_JSConstructStubHelper() local 381 __ Push(constructor, init_map, constructor); in Generate_JSConstructStubHelper() local 542 __ Push(x4); in Generate_JSConstructStubHelper() local 543 __ Push(constructor); // Argument for Runtime_NewObject. in Generate_JSConstructStubHelper() local [all …]
|
D | full-codegen-arm64.cc | 201 __ Push(x1, x10); in Generate() local 209 __ Push(x1); in Generate() local 259 __ Push(x3, x2, x1); in Generate() local 409 __ Push(result_register()); in EmitReturnSequence() local 425 __ Push(x0); in EmitReturnSequence() local 477 __ Push(result_register()); in Plug() local 504 __ Push(result_register()); in Plug() local 537 __ Push(result_register()); in Plug() local 636 __ Push(x10); in Plug() local 662 __ Push(x10); in Plug() local [all …]
|
/external/llvm/test/CodeGen/Mips/msa/ |
D | frameindex.ll | 21 %2 = alloca [496 x i8] ; Push the frame right up to 512 bytes 36 %2 = alloca [497 x i8] ; Push the frame just over 512 bytes 53 %2 = alloca [32752 x i8] ; Push the frame right up to 32768 bytes 72 %2 = alloca [32753 x i8] ; Push the frame just over 32768 bytes 124 %2 = alloca [1008 x i8] ; Push the frame right up to 1024 bytes 139 %2 = alloca [1009 x i8] ; Push the frame just over 1024 bytes 156 %2 = alloca [32752 x i8] ; Push the frame right up to 32768 bytes 175 %2 = alloca [32753 x i8] ; Push the frame just over 32768 bytes 227 %2 = alloca [2032 x i8] ; Push the frame right up to 2048 bytes 242 %2 = alloca [2033 x i8] ; Push the frame just over 2048 bytes [all …]
|
/external/regex-re2/re2/ |
D | bitstate.cc | 44 void Push(int id, const char* p, int arg); 120 void BitState::Push(int id, const char* p, int arg) { in Push() function in re2::BitState 146 Push(id0, p0, 0); in TrySearch() 187 Push(id, p, 1); // come back when we're done in TrySearch() 204 Push(ip->out1(), p, 0); in TrySearch() 210 Push(ip->out(), end, 0); in TrySearch() 231 Push(id, cap_[ip->cap()], 1); // come back when we're done in TrySearch()
|
/external/chromium_org/third_party/re2/re2/ |
D | bitstate.cc | 44 void Push(int id, const char* p, int arg); 120 void BitState::Push(int id, const char* p, int arg) { in Push() function in re2::BitState 146 Push(id0, p0, 0); in TrySearch() 187 Push(id, p, 1); // come back when we're done in TrySearch() 204 Push(ip->out1(), p, 0); in TrySearch() 210 Push(ip->out(), end, 0); in TrySearch() 231 Push(id, cap_[ip->cap()], 1); // come back when we're done in TrySearch()
|
/external/openfst/src/include/fst/ |
D | sparse-tuple-weight.h | 75 Push(*it); in SparseTupleWeight() 81 Push(key, w); in SparseTupleWeight() 92 Push(it.Value()); in SparseTupleWeight() 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()); in 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)); in SparseTupleWeightMap() [all …]
|
/external/chromium_org/v8/src/compiler/ |
D | ast-graph-builder.cc | 271 environment()->Push(value); in ProduceValue() 276 environment()->Push(owner()->BuildToBoolean(value)); in ProduceValue() 317 return environment()->Push(jsgraph()->NullConstant()); in VisitForValueOrNull() 642 environment()->Push(obj); in VisitForInStatement() 644 environment()->Push(obj); in VisitForInStatement() 649 environment()->Push(obj); in VisitForInStatement() 650 environment()->Push(cache_type); in VisitForInStatement() 656 environment()->Push(cache_type); in VisitForInStatement() 657 environment()->Push(cache_array); in VisitForInStatement() 673 environment()->Push(cache_type); in VisitForInStatement() [all …]
|
/external/chromium_org/content/browser/service_worker/ |
D | service_worker_job_coordinator.cc | 21 ServiceWorkerRegisterJobBase* ServiceWorkerJobCoordinator::JobQueue::Push( in Push() function in content::ServiceWorkerJobCoordinator::JobQueue 80 job_queues_[pattern].Push(job.Pass())); in Register() 91 job_queues_[pattern].Push(job.Pass())); in Unregister() 99 job_queues_[registration->pattern()].Push( in Update()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | push.h | 41 void Push(MutableFst<Arc> *fst, ReweightType type) { in Push() function 57 void Push(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, uint32 ptype) { in Push() function 61 Push(ofst, rtype); in Push()
|