HomeSort by relevance Sort by last modified time
    Searched refs:dim1 (Results 1 - 25 of 44) 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...]
  /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));
  /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/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) {
  /frameworks/base/cmds/statsd/tests/
FieldValue_test.cpp 270 const auto& dim1 = result.value_tuple().dimensions_value(0); local
271 EXPECT_EQ(2, dim1.field());
272 EXPECT_EQ(2, dim1.value_tuple().dimensions_value_size());
274 const auto& dim11 = dim1.value_tuple().dimensions_value(0);
277 const auto& dim12 = dim1.value_tuple().dimensions_value(1);
359 const auto& dim1 = result.value_tuple().dimensions_value(0); local
360 EXPECT_EQ(DimensionsValue::ValueCase::kValueTuple, dim1.value_case());
361 EXPECT_EQ(3, dim1.value_tuple().dimensions_value_size());
363 const auto& dim11 = dim1.value_tuple().dimensions_value(0);
367 const auto& dim12 = dim1.value_tuple().dimensions_value(1)
419 const auto& dim1 = result.dimensions_value(0); local
    [all...]
  /external/tensorflow/tensorflow/core/util/
mkl_util_test.cc 64 memory::dims dim1 = {3, 4}; local
66 a.SetUsrMem(dim1, strides1);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
space.h 115 __isl_give isl_space *isl_space_align_params(__isl_take isl_space *dim1,
137 int isl_space_match(__isl_keep isl_space *dim1, enum isl_dim_type dim1_type,
139 int isl_space_tuple_match(__isl_keep isl_space *dim1, enum isl_dim_type dim1_type,
141 int isl_space_compatible(__isl_keep isl_space *dim1,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslParseables.cpp 218 // dim1 = matrix 2nd dimension
219 glslang::TString& AppendTypeName(glslang::TString& s, const char* argOrder, const char* argType, int dim0, int dim1)
232 std::swap(dim0, dim1);
297 dim0 = dim1 = fixedVecSize;
314 (order == 'M' && (dim1 < 1 || dim1 > 4))) {
328 s += ('0' + char(dim1));
355 inline bool IsValid(const char* cname, char retOrder, char retType, char argOrder, char argType, int dim0, int dim1)
377 if (isMat && dim0 == 1 && dim1 == 1) // avoid mat1x1
380 if (isMat && dim1 == 1) // TODO: avoid mat Nx1 until we find the right GLSL profil
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tensor_shape.cc 587 const int64 dim1 = shape.dim_size(i);
588 if (dim0 >= 0 && dim1 >= 0 && dim0 != dim1) {
593 result->AddDim(dim0 >= 0 ? dim0 : dim1);
624 const int64 dim1 = shape.dim_size(i);
625 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);
464 auto dim1 = window.add_dimensions(); local
465 dim1->set_size(2);
466 dim1->set_stride(1)
509 auto dim1 = window.add_dimensions(); local
545 auto dim1 = window.add_dimensions(); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
literal_util.h 1054 int64 dim1 = 0; local
1189 int64 dim1 = 0; local
    [all...]
  /external/tensorflow/tensorflow/contrib/reduce_slice_ops/kernels/
reduce_slice_ops.cc 58 Index dim1 = output.dimension(0); \
61 Index size = dim1 * dim2 * dim3; \
71 XYZ xyz = global_index_to_xyz(global, XYZ(dim1, dim2, dim3)); \
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
convolutional.py     [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_properties.cc 111 const int64 dim1 = InferenceContext::Value(d1); local
114 if (dim1 >= 0 && dim2 >= 0) {
115 CHECK_EQ(dim1, dim2);
116 return RefineDim(dim1, result);
117 } else if (dim1 >= 0 && dim2 < 0) {
118 return RefineDim(dim1, result);
119 } else if (dim1 < 0 && dim2 >= 0) {
121 } else if (dim1 < -1) {
122 return RefineDim(dim1, result);
126 CHECK_EQ(dim1, dim2)
    [all...]
op_level_cost_estimator_test.cc 99 void DescribeTensor4D(int dim0, int dim1, int dim2, int dim3,
104 shape->add_dim()->set_size(dim1);
  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 285 int dim1 = arrayDim; local
289 if (dim1 == 0 && dim1 == arrayDim)
368 int dim1 = arrayDim; local
375 if ((type1 == CLASS && dim1 == 0 && jvmJavaLangString.equals(cname))
516 int dim1 = arrayDim; local
518 if (dim1 == 0 && arrayDim == 0)
    [all...]
CodeGen.java 921 int dim1 = arrayDim; local
927 if (dim1 != arrayDim)
969 int dim1 = arrayDim; local
972 if (dim1 != arrayDim)
975 if (token == '+' && dim1 == 0
977 atStringConcatExpr(expr, type1, dim1, cname1);
1028 private void atStringConcatExpr(Expr expr, int type1, int dim1,
1040 if (is2word(type1, dim1)) {
1048 convToString(type1, dim1);
1168 int dim1 = arrayDim; local
    [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 43 dim1 = [1]
53 b, reduction_indices=dim1).eval(), [False, False])

Completed in 456 milliseconds

1 2