Searched defs:stub (Results 76 - 100 of 162) sorted by relevance

1234567

/external/chromium_org/v8/src/x64/
H A Dcode-stubs-x64.h303 static Mode GetMode(Code* stub) { argument
304 byte first_instruction = stub->instruction_start()[0];
305 byte second_instruction = stub->instruction_start()[2];
322 static void Patch(Code* stub, Mode mode) { argument
325 ASSERT(GetMode(stub) == INCREMENTAL ||
326 GetMode(stub) == INCREMENTAL_COMPACTION);
327 stub->instruction_start()[0] = kTwoByteNopInstruction;
328 stub->instruction_start()[2] = kFiveByteNopInstruction;
331 ASSERT(GetMode(stub) == STORE_BUFFER_ONLY);
332 stub
[all...]
/external/opencv/cv/src/
H A Dcvcorner.cpp427 CvMat stub, *src = (CvMat*)srcarr; local
430 CV_CALL( src = cvGetMat( srcarr, &stub ));
454 CvMat stub, *src = (CvMat*)srcarr; local
457 CV_CALL( src = cvGetMat( srcarr, &stub ));
481 CvMat stub, *src = (CvMat*)srcarr; local
484 CV_CALL( src = cvGetMat( srcarr, &stub ));
527 CvMat stub, *src = (CvMat*)srcarr; local
531 CV_CALL( src = cvGetMat( srcarr, &stub ));
H A Dcvfloodfill.cpp1032 CvMat stub, *img = (CvMat*)arr; local
1042 CV_CALL( img = cvGetMat( img, &stub ));
H A Dcvmoments.cpp382 CvMat stub, *mat = (CvMat*)array; local
410 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
H A Dcvpyramids.cpp1180 CvMat stub, *src; local
1184 CV_CALL( src = cvGetMat( srcarr, &stub ));
H A Dcvtemplmatch.cpp336 CvMat stub, *img = (CvMat*)_img; local
353 CV_CALL( img = cvGetMat( img, &stub, &coi1 ));
H A Dcvcontours.cpp202 CvMat stub, *mat = (CvMat*)_img; local
211 CV_CALL( mat = cvGetMat( mat, &stub ));
1194 CvMat stub, *mat; local
1196 CV_CALL( mat = cvGetMat( src, &stub ));
H A Dcvpyrsegmentation.cpp195 _CvPyramid stub; local
278 p_base->p = &stub;
309 p_cur->p = &stub;
329 (float) threshold1, is_last_iter, &stub,
358 stub.c = 0;
558 if( p != &stub )
609 _CvPyramidC3 stub; local
697 p_base->p = &stub;
729 p_cur->p = &stub;
749 (float) threshold1, is_last_iter, &stub,
1031 _CvPyramid *stub = (_CvPyramid *) _stub; local
1214 _CvPyramidC3 *stub = (_CvPyramidC3 *) _stub; local
[all...]
H A Dcvshapedescr.cpp1140 CvMat stub, *mat = 0; local
1161 CV_CALL( mat = cvGetMat( array, &stub ));
/external/opencv/
H A Dcvjni.cpp142 CvMat stub; local
143 CvMat *mat_image = cvGetMat(m_sourceImage, &stub);
258 CvMat stub, *mat_image; local
260 mat_image = cvGetMat( m_sourceImage, &stub );
752 CvMat stub, *mat_image;
754 mat_image = cvGetMat( frameImage, &stub );
/external/opencv/cxcore/src/
H A Dcxcopy.cpp493 CvMat stub, *mat = (CvMat*)arr; local
551 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
678 CvMat stub, *mat = (CvMat*)arr; local
721 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
H A Dcxsumpixels.cpp402 CvMat stub, *mat = (CvMat*)arr; local
467 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
593 CvMat stub, *mat = (CvMat*)arr; local
634 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
H A Dcxconvert.cpp444 CvMat stub[5], *dst[4], *src = (CvMat*)srcarr; local
464 CV_CALL( src = cvGetMat( src, stub + 4, &coi ));
483 CV_CALL( dst[i] = cvGetMat( dst[i], stub + i ));
554 CvMat stub[5], *src[4], *dst = (CvMat*)dstarr; local
573 CV_CALL( dst = cvGetMat( dst, stub + 4, &coi ));
589 CV_CALL( src[i] = cvGetMat( src[i], stub + i ));
799 CvMat stub, *mat = (CvMat*)(k == 0 ? src[i] : dst[i]); local
803 CV_CALL( mat = cvGetMat( mat, &stub ));
H A Dcxmatrix.cpp55 CvMat stub, *mat = (CvMat*)array; local
65 CV_CALL( mat = cvGetMat( mat, &stub, &coi ));
138 CvMat stub, *mat = 0; local
166 CV_CALL( mat = cvGetDiag( array, &stub ));
777 CvMat stub, *mat = (CvMat*)arr; local
782 CV_CALL( mat = cvGetMat( mat, &stub ));
1591 CvMat stub, *data = (CvMat*)data_arr; local
1599 CV_CALL( data = cvGetMat( data, &stub ));
1762 CvMat stub, *data = (CvMat*)data_arr; local
1773 CV_CALL( data = cvGetMat( data, &stub ));
[all...]
H A Dcxutils.cpp796 CvMat stub, *dmat; local
797 CV_CALL( dmat = cvGetMat(dst, &stub));
817 CvMat stub, *mat = (CvMat*)arr; local
828 CV_CALL( mat = cvGetMat( mat, &stub ));
913 CvMat stub, *mat = (CvMat*)arr; local
921 CV_CALL( mat = cvGetMat( mat, &stub) );
/external/v8/src/
H A Dincremental-marking.cc414 void IncrementalMarking::ActivateGeneratedStub(Code* stub) { argument
415 ASSERT(RecordWriteStub::GetMode(stub) ==
419 // Initially stub is generated in STORE_BUFFER_ONLY mode thus
423 RecordWriteStub::Patch(stub, RecordWriteStub::INCREMENTAL_COMPACTION);
425 RecordWriteStub::Patch(stub, RecordWriteStub::INCREMENTAL);
/external/chromium_org/content/common/gpu/
H A Dgpu_channel.cc201 // We are currently preempting (i.e. no stub is descheduled).
203 // We would like to preempt, but some stub is descheduled.
374 // we'll find the stub based on the routing ID, and associate the sync point
375 // with it, but if that fails for any reason (channel or stub already
379 GpuCommandBufferStub* stub = gpu_channel->get()->LookupCommandBuffer( local
381 if (stub) {
382 stub->AddSyncPoint(sync_point);
616 scoped_ptr<GpuCommandBufferStub> stub(
633 stub->SetPreemptByFlag(preempted_flag_);
634 router_.AddRoute(*route_id, stub
773 GpuCommandBufferStub* stub = stubs_.Lookup(m->routing_id()); local
876 GpuCommandBufferStub* stub = stubs_.Lookup(route_id); local
[all...]
/external/chromium_org/v8/src/
H A Dcode-stubs-hydrogen.cc58 CodeStubGraphBuilderBase(Isolate* isolate, HydrogenCodeStub* stub) argument
61 info_(stub, isolate),
63 descriptor_ = stub->GetInterfaceDescriptor(isolate);
80 HydrogenCodeStub* stub() { return info_.code_stub(); } function in class:v8::internal::CodeStubGraphBuilderBase
136 // Update the static counter each time a new code stub is generated.
140 const char* name = CodeStub::MajorName(stub()->MajorKey(), false);
142 PrintF("Compiling stub %s using hydrogen\n", name);
213 CodeStubGraphBuilder(Isolate* isolate, Stub* stub) argument
214 : CodeStubGraphBuilderBase(isolate, stub) {}
240 Stub* casted_stub() { return static_cast<Stub*>(stub()); }
278 DoGenerateCode(Isolate* isolate, Stub* stub) argument
875 CompareNilICStub* stub = casted_stub(); local
1010 NewStringAddStub* stub = casted_stub(); local
1036 ToBooleanStub* stub = casted_stub(); local
1055 StoreGlobalStub* stub = casted_stub(); local
[all...]
H A Dcompiler.cc94 CompilationInfo::CompilationInfo(HydrogenCodeStub* stub, argument
103 code_stub_ = stub;
H A Dincremental-marking.cc515 void IncrementalMarking::ActivateGeneratedStub(Code* stub) { argument
516 ASSERT(RecordWriteStub::GetMode(stub) ==
520 // Initially stub is generated in STORE_BUFFER_ONLY mode thus
524 RecordWriteStub::Patch(stub, RecordWriteStub::INCREMENTAL_COMPACTION);
526 RecordWriteStub::Patch(stub, RecordWriteStub::INCREMENTAL);
/external/chromium_org/v8/src/ia32/
H A Dcodegen-ia32.cc1158 Code* stub = GetCodeFromTargetAddress(target_address); local
1159 GetCodeAgeAndParity(stub, age, parity);
1174 Code* stub = GetCodeAgeStub(isolate, age, parity); local
1176 patcher.masm()->call(stub->instruction_start(), RelocInfo::NONE32);
/external/v8/src/arm/
H A Dcode-stubs-arm.h311 // Flag that indicates how to generate code for the stub StringAddStub.
314 // Omit left string check in stub (left is definitely a string).
316 // Omit right string check in stub (right is definitely a string).
318 // Omit both string checks in stub.
397 // This stub can convert a signed int32 to a heap number (double). It does
398 // not work for int32s that are in Smi range! No GC occurs during this stub
497 static Mode GetMode(Code* stub) { argument
498 Instr first_instruction = Assembler::instr_at(stub->instruction_start());
499 Instr second_instruction = Assembler::instr_at(stub->instruction_start() +
517 static void Patch(Code* stub, Mod argument
[all...]
/external/v8/src/ia32/
H A Dbuiltins-ia32.cc142 // The call will replace the stub, so the countdown is only done once.
426 CallConstructStub stub(NO_CALL_FUNCTION_FLAGS);
427 __ CallStub(&stub);
1705 // on-stack replacement right away, the function calling this stub can
1713 StackCheckStub stub; local
1714 __ TailCallStub(&stub);
H A Dcode-stubs-ia32.h305 // Flag that indicates how to generate code for the stub StringAddStub.
308 // Omit left string check in stub (left is definitely a string).
310 // Omit right string check in stub (right is definitely a string).
312 // Omit both string checks in stub.
508 static Mode GetMode(Code* stub) { argument
509 byte first_instruction = stub->instruction_start()[0];
510 byte second_instruction = stub->instruction_start()[2];
527 static void Patch(Code* stub, Mode mode) { argument
530 ASSERT(GetMode(stub) == INCREMENTAL ||
531 GetMode(stub)
[all...]
/external/v8/src/mips/
H A Dcode-stubs-mips.h312 // Flag that indicates how to generate code for the stub StringAddStub.
315 // Omit left string check in stub (left is definitely a string).
317 // Omit right string check in stub (right is definitely a string).
319 // Omit both string checks in stub.
398 // This stub can convert a signed int32 to a heap number (double). It does
399 // not work for int32s that are in Smi range! No GC occurs during this stub
512 static Mode GetMode(Code* stub) { argument
513 Instr first_instruction = Assembler::instr_at(stub->instruction_start());
514 Instr second_instruction = Assembler::instr_at(stub->instruction_start() +
532 static void Patch(Code* stub, Mod argument
[all...]

Completed in 742 milliseconds

1234567