Home
last modified time | relevance | path

Searched refs:scratch_ (Results 1 – 9 of 9) sorted by relevance

/external/protobuf/src/google/protobuf/stubs/
Dsubstitute.h105 : text_(scratch_), size_(1) { scratch_[0] = value; } in SubstituteArg()
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
119 : text_(FastInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
121 : text_(FastUInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
123 : text_(FloatToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
[all …]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
Dsubstitute.h105 : text_(scratch_), size_(1) { scratch_[0] = value; } in SubstituteArg()
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
119 : text_(FastInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
121 : text_(FastUInt64ToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
123 : text_(FloatToBuffer(value, scratch_)), size_(strlen(text_)) {} in SubstituteArg()
[all …]
/external/ceres-solver/internal/ceres/
Dcxsparse.cc48 CXSparse::CXSparse() : scratch_(NULL), scratch_size_(0) { in CXSparse()
53 cs_di_free(scratch_); in ~CXSparse()
64 cs_di_free(scratch_); in SolveCholesky()
66 scratch_ = in SolveCholesky()
83 cs_di_ipvec(symbolic_factorization->pinv, b, scratch_, A->n); in SolveCholesky()
85 cs_di_lsolve(numeric_factorization->L, scratch_); in SolveCholesky()
87 cs_di_ltsolve(numeric_factorization->L, scratch_); in SolveCholesky()
89 cs_di_pvec(symbolic_factorization->pinv, scratch_, b, A->n); in SolveCholesky()
Dcxsparse.h123 CS_ENTRY* scratch_;
/external/chromium_org/v8/src/mips/
Dcode-stubs-mips.h157 scratch_(scratch), in WriteInt32ToHeapNumberStub()
161 ASSERT(ScratchRegisterBits::is_valid(scratch_.code())); in WriteInt32ToHeapNumberStub()
170 Register scratch_; variable
184 | ScratchRegisterBits::encode(scratch_.code()) in MinorKey()
Dcode-stubs-mips.cc756 __ li(scratch_, Operand(non_smi_exponent)); in Generate()
758 __ or_(scratch_, scratch_, sign_); in Generate()
769 __ or_(scratch_, scratch_, at); in Generate()
770 __ sw(scratch_, FieldMemOperand(the_heap_number_, in Generate()
772 __ sll(scratch_, the_int_, 32 - shift_distance); in Generate()
774 __ sw(scratch_, FieldMemOperand(the_heap_number_, in Generate()
783 __ li(scratch_, Operand(HeapNumber::kSignMask | non_smi_exponent)); in Generate()
784 __ sw(scratch_, in Generate()
786 __ mov(scratch_, zero_reg); in Generate()
788 __ sw(scratch_, in Generate()
/external/chromium_org/v8/src/arm/
Dcode-stubs-arm.h128 scratch_(scratch) { } in WriteInt32ToHeapNumberStub()
135 Register scratch_; variable
147 | ScratchRegisterBits::encode(scratch_.code()); in MinorKey()
Dcode-stubs-arm.cc720 __ mov(scratch_, Operand(non_smi_exponent)); in Generate()
722 __ orr(scratch_, scratch_, Operand(HeapNumber::kSignMask), LeaveCC, cs); in Generate()
731 __ orr(scratch_, scratch_, Operand(the_int_, LSR, shift_distance)); in Generate()
732 __ str(scratch_, FieldMemOperand(the_heap_number_, in Generate()
734 __ mov(scratch_, Operand(the_int_, LSL, 32 - shift_distance)); in Generate()
735 __ str(scratch_, FieldMemOperand(the_heap_number_, in Generate()
/external/chromium_org/v8/src/arm64/
Dlithium-codegen-arm64.cc155 : BranchGenerator(codegen), value_(value), scratch_(scratch) { } in BranchIfNonZeroNumber()
158 __ Fabs(scratch_, value_); in Emit()
161 __ Fcmp(scratch_, 0.0); in Emit()
166 __ Fabs(scratch_, value_); in EmitInverted()
167 __ Fcmp(scratch_, 0.0); in EmitInverted()
173 const FPRegister& scratch_; member in v8::internal::BranchIfNonZeroNumber