Searched refs:scratch_ (Results 1 - 7 of 7) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dcxsparse.cc42 CXSparse::CXSparse() : scratch_(NULL), scratch_size_(0) {
47 cs_free(scratch_);
57 cs_free(scratch_);
59 scratch_ = reinterpret_cast<CS_ENTRY*>(cs_malloc(A->n, sizeof(CS_ENTRY)));
73 cs_ipvec(symbolic_factorization->pinv, b, scratch_, A->n);
76 cs_lsolve(numeric_factorization->L, scratch_);
79 cs_ltsolve(numeric_factorization->L, scratch_);
82 cs_pvec(symbolic_factorization->pinv, scratch_, b, A->n);
H A Dcxsparse.h81 CS_ENTRY* scratch_; member in class:ceres::internal::CXSparse
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.h105 : text_(scratch_), size_(1) { scratch_[0] = value; }
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {}
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {}
119 : text_(FastInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {}
121 : text_(FastUInt64ToBuffer(value, scratch_)), size
135 char scratch_[kFastToBufferSize]; member in class:google::protobuf::strings::internal::SubstituteArg
[all...]
/external/v8/src/mips/
H A Dcode-stubs-mips.h409 scratch_(scratch),
413 ASSERT(ScratchRegisterBits::is_valid(scratch_.code()));
423 Register scratch_; member in class:v8::internal::WriteInt32ToHeapNumberStub
437 | ScratchRegisterBits::encode(scratch_.code())
H A Dcode-stubs-mips.cc1033 scratch_.is(a2) &&
1039 scratch_.is(a3) &&
1068 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
1072 __ li(scratch_, Operand(non_smi_exponent));
1073 // Set the sign bit in scratch_ if the value was negative.
1074 __ or_(scratch_, scratch_, sign_);
1085 __ or_(scratch_, scratch_, at);
1086 __ sw(scratch_, FieldMemOperan
[all...]
/external/v8/src/arm/
H A Dcode-stubs-arm.h407 scratch_(scratch) { }
415 Register scratch_; member in class:v8::internal::WriteInt32ToHeapNumberStub
427 | ScratchRegisterBits::encode(scratch_.code());
H A Dcode-stubs-arm.cc1008 if (the_int_.is(r1) && the_heap_number_.is(r0) && scratch_.is(r2)) {
1011 if (the_int_.is(r2) && the_heap_number_.is(r0) && scratch_.is(r3)) {
1038 // Set up the correct exponent in scratch_. All non-Smi int32s have the same.
1042 __ mov(scratch_, Operand(non_smi_exponent));
1043 // Set the sign bit in scratch_ if the value was negative.
1044 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs);
1053 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance));
1054 __ str(scratch_, FieldMemOperan
[all...]

Completed in 1005 milliseconds