Home
last modified time | relevance | path

Searched refs:sizeIn (Results 1 – 4 of 4) sorted by relevance

/external/aac/libArithCoding/src/
Dac_arith_coder.cpp532 static inline void copyTableAmrwbArith2(UCHAR tab[], int sizeIn, int sizeOut) { in copyTableAmrwbArith2() argument
539 if (sizeIn < sizeOut) { in copyTableAmrwbArith2()
540 tab[sizeOut + 0] = tab[sizeIn + 0]; in copyTableAmrwbArith2()
541 tab[sizeOut + 1] = tab[sizeIn + 1]; in copyTableAmrwbArith2()
542 if (sizeIn < (sizeOut >> 2)) { in copyTableAmrwbArith2()
544 } else if (sizeIn == (sizeOut >> 2)) { in copyTableAmrwbArith2()
549 j = sizeIn - 1; in copyTableAmrwbArith2()
560 if (sizeOut < (sizeIn >> 2)) { in copyTableAmrwbArith2()
562 } else if (sizeOut == (sizeIn >> 2)) { in copyTableAmrwbArith2()
571 tab[sizeOut + 0] = tab[sizeIn + 0]; in copyTableAmrwbArith2()
[all …]
/external/python/cpython2/Modules/
Dalmodule.c157 param->sizeIn = PyString_GET_SIZE(value)+1; /*account for NUL*/ in python2param()
169 param->sizeIn = PySequence_Size(value); in python2param()
170 param->value.ptr = PyMem_NEW(int, param->sizeIn); in python2param()
175 param->sizeIn = PySequence_Size(value); in python2param()
176 param->value.ptr = PyMem_NEW(long long, param->sizeIn); in python2param()
180 for (i = 0; i < param->sizeIn; i++) { in python2param()
1453 pvs[i].sizeIn = pinfo[i].maxElems; in al_GetParams()
1458 pvs[i].sizeIn = pinfo[i].maxElems; in al_GetParams()
1462 pvs[i].sizeIn = 32; in al_GetParams()
1479 pvs[i].sizeIn /= pinfo[i].maxElems2; in al_GetParams()
/external/clang/test/Analysis/
Dmalloc.c66 void reallocNotNullPtr(unsigned sizeIn) { in reallocNotNullPtr() argument
70 char *q = (char*)realloc(p, sizeIn); in reallocNotNullPtr()
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp489 …const Attribute* sizeIn = &(*std::find_if(attributes.begin(), attributes.end(), AttributeNameEqual… in computeTransformFeedbackOutputs() local
490 output.type = sizeIn->type; in computeTransformFeedbackOutputs()
491 output.inputs.push_back(sizeIn); in computeTransformFeedbackOutputs()