Searched refs:b_ (Results 1 - 25 of 74) sorted by relevance

123

/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.cc38 os->Write(&b_, offset, length);
43 if ((size_t)index >= b_.size()) {
44 b_.resize((size_t)(index + 1));
46 b_[index] = b;
53 if ((size_t)index + length >= b_.size()) {
56 b_.resize((size_t)(index + length + 1));
58 std::copy(b + offset, b + offset + length, b_.begin() + index);
63 return b_[index];
70 memcpy(b + offset, &(b_[0]) + index, length);
75 b_
[all...]
H A Dmemory_byte_array.cc24 : ByteArray(0, length), b_(NULL), allocated_(true) {
28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) {
40 os->Write(b_, offset, length);
45 if (allocated_ && b_ == NULL) {
46 b_ = new byte_t[Size()];
47 memset(b_, 0, Size());
53 b_[index] = b;
62 memcpy(b_ + index, b + offset, length);
68 return b_[index];
77 memcpy(b + offset, b_
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.cc38 os->Write(&b_, offset, length);
43 if ((size_t)index >= b_.size()) {
44 b_.resize((size_t)(index + 1));
46 b_[index] = b;
53 if ((size_t)index + length >= b_.size()) {
56 b_.resize((size_t)(index + length + 1));
58 std::copy(b + offset, b + offset + length, b_.begin() + index);
63 return b_[index];
70 memcpy(b + offset, &(b_[0]) + index, length);
75 b_
[all...]
H A Dmemory_byte_array.cc24 : ByteArray(0, length), b_(NULL), allocated_(true) {
28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) {
40 os->Write(b_, offset, length);
45 if (allocated_ && b_ == NULL) {
46 b_ = new byte_t[Size()];
47 memset(b_, 0, Size());
53 b_[index] = b;
62 memcpy(b_ + index, b + offset, length);
68 return b_[index];
77 memcpy(b + offset, b_
[all...]
/external/ceres-solver/internal/ceres/
H A Dnormal_prior.cc43 : A_(A), b_(b) {
44 CHECK_GT(b_.rows(), 0);
46 CHECK_EQ(b_.rows(), A.cols());
48 mutable_parameter_block_sizes()->push_back(b_.rows());
57 // r = A_ * (p - b_);
59 r = A_ * (p - b_).eval();
H A Dloss_function.cc47 if (s > b_) {
51 rho[0] = 2.0 * a_ * r - b_;
66 rho[0] = 2.0 * b_ * (tmp - 1.0);
75 rho[0] = b_ * log(sum);
81 const double sum = 1 + s * s * b_;
86 rho[2] = -2.0 * s * b_ * (inv * inv);
91 b_(b),
98 const double x = (s - a_) / b_;
110 rho[0] = b_ * log(1.0 + e_x) - c_;
112 rho[2] = 0.5 / (b_ * (1.
[all...]
H A Diterative_schur_complement_solver_test.cc67 b_.reset(problem->b.release());
90 qr->Solve(&dense_A, b_.get(), per_solve_options, reference_solution.data());
100 isc.Solve(A_.get(), b_.get(), per_solve_options, isc_sol.data());
115 scoped_array<double> b_; member in class:ceres::internal::IterativeSchurComplementSolverTest
H A Dconditioned_cost_function_test.cc49 LinearCostFunction(double a, double b) : a_(a), b_(b) {
57 *residuals = **parameters * a_ + b_;
66 const double a_, b_; member in class:ceres::internal::LinearCostFunction
H A Dimplicit_schur_complement.cc49 b_(NULL) {
65 b_ = b;
179 tmp_rows_ = ConstVectorRef(b_, num_rows) - tmp_rows_;
206 A_->LeftMultiplyE(b_, tmp_e_cols_.data());
217 tmp_rows_ = ConstVectorRef(b_, A_->num_rows()) - tmp_rows_;
H A Dimplicit_schur_complement_test.cc63 b_.reset(problem->b.release());
97 eliminator->Eliminate(A_.get(), b_.get(), D, &blhs, rhs->data());
113 eliminator->BackSubstitute(A_.get(), b_.get(), D,
127 isc.Init(*A_, D, b_.get());
183 scoped_array<double> b_; member in class:ceres::internal::ImplicitSchurComplementTest
/external/stlport/test/unit/
H A Dbsearch_test.cpp22 static bool str_compare(const char* a_, const char* b_);
46 bool BsearchTest::str_compare(const char* a_, const char* b_) argument
48 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dinnerprod_test.cpp27 static size_t add(size_t a_, size_t b_) { argument
28 return a_ + b_;
31 static size_t mult(size_t a_, size_t b_) { argument
32 return a_ * b_;
H A Dmax_test.cpp28 static bool str_compare(const char* a_, const char* b_) argument
29 { return strcmp(a_, b_) < 0 ? 1 : 0; }
H A Dmin_test.cpp27 static bool str_compare(const char* a_, const char* b_) argument
28 { return strcmp(a_, b_) < 0 ? 1 : 0; }
H A Dbound_test.cpp28 static bool char_str_less(const char* a_, const char* b_) argument
30 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dtransform_test.cpp31 static char map_char(char a_, int b_) { argument
32 return char(a_ + b_);
/external/ceres-solver/include/ceres/
H A Dloss_function.h177 explicit HuberLoss(double a) : a_(a), b_(a * a) { }
183 const double b_; member in class:ceres::HuberLoss
193 explicit SoftLOneLoss(double a) : b_(a * a), c_(1 / b_) { }
198 const double b_; member in class:ceres::SoftLOneLoss
210 explicit CauchyLoss(double a) : b_(a * a), c_(1 / b_) { }
215 const double b_; member in class:ceres::CauchyLoss
231 explicit ArctanLoss(double a) : a_(a), b_(1 / (a * a)) { }
237 const double b_; member in class:ceres::ArctanLoss
274 const double a_, b_, c_; member in class:ceres::TolerantLoss
[all...]
H A Dnormal_prior.h71 Vector b_; member in class:ceres::NormalPrior
/external/chromium_org/tools/gn/
H A Dheader_checker_unittest.cc20 b_(setup_.settings(), Label(SourceDir("//b/"), "b")),
24 b_.set_output_type(Target::SOURCE_SET);
30 b_.SetToolchain(setup_.toolchain(), &err);
34 a_.public_deps().push_back(LabelTargetPair(&b_));
35 b_.public_deps().push_back(LabelTargetPair(&c_));
39 b_.visibility().SetPublic();
45 b_.OnResolved(&err);
49 targets_.push_back(&b_);
62 Target b_; member in class:__anon16461::HeaderCheckerTest
96 EXPECT_TRUE(checker->IsDependencyOf(&b_,
[all...]
/external/clang/test/Analysis/
H A Dtemp-obj-dtors-cfg-output.cpp55 C():b_(true) {}
58 operator bool() { return b_; }
59 bool b_; member in struct:C
63 D():b_(true) {}
65 operator bool() { return b_; }
66 bool b_; member in struct:D
536 // CHECK: C() : b_(true)
541 // CHECK: 2: b_([B1.1]) (Member initializer)
556 // CHECK: 2: [B1.1]->b_
563 // CHECK: D() : b_(tru
[all...]
/external/chromium_org/skia/ext/
H A Drecursive_gaussian_convolution.h32 const float* b() const { return b_; }
37 float b_[4]; member in class:skia::RecursiveFilter
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon_unittest.cc174 void SetABMethod(int a, const char* b) { a_ = a; b_ = b; }
177 current_instance_->b_ = b;
183 b_ = NULL;
193 const char* b_; member in class:google::protobuf::__anon14861::ClosureTest
251 EXPECT_NE(cstr, b_);
254 EXPECT_EQ(cstr, b_);
262 EXPECT_NE(cstr, b_);
265 EXPECT_EQ(cstr, b_);
320 EXPECT_NE(cstr, b_);
323 EXPECT_EQ(cstr, b_);
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon_unittest.cc174 void SetABMethod(int a, const char* b) { a_ = a; b_ = b; }
177 current_instance_->b_ = b;
183 b_ = NULL;
188 const char* b_; member in class:google::protobuf::__anon29002::ClosureTest
245 EXPECT_NE(cstr, b_);
248 EXPECT_EQ(cstr, b_);
256 EXPECT_NE(cstr, b_);
259 EXPECT_EQ(cstr, b_);
314 EXPECT_NE(cstr, b_);
317 EXPECT_EQ(cstr, b_);
[all...]
/external/libnl/lib/
H A Ddata.c177 void *b_ = nl_data_get(b); local
179 if (a_ && b_)
180 return memcmp(a_, b_, nl_data_get_size(a));
/external/chromium_org/ppapi/utility/
H A Dcompletion_callback_factory.h706 b_() {
711 b_(b) {
715 (object->*method_)(result, a_, b_);
720 B b_; member in class:pp::CompletionCallbackFactory::Dispatcher2
732 b_(),
739 b_(b),
747 (object->*method_)(result, Traits::StorageToPluginArg(output_), a_, b_); local
757 B b_; member in class:pp::CompletionCallbackFactory::DispatcherWithOutput2
768 b_(),
774 b_(
784 B b_; member in class:pp::CompletionCallbackFactory::Dispatcher3
827 B b_; member in class:pp::CompletionCallbackFactory::DispatcherWithOutput3
[all...]

Completed in 951 milliseconds

123