Searched refs:dim (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/media/libeffects/testlibs/
H A DAudioCoefInterpolator.cpp35 size_t dim = nInDims - 1; local
37 while (dim-- > 0) {
38 mInDimOffsets[dim] = mInDimOffsets[dim + 1] * mInDims[dim + 1];
45 size_t dim = mNumInDims; local
46 while (dim-- > 0) {
47 if (UNLIKELY(intCoord[dim] < 0)) {
48 fracCoord[dim] = 0;
49 } else if (UNLIKELY(intCoord[dim] >
59 getCoefRecurse(size_t index, const uint32_t fracCoord[], audio_coef_t out[], size_t dim) argument
[all...]
H A DAudioCoefInterpolator.h84 // dim The input dimensions we are currently interpolating. This
87 audio_coef_t out[], size_t dim);
/frameworks/base/tests/RenderScriptTests/ComputePerf/src/com/example/android/rs/computeperf/
H A Dlaunchtestxlw.rs20 const int dim = 2048;
25 p += x * dim;
26 for (int i=0; i<dim; i++) {
H A DLaunchTest.java33 final int dim = mScript_xlw.get_dim();
35 mAllocationX = Allocation.createSized(rs, Element.U8(rs), dim);
37 tb.setX(dim);
38 tb.setY(dim);
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Ds_hcb.h107 Int dim; member in struct:__anon556
H A Dhuffspec_fxp.cpp319 Int dim; local
414 dim = DIMENSION_2; /* set codebook dimension */
418 dim = DIMENSION_4;
497 pQuantSpec += dim;
498 idx_count -= dim;
H A Dunpack_idx.cpp47 pHuffCodebook->dim == DIMENSION_4
105 the variable HuffCodebook->dim.
124 LAV <= 2 if dim == 4
126 This restricts mod == 3 if dim == 4
127 and mod == {3, 8, 9, 13, 17} if dim == 2
168 IF (pHuffCodebook->dim == 4)
346 if (pHuffCodebook->dim == DIMENSION_4)
381 * Calculate pQuantSpec[2] if dim == 4
382 * Calculate pQuantSpec[0] if dim == 2
401 * Calculate pQuantSpec[3] if dim
[all...]
/frameworks/base/opengl/tests/textures/
H A Dtextures.cpp62 GLint dim = w<h ? w : h;
105 glDrawTexiOES(0, 0, 0, dim/2, dim/2);
108 glDrawTexiOES(dim/2, 0, 0, dim/2, dim/2);
111 glDrawTexiOES(0, dim/2, 0, dim/2, dim/2);
114 glDrawTexiOES(dim/
[all...]
/frameworks/base/opengl/tests/filter/
H A Dfilter.cpp66 GLint dim = w<h ? w : h;
139 //glDrawTexiOES(0, 0, 0, dim, dim);
143 { 0, dim },
144 { dim, dim },
145 { dim, 0 }
160 glScissor(0,dim,dim,h-dim);
[all...]
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java105 DigitsKeyListener dim = new DigitsKeyListener();
107 dim.mAccepted = new char[accepted.length()];
108 accepted.getChars(0, accepted.length(), dim.mAccepted, 0);
110 return dim;
/frameworks/base/opengl/tests/hwc/
H A DhwcCommit.cpp170 void setSourceDim(HwcTestDim dim);
731 HwcTestDim dim(w, startDim.height());
732 Rectangle rect(format, dim);
755 HwcTestDim dim(startDim.width(), h);
756 Rectangle rect(format, dim);
779 HwcTestDim dim(w, startDim.height());
780 Rectangle rect(format, dim);
802 HwcTestDim dim(startDim.width(), h);
803 Rectangle rect(format, dim);
837 HwcTestDim dim(
1044 HwcTestDim dim = searchLimits.sourceCrop; local
1322 setSourceDim(HwcTestDim dim) argument
[all...]
H A DhwcTestLib.cpp259 HwcTestDim dim; local
269 if (!in || ((chStart != '<') && (chStart != '['))) { return dim; }
273 if (!in) { return dim; }
274 dim.setWidth(val);
276 if (!in || (ch != ',')) { return dim; }
280 if (!in) { return dim; }
281 dim.setHeight(val);
285 if (!in) { return dim; }
287 || ((chStart == '[') && (ch != ']'))) { return dim; }
290 if ((dim
[all...]
/frameworks/base/libs/rs/
H A DrsAdapter.cpp84 void rsi_Adapter1DSetConstraint(Context *rsc, RsAdapter1D va, RsDimension dim, uint32_t value) { argument
86 switch (dim) {
202 void rsi_Adapter2DSetConstraint(Context *rsc, RsAdapter2D va, RsDimension dim, uint32_t value) { argument
204 switch (dim) {
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Dqpisf_2s.c41 Word16 dim, /* input : dimention of vector */
446 Word16 dim, /* input : dimention of vector */
463 for (j = 0; j < dim; j++)
479 p_dico = &dico[index * dim];
480 for (j = 0; j < dim; j++)
492 Word16 dim, /* input : dimention of vector */
516 for (j = 0; j < dim; j++)
443 Sub_VQ( Word16 * x, Word16 * dico, Word16 dim, Word16 dico_size, Word32 * distance ) argument
489 VQ_stage1( Word16 * x, Word16 * dico, Word16 dim, Word16 dico_size, Word16 * index, Word16 surv ) argument
/frameworks/base/tools/aidl/
H A DAST.cpp148 string dim; local
150 dim += "[]";
152 fprintf(to, "%s%s %s", this->type->QualifiedName().c_str(), dim.c_str(),
684 string dim; local
686 dim += "[]";
689 dim.c_str());
/frameworks/compile/slang/
H A Dslang_rs_spec_table.cpp33 #define ENUM_RS_MATRIX_DATA_TYPE(x, name, dim) x,
268 // ENUM_RS_MATRIX_TYPE(type, cname, dim)
343 #define ENUM_RS_MATRIX_DATA_TYPE(x, name, dim) \
344 new RSMatrixDataTypeSpec(#x , name, dim),
H A Dslang_rs_type_spec.h90 #define ENUM_RS_MATRIX_DATA_TYPE(x, name, dim) RS_DT_ ## x,
/frameworks/base/opengl/tests/gl_perf/
H A Dgl2_perf.cpp120 GLint dim = w < h ? w : h;
/frameworks/base/opengl/tests/finish/
H A Dfinish.cpp66 GLint dim = w<h ? w : h;
/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
H A Dacelp.h154 Word16 dim, /* input : dimention of vector */
/frameworks/base/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp335 GLint dim = w < h ? w : h;
/frameworks/base/opengl/tests/gl_basic/
H A Dgl_basic.cpp267 GLint dim = w < h ? w : h;
/frameworks/base/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp291 GLint dim = w < h ? w : h;
/frameworks/base/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp446 GLint dim = w < h ? w : h;
/frameworks/base/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp401 GLint dim = w < h ? w : h;

Completed in 1498 milliseconds

12