HomeSort by relevance Sort by last modified time
    Searched refs:vectors (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/eigen/Eigen/src/Householder/
BlockHouseholder.h 22 // void make_block_householder_triangular_factor(TriangularFactorType& triFactor, const VectorsType& vectors, const CoeffsType& hCoeffs)
25 // const Index nbVecs = vectors.cols();
26 // eigen_assert(triFactor.rows() == nbVecs && triFactor.cols() == nbVecs && vectors.rows()>=nbVecs);
30 // Index rs = vectors.rows() - i;
31 // // Warning, note that hCoeffs may alias with vectors.
32 // // It is then necessary to copy it before modifying vectors(i,i).
35 // Scalar *Vii_ptr = const_cast<Scalar*>(vectors.data() + vectors.outerStride()*i + vectors.innerStride()*i);
38 // triFactor.col(i).head(i).noalias() = -h * vectors.block(i, 0, rs, i).adjoint(
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
pr20364.s 2 .section .vectors, "ax"
8 .section .vectors, "ax"
pr20364.d 7 Disassembly of section \.vectors:
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
sections.d 16 4 vectors 00000002 0+000 0+000 0000.... 2..0
72 Disassembly of section vectors:
74 0+000 <vectors>:
sections.s 60 .sect "vectors"
71 .sblock "blksect", vectors ; set block flag on blksect and vectors
  /frameworks/base/tools/aapt2/integration-tests/StaticLibTest/App/
Android.mk 29 LOCAL_AAPT_FLAGS := --no-version-vectors --no-version-transitions
  /device/linaro/bootloader/arm-trusted-firmware/bl2/
bl2.ld.S 29 *(.vectors)
60 *(.vectors)
  /device/linaro/bootloader/arm-trusted-firmware/bl2u/
bl2u.ld.S 29 *(.vectors)
47 *(.vectors)
  /device/linaro/bootloader/arm-trusted-firmware/bl32/tsp/
tsp.ld.S 30 *(.vectors)
47 *(.vectors)
  /device/google/contexthub/firmware/os/platform/stm32/lkr/
stm32f4xx.os.lkr 21 KEEP (*(.vectors) ) ;
  /device/linaro/bootloader/arm-trusted-firmware/bl1/
bl1.ld.S 29 *(.vectors)
82 *(.vectors)
  /device/linaro/bootloader/arm-trusted-firmware/bl32/sp_min/
sp_min.ld.S 29 *(.vectors)
86 *(.vectors)
  /prebuilts/go/darwin-x86/src/archive/tar/
strconv_test.go 15 vectors := []struct {
37 for _, v := range vectors {
46 vectors := []struct {
90 for _, v := range vectors {
108 vectors := []struct {
159 for _, v := range vectors {
178 vectors := []struct {
208 for _, v := range vectors {
217 vectors := []struct {
280 for _, v := range vectors {
    [all...]
  /prebuilts/go/linux-x86/src/archive/tar/
strconv_test.go 15 vectors := []struct {
37 for _, v := range vectors {
46 vectors := []struct {
90 for _, v := range vectors {
108 vectors := []struct {
159 for _, v := range vectors {
178 vectors := []struct {
208 for _, v := range vectors {
217 vectors := []struct {
280 for _, v := range vectors {
    [all...]
  /external/skia/gm/
imagescalealigned.cpp 17 const SkVector vectors[] = { { 1, 0 }, { 0, 1 } }; variable
19 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
22 set.fVector = vectors[i];
23 set.fImages.push_back() = MakeImage(vectors[i], SK_ColorGREEN);
25 set.fImages.push_back() = MakeImage(vectors[i], SK_ColorRED);
27 set.fImages.push_back() = MakeImage(vectors[i], SK_ColorGREEN);
  /external/skqp/gm/
imagescalealigned.cpp 17 const SkVector vectors[] = { { 1, 0 }, { 0, 1 } }; variable
19 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
22 set.fVector = vectors[i];
23 set.fImages.push_back() = MakeImage(vectors[i], SK_ColorGREEN);
25 set.fImages.push_back() = MakeImage(vectors[i], SK_ColorRED);
27 set.fImages.push_back() = MakeImage(vectors[i], SK_ColorGREEN);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
vector_support_library.cc 350 std::vector<llvm::Value*> vectors, llvm::Value* init_values) {
354 vectors.size() == x86_avx_vector_elements) {
355 return ComputeAvxOptimizedHorizontalSums(std::move(vectors), init_values);
359 std::transform(vectors.begin(), vectors.end(), std::back_inserter(result),
372 std::vector<llvm::Value*> vectors, llvm::Value* init_values) {
373 while (vectors.size() != 2) {
375 for (int i = 0; i < vectors.size(); i += 2) {
376 new_vectors.push_back(AvxStyleHorizontalAdd(vectors[i], vectors[i + 1]))
    [all...]
  /frameworks/rs/script_api/
rs_vector_math.spec 20 These functions interpret the input arguments as representation of vectors in
45 summary: Cross product of two vectors
47 Computes the cross product of two vectors.
97 summary: Dot product of two vectors
99 Computes the dot product of two vectors.
162 For vectors of size 1, returns -1.f for negative values, 0.f for null values, and 1.f for
285 For vectors of size 1, returns -1.f for negative values, 0.f for null values, and 1.f for
  /external/tensorflow/tensorflow/contrib/factorization/python/ops/
gmm_ops_test.py 60 vectors = []
64 vectors.append([np.random.normal(2.0, 0.6), np.random.normal(2.0, 0.9)])
67 vectors.append(
70 return np.asarray(vectors), classes
83 vectors = []
87 vectors.append([
93 return np.asarray(vectors), len(centers)
  /external/mesa3d/src/mesa/main/
uniform_query.cpp 567 const unsigned vectors = MAX2(1, uni->type->matrix_columns); local
579 store->element_stride - (vectors * store->vector_stride);
581 (uint8_t *) (&uni->storage[array_index * (dmul * components * vectors)].i);
584 printf("%s: %p[%d] components=%u vectors=%u count=%u vector_stride=%u "
587 vectors, count, store->vector_stride, extra_stride);
600 memcpy(dst, src, src_vector_byte_stride * vectors);
601 src += src_vector_byte_stride * vectors;
602 dst += store->vector_stride * vectors;
608 memcpy(dst, src, src_vector_byte_stride * vectors * count);
609 src += src_vector_byte_stride * vectors * count
919 unsigned vectors; local
    [all...]
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bzip2_test.go 41 var vectors = []struct {
134 for i, v := range vectors {
152 var vectors = []struct {
170 for i, v := range vectors {
186 var vectors = []struct {
198 for i, v := range vectors {
  /prebuilts/go/linux-x86/src/compress/bzip2/
bzip2_test.go 41 var vectors = []struct {
134 for i, v := range vectors {
152 var vectors = []struct {
170 for i, v := range vectors {
186 var vectors = []struct {
198 for i, v := range vectors {
  /device/linaro/bootloader/arm-trusted-firmware/bl31/
bl31.ld.S 33 *(.vectors)
106 *(.vectors)
  /device/linaro/bootloader/arm-trusted-firmware/include/common/aarch64/
asm_macros.S 55 .section .vectors, "ax"
69 .section .vectors, "ax"
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt6795/
bl31.ld.S 29 *(.vectors)

Completed in 1526 milliseconds

1 2 3 4 5 6