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

123

/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...]
H A Dgrowable_memory_byte_array.h61 ByteVector b_; member in class:sfntly::GrowableMemoryByteArray
H A Dmemory_byte_array.h75 byte_t* b_; member in class:sfntly::MemoryByteArray
/external/clang/test/Analysis/
H A Dtemp-obj-dtors-cfg-output.cpp57 C():b_(true) {}
60 operator bool() { return b_; }
61 bool b_; member in struct:C
65 D():b_(true) {}
67 operator bool() { return b_; }
68 bool b_; member in struct:D
542 // CHECK: 2: b_([B1.1]) (Member initializer)
555 // CHECK: 2: [B1.1]->b_
566 // CHECK: 2: b_([B1.1]) (Member initializer)
575 // CHECK: 2: [B1.1]->b_
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon_unittest.cc175 void SetABMethod(int a, const char* b) { a_ = a; b_ = b; }
178 current_instance_->b_ = b;
184 b_ = NULL;
194 const char* b_; member in class:google::protobuf::__anon19069::ClosureTest
252 EXPECT_NE(cstr, b_);
255 EXPECT_EQ(cstr, b_);
263 EXPECT_NE(cstr, b_);
266 EXPECT_EQ(cstr, b_);
321 EXPECT_NE(cstr, b_);
324 EXPECT_EQ(cstr, b_);
[all...]
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dflatset.h100 const_iterator() : b_(nullptr), end_(nullptr), i_(0) {}
103 const_iterator(Bucket* b, Bucket* end) : b_(b), end_(end), i_(0) {
109 : b_(b), end_(end), i_(i) {}
114 return b_ == x.b_ && i_ == x.i_;
118 DCHECK(b_ != end_);
131 Bucket* b_; member in class:tensorflow::gtl::FlatSet::const_iterator
135 reference key() const { return b_->key(i_); }
137 while (b_ < end_) {
140 b_
[all...]
H A Dflatmap.h117 iterator() : b_(nullptr), end_(nullptr), i_(0) {}
120 iterator(Bucket* b, Bucket* end) : b_(b), end_(end), i_(0) { SkipUnused(); }
123 iterator(Bucket* b, Bucket* end, uint32 i) : b_(b), end_(end), i_(i) {
130 return b_ == x.b_ && i_ == x.i_;
134 DCHECK(b_ != end_);
147 Bucket* b_; member in class:tensorflow::gtl::FlatMap::iterator
153 void FillValue() { new (space_) value_type(b_->key(i_), b_->val(i_)); }
155 while (b_ < end
[all...]
/external/libnl/lib/
H A Ddata.c186 void *b_ = nl_data_get(b); local
188 if (a_ && b_)
189 return memcmp(a_, b_, nl_data_get_size(a));
/external/boringssl/src/crypto/chacha/asm/
H A Dchacha-x86.pl47 ($b,$b_)=("ebx","ebp");
85 &mov (&DWP(4*$bp,"esp"),$b_) if ($i!=0);
91 &mov ($b_,&DWP(4*$bn,"esp")) if ($i<7);
92 &mov ($b_,&DWP(128,"esp")) if ($i==7); # loop counter
102 &add ($a,$b_) if ($i<7); # elsewhere
105 ($b,$b_)=($b_,$b);
173 &mov ($b_,&DWP(64+4*6,"esp"));
179 &mov (&DWP(4*6,"esp"),$b_);
188 &mov ($b_,
[all...]
/external/eigen/bench/tensors/
H A Dtensor_benchmarks.h32 device_.deallocate(b_);
57 TensorMap<Tensor<T, 2, 0, TensorIndex>, Eigen::Aligned> B(b_, sizes);
88 const TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, sizes);
117 const TensorMap<Tensor<T, 2, 0, TensorIndex>, Eigen::Aligned> B(b_, input_size);
134 const TensorMap<Tensor<T, 2, 0, TensorIndex>, Eigen::Aligned> B(b_, input_size);
156 TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, size_b);
179 TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, size_b);
207 TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, size_b);
262 const TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, sizes);
280 const TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, size
474 T* b_; member in class:BenchmarkSuite
[all...]
/external/freetype/src/base/
H A Dftcalc.c175 FT_Long b_,
184 b = (FT_UInt64)b_;
188 FT_MOVE_SIGN( b_, b, s );
204 FT_Long b_,
213 b = (FT_UInt64)b_;
217 FT_MOVE_SIGN( b_, b, s );
233 FT_Long b_ )
237 return FT_MULFIX_ASSEMBLER( (FT_Int32)a_, (FT_Int32)b_ );
241 FT_Int64 ab = (FT_Int64)a_ * (FT_Int64)b_;
254 FT_Long b_ )
[all...]
/external/flatbuffers/tests/namespace_test/
H A Dnamespace_test1_generated.h51 int32_t b_; variable
59 b_(flatbuffers::EndianScalar(_b)) {
68 return flatbuffers::EndianScalar(b_);
71 flatbuffers::WriteScalar(&b_, _b);
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-tuple_test.cc265 b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {}
267 BigTuple a_, b_; member in class:__anon7582::BigTupleTest
273 BigTuple b(b_);
292 EXPECT_TRUE(a_ != b_);
293 EXPECT_FALSE(a_ == b_);
/external/googletest/googletest/test/
H A Dgtest-tuple_test.cc265 b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {}
267 BigTuple a_, b_; member in class:__anon7737::BigTupleTest
273 BigTuple b(b_);
292 EXPECT_TRUE(a_ != b_);
293 EXPECT_FALSE(a_ == b_);
/external/protobuf/gtest/test/
H A Dgtest-tuple_test.cc265 b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {}
267 BigTuple a_, b_; member in class:__anon18772::BigTupleTest
273 BigTuple b(b_);
292 EXPECT_TRUE(a_ != b_);
293 EXPECT_FALSE(a_ == b_);
/external/v8/testing/gtest/test/
H A Dgtest-tuple_test.cc265 b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {}
267 BigTuple a_, b_; member in class:__anon27981::BigTupleTest
273 BigTuple b(b_);
292 EXPECT_TRUE(a_ != b_);
293 EXPECT_FALSE(a_ == b_);
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-tuple_test.cc265 b_(1, 0, 0, 0, 0, 0, 0, 0, 0, 3) {}
267 BigTuple a_, b_; member in class:__anon30333::BigTupleTest
273 BigTuple b(b_);
292 EXPECT_TRUE(a_ != b_);
293 EXPECT_FALSE(a_ == b_);
/external/clang/test/Sema/
H A Dwarn-thread-safety-analysis.c46 int *b_ PT_GUARDED_BY(foo_.mu_) = &a_;
105 get_value(b_); // expected-warning{{calling function 'get_value' requires holding mutex 'foo_.mu_'}}
110 (void)(get_value(b_) == 1);
/external/tensorflow/tensorflow/core/framework/
H A Ddataset.cc83 new GraphDefBuilder::Options(b_->opts()));
138 if (b_->HasFunction(function_name)) {
159 TF_RETURN_IF_ERROR(b_->AddFunctionLibrary(def));
185 b_->opts().WithAttr("dtype", val.dtype()).WithAttr("value", val));
191 Status s = b_->opts().op_registry()->LookUpOpDef(op_type_name, &op_def);
/external/jemalloc/test/include/test/
H A Dtest.h5 t b_ = (b); \
6 if (!(a_ cmp b_)) { \
14 #a, #b, a_, b_); \
215 bool b_ = (b); \
216 if (!(a_ == b_)) { \
224 b_ ? "true" : "false"); \
231 bool b_ = (b); \
232 if (!(a_ != b_)) { \
240 b_ ? "true" : "false"); \
/external/clang/test/SemaCXX/
H A Dwarn-unused-private-field.cpp217 A() : p_(__null), b_(false), a_(this), p2_(nullptr) {}
219 bool b_; // expected-warning{{private field 'b_' is not used}} member in class:pr13413::A
/external/vulkan-validation-layers/demos/smoke/
H A DSimulation.cpp174 b_ = glm::normalize(glm::cross(a_, axis));
178 return (a_ * (glm::vec3(std::cos(t)) - glm::vec3(1.0f)) + b_ * glm::vec3(std::sin(t))) * glm::vec3(r_);
184 glm::vec3 b_; member in class:__anon30097::CircleCurve
/external/tensorflow/tensorflow/contrib/lite/toco/
H A Ddump_graphviz.cc40 Color(uint8 r, uint8 g, uint8 b) : r_(r), g_(g), b_(b) {}
43 string FillColorString() const { return StringF("%.2X%.2X%.2X", r_, g_, b_); }
49 const float luminance = 0.2126f * r_ + 0.7152f * g_ + 0.0722f * b_;
55 uint8 r_ = 0, g_ = 0, b_ = 0; member in class:toco::__anon26036::Color
/external/valgrind/drd/tests/
H A Dtsan_thread_wrappers_pthread.h556 explicit Barrier(int n_threads) {CHECK(0 == pthread_barrier_init(&b_, 0, n_threads));}
557 ~Barrier() {CHECK(0 == pthread_barrier_destroy(&b_));}
562 pthread_barrier_wait(&b_);
566 pthread_barrier_t b_; member in class:Barrier

Completed in 1249 milliseconds

123