Home
last modified time | relevance | path

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

/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/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/arm64/
Dlithium-codegen-arm64.cc158 : BranchGenerator(codegen), value_(value), scratch_(scratch) { } in BranchIfNonZeroNumber()
161 __ Fabs(scratch_, value_); in Emit()
164 __ Fcmp(scratch_, 0.0); in Emit()
169 __ Fabs(scratch_, value_); in EmitInverted()
170 __ Fcmp(scratch_, 0.0); in EmitInverted()
176 const FPRegister& scratch_; member in v8::internal::BranchIfNonZeroNumber