/external/eigen/Eigen/src/Core/products/ |
GeneralMatrixMatrix.h | 92 std::size_t sizeB = kc*nc; 93 ei_declare_aligned_stack_constructed_variable(RhsScalar, blockB, sizeB, 0); 160 std::size_t sizeB = kc*nc; 163 ei_declare_aligned_stack_constructed_variable(RhsScalar, blockB, sizeB, blocking.blockB()); 290 SizeB = ActualCols * MaxDepth 295 EIGEN_ALIGN_MAX RhsScalar m_staticB[SizeB]; 298 EIGEN_ALIGN_MAX char m_staticB[SizeB * sizeof(RhsScalar) + EIGEN_DEFAULT_ALIGN_BYTES-1];
|
TriangularMatrixMatrix.h | 135 std::size_t sizeB = kc*cols; 138 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB()); 282 std::size_t sizeB = kc*cols+EIGEN_MAX_ALIGN_BYTES/sizeof(Scalar); 285 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB());
|
TriangularSolverMatrix.h | 72 std::size_t sizeB = kc*cols; 75 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB()); 223 std::size_t sizeB = kc*size; 226 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB());
|
SelfadjointMatrixMatrix.h | 348 std::size_t sizeB = kc*cols; 350 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB()); 435 std::size_t sizeB = kc*cols; 437 ei_declare_aligned_stack_constructed_variable(Scalar, blockB, sizeB, blocking.blockB());
|
GeneralMatrixMatrixTriangular.h | 82 std::size_t sizeB = kc*size; 85 ei_declare_aligned_stack_constructed_variable(RhsScalar, blockB, sizeB, blocking.blockB());
|
/external/skia/tests/ |
DataRefTest.cpp | 22 size_t sizea, sizeb; local 24 const void* memb = b->at(i, &sizeb); 25 REPORTER_ASSERT(reporter, sizea == sizeb);
|
TArrayTest.cpp | 74 for (auto sizeB : sizes) { 80 for (int i = 0; i < sizeB; i++) { b->push_back(curr++); } 84 REPORTER_ASSERT(reporter, a->count() == sizeB);
|
/external/skqp/tests/ |
DataRefTest.cpp | 22 size_t sizea, sizeb; local 24 const void* memb = b->at(i, &sizeb); 25 REPORTER_ASSERT(reporter, sizea == sizeb);
|
TArrayTest.cpp | 74 for (auto sizeB : sizes) { 80 for (int i = 0; i < sizeB; i++) { b->push_back(curr++); } 84 REPORTER_ASSERT(reporter, a->count() == sizeB);
|
/external/eigen/bench/tensors/ |
tensor_benchmarks.h | 393 Eigen::array<TensorIndex, 2> sizeB; 394 sizeB[0] = k_; 395 sizeB[1] = n_; 401 const TensorMap<Tensor<T, 2>, Eigen::Aligned> B(b_, sizeB);
|
/external/okhttp/okio/okio/src/main/java/okio/ |
ByteString.java | 338 int sizeB = byteString.size(); 339 for (int i = 0, size = Math.min(sizeA, sizeB); i < size; i++) { 345 if (sizeA == sizeB) return 0; 346 return sizeA < sizeB ? -1 : 1;
|
/external/valgrind/cachegrind/ |
cg_arch.c | 378 if (i1->sizeB == 12 * 1024 || i1->sizeB == 16 * 1024) { 384 i1->sizeB / 1024); 390 *I1c = (cache_t) { i1->sizeB, i1->assoc, i1->line_sizeB }; 392 *D1c = (cache_t) { d1->sizeB, d1->assoc, d1->line_sizeB }; 393 *LLc = (cache_t) { ll->sizeB, ll->assoc, ll->line_sizeB };
|
/external/opencv/cxcore/src/ |
cxmatrix.cpp | 596 void* B, int stepB, CvSize sizeB, 600 void* B, int stepB, CvSize sizeB ); 606 arrtype* B, int stepB, CvSize sizeB, double* _det ) \ 616 assert( sizeA.height == sizeB.height ); \ 617 m = sizeB.width; \ 708 arrtype* B, int stepB, CvSize sizeB ) \ 711 int m = sizeB.width, i; \ 714 sizeA.height == sizeB.height ); \ [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorContraction.h | 486 const Index sizeB = kc * nc; 489 RhsScalar* blockB = static_cast<RhsScalar *>(this->m_device.allocate(sizeB * sizeof(RhsScalar)));
|
TensorContractionThreadPool.h | [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
ArrayUtils.java | 566 final int sizeB = b.size(); 567 if (a == null || b == null || sizeA != sizeB) {
|
/external/llvm/lib/Target/Hexagon/ |
HexagonGenInsert.cpp | [all...] |
HexagonInstrInfo.cpp | [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
ELFObjectWriter.cpp | 788 const unsigned sizeB = NameB.size(); 789 const unsigned len = std::min(sizeA, sizeB); 792 char cb = NameB[sizeB - i - 1]; 797 return sizeB - sizeA; [all...] |
/external/valgrind/coregrind/ |
m_cache.c | 527 ci->caches[i].sizeB *= 1024; 691 VG_(debugLog)(1, "cache", " size = %u bytes\n", c->sizeB);
|
/external/valgrind/VEX/pub/ |
libvex.h | 275 UInt sizeB; /* size of this cache in bytes */ 283 ({ (VexCache) { .kind = _kind, .level = _level, .sizeB = _size, \ [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/ |
buffer_assignment_test.cc | 718 int64 sizeb = ValidateBuffers(levelb, *buffers); local 749 << " instructions; total buffer size " << size0 + sizec + sizeb; local [all...] |
/external/libchrome/base/third_party/valgrind/ |
valgrind.h | [all...] |
/external/v8/src/third_party/valgrind/ |
valgrind.h | [all...] |
/external/valgrind/memcheck/ |
mc_main.c | [all...] |