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

1 2

  /external/aac/libFDK/include/
FDK_matrixCalloc.h 111 void* fdkCallocMatrix1D(UINT dim1, UINT size);
112 void* fdkCallocMatrix1D_aligned(UINT dim1, UINT size);
115 void* fdkCallocMatrix1D_int(UINT dim1, UINT size, MEMORY_SECTION s);
116 void* fdkCallocMatrix1D_int_aligned(UINT dim1, UINT size, MEMORY_SECTION s);
123 void** fdkCallocMatrix2D(UINT dim1, UINT dim2, UINT size);
124 void** fdkCallocMatrix2D_aligned(UINT dim1, UINT dim2, UINT size);
127 void** fdkCallocMatrix2D_int(UINT dim1, UINT dim2, UINT size, MEMORY_SECTION s);
130 void** fdkCallocMatrix2D_int_aligned(UINT dim1, UINT dim2, UINT size,
140 void*** fdkCallocMatrix3D(UINT dim1, UINT dim2, UINT dim3, UINT size);
143 void*** fdkCallocMatrix3D_int(UINT dim1, UINT dim2, UINT dim3, UINT size
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
my_corr.c 28 size_t dim1, /* (i) dimension first seq1 */
39 max=WebRtcSpl_MaxAbsValueW16(seq1, dim1);
47 loops=dim1-dim2+1;
my_corr.h 31 size_t dim1, /* (i) dimension first seq1 */
  /external/aac/libFDK/src/
FDK_matrixCalloc.cpp 107 void *fdkCallocMatrix1D_aligned(UINT dim1, UINT size) {
108 return FDKaalloc(dim1 * size, ALIGNMENT_DEFAULT);
131 void *fdkCallocMatrix1D(UINT dim1, UINT size) { return FDKcalloc(dim1, size); }
134 void **fdkCallocMatrix2D(UINT dim1, UINT dim2, UINT size) {
138 if (!dim1 || !dim2) return NULL;
139 if ((p1 = (void **)fdkCallocMatrix1D(dim1, sizeof(void *))) == NULL) {
142 if ((p2 = (char *)fdkCallocMatrix1D(dim1 * dim2, size)) == NULL) {
147 for (i = 0; i < dim1; i++) {
155 void **fdkCallocMatrix2D_aligned(UINT dim1, UINT dim2, UINT size)
    [all...]
nlc_dec.cpp 309 const INT dim1, SCHAR* out_data, const INT num_val,
325 nodeTab = (HANDLE_HUFF_NODE)&FDK_huffCLDNodes.h1D[dim1]->nodeTab[0][0];
329 nodeTab = (HANDLE_HUFF_NODE)&FDK_huffICCNodes.h1D[dim1]->nodeTab[0][0];
333 nodeTab = (HANDLE_HUFF_NODE)&huffOLDNodes.h1D[dim1]->nodeTab[0][0];
337 nodeTab = (HANDLE_HUFF_NODE)&FDK_huffIPDNodes.h1D[dim1].nodeTab[0][0];
389 const INT dim1, const INT dim2, SCHAR out_data[][2],
455 (HANDLE_HUFF_NODE)&FDK_huffCLDNodes.h2D[dim1][dim2]->lav3[0][0];
459 (HANDLE_HUFF_NODE)&FDK_huffCLDNodes.h2D[dim1][dim2]->lav5[0][0];
463 (HANDLE_HUFF_NODE)&FDK_huffCLDNodes.h2D[dim1][dim2]->lav7[0][0];
467 (HANDLE_HUFF_NODE)&FDK_huffCLDNodes.h2D[dim1][dim2]->lav9[0][0]
    [all...]
fft.cpp     [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_ifft.cpp 40 static void test_2D_fft_ifft_invariant(int dim0, int dim1) {
41 Tensor<double, 2, DataLayout> tensor(dim0, dim1);
55 VERIFY_IS_EQUAL(tensor_after_fft.dimension(1), dim1);
57 VERIFY_IS_EQUAL(tensor_after_fft_ifft.dimension(1), dim1);
60 for (int j = 0; j < dim1; ++j) {
68 static void test_3D_fft_ifft_invariant(int dim0, int dim1, int dim2) {
69 Tensor<double, 3, DataLayout> tensor(dim0, dim1, dim2);
84 VERIFY_IS_EQUAL(tensor_after_fft.dimension(1), dim1);
87 VERIFY_IS_EQUAL(tensor_after_fft_ifft.dimension(1), dim1);
91 for (int j = 0; j < dim1; ++j)
    [all...]
cxx11_tensor_index_list.cpp 272 int dim1 = 2; local
276 auto reduction_axis = make_index_list(dim1, dim2, dim3);
366 Eigen::IndexList<Eigen::type2index<1>, int> dim1; local
367 dim1.set(1, 2);
370 VERIFY(dimensions_match(dim1, dim2));
cxx11_tensor_morphing.cpp 26 Tensor<float, 3>::Dimensions dim1(2,3,7);
27 tensor2 = tensor1.reshape(dim1);
31 tensor4 = tensor1.reshape(dim1).reshape(dim3);
  /external/ply/ply/example/BASIC/
basinterp.py 91 var, dim1, dim2 = expr[1]
92 if not dim1 and not dim2:
100 if dim1 and not dim2:
103 return self.functions[var](dim1)
107 dim1val = self.eval(dim1)
113 if dim1 and dim2:
115 dim1val = self.eval(dim1)
169 var, dim1, dim2 = target
170 if not dim1 and not dim2:
172 elif dim1 and not dim2
    [all...]
  /external/tensorflow/tensorflow/core/tpu/
tpu_embedding_output_layout_utils.cc 76 auto* dim1 = shape.add_dim(); local
77 dim1->set_size(output.two_d().dim1_size());
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
Tensor.h 348 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE explicit Tensor(Index dim1)
349 : m_storage(dim1, array<Index, 1>(dim1))
353 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tensor(Index dim1, Index dim2)
354 : m_storage(dim1*dim2, array<Index, 2>(dim1, dim2))
358 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tensor(Index dim1, Index dim2, Index dim3)
359 : m_storage(dim1*dim2*dim3, array<Index, 3>(dim1, dim2, dim3))
363 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Tensor(Index dim1, Index dim2, Index dim3, Index dim4
    [all...]
TensorMap.h 78 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2) : m_data(dataPtr), m_dimensions(dim1, dim2) {
82 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3) : m_data(dataPtr), m_dimensions(dim1, dim2, dim3) {
86 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3, Index dim4) : m_data(dataPtr), m_dimensions(dim1, dim2, dim3, dim4) {
90 EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3, Index dim4, Index dim5) : m_data(dataPtr), m_dimensions(dim1, dim2, dim3, dim4, dim5) {
  /external/deqp-deps/glslang/hlsl/
hlslParseables.cpp 225 // dim1 = matrix 2nd dimension
226 glslang::TString& AppendTypeName(glslang::TString& s, const char* argOrder, const char* argType, int dim0, int dim1)
240 std::swap(dim0, dim1);
315 dim0 = dim1 = fixedVecSize;
318 const char dim1Char = ('0' + char(dim1));
335 (order == 'M' && (dim1 < 1 || dim1 > 4))) {
376 inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
398 if (isMat && dim0 == 1 && dim1 == 1) // avoid mat1x1
401 if (isMat && dim1 == 1) // TODO: avoid mat Nx1 until we find the right GLSL profil
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
literal_util.h 486 int64 dim1 = 0; local
490 array(dim0, dim1, dim2) = value;
494 ++dim1;
496 CHECK_EQ(dim1_size, dim1);
512 for (int64 dim1 = 0; dim1 < dim1_size; ++dim1) {
517 array(dim0, dim1, dim2, dim3) = value;
literal.h     [all...]
  /external/tensorflow/tensorflow/core/util/
mkl_util_test.cc 64 memory::dims dim1 = {3, 4}; local
66 a.SetUsrMem(dim1, strides1);
  /external/tensorflow/tensorflow/contrib/reduce_slice_ops/kernels/
reduce_slice_ops.cc 63 Index dim1 = output.dimension(0); \
66 Index size = dim1 * dim2 * dim3; \
76 XYZ xyz = global_index_to_xyz(global, XYZ(dim1, dim2, dim3)); \
  /external/tensorflow/tensorflow/core/framework/
tensor_shape.cc 670 const int64 dim1 = shape.dim_size(i);
671 if (dim0 >= 0 && dim1 >= 0 && dim0 != dim1) {
676 result->AddDim(dim0 >= 0 ? dim0 : dim1);
707 const int64 dim1 = shape.dim_size(i);
708 if (dim0 >= 0 && dim1 >= 0 && dim0 != dim1) return false;
  /external/tensorflow/tensorflow/compiler/xla/service/
shape_inference_test.cc 413 auto dim1 = window.add_dimensions(); local
420 dim1->set_size(2);
421 dim1->set_stride(1);
422 dim1->set_padding_low(0);
423 dim1->set_padding_high(0);
424 dim1->set_window_dilation(1);
425 dim1->set_base_dilation(1);
465 auto dim1 = window.add_dimensions(); local
466 dim1->set_size(2);
467 dim1->set_stride(1)
511 auto dim1 = window.add_dimensions(); local
548 auto dim1 = window.add_dimensions(); local
    [all...]
  /external/tensorflow/tensorflow/python/keras/layers/
convolutional.py     [all...]
  /external/tensorflow/tensorflow/go/
session_test.go 79 // first dimension (dim1).
84 dim1, _ = Const(g, "dim1", int32(1))
101 dim1,
  /external/tensorflow/tensorflow/tools/compatibility/testdata/
test_file_v0_11.py 44 dim1 = [1]
54 b, reduction_indices=dim1).eval(), [False, False])
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_properties.cc 125 const int64 dim1 = InferenceContext::Value(d1); local
128 if (dim1 >= 0 && dim2 >= 0) {
129 CHECK_EQ(dim1, dim2);
130 return RefineDim(dim1, result);
131 } else if (dim1 >= 0 && dim2 < 0) {
132 return RefineDim(dim1, result);
133 } else if (dim1 < 0 && dim2 >= 0) {
135 } else if (dim1 < -1) {
136 return RefineDim(dim1, result);
140 CHECK_EQ(dim1, dim2)
    [all...]
  /external/aac/libSACenc/src/
sacenc_nlc_enc.cpp 372 const INT dim1, SHORT *const in_data,
382 pHuffTab = fdk_sacenc_huffCLDTab.h1D[dim1];
385 pHuffTab = fdk_sacenc_huffICCTab.h1D[dim1];
    [all...]

Completed in 9052 milliseconds

1 2