Searched refs:sizeIn (Results 1 – 5 of 5) sorted by relevance
/external/aac/libArithCoding/src/ |
D | ac_arith_coder.cpp | 532 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/lz4/examples/ |
D | frameCompress.c | 260 size_t sizeIn = 0; in main() local 265 ret = compress_file(inpFp, outFp, &sizeIn, &sizeOut); in main() 271 inpFilename, sizeIn, sizeOut, in main() 272 (double)sizeOut / sizeIn * 100); in main()
|
/external/python/cpython2/Modules/ |
D | almodule.c | 157 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/ |
D | malloc.c | 66 void reallocNotNullPtr(unsigned sizeIn) { in reallocNotNullPtr() argument 70 char *q = (char*)realloc(p, sizeIn); in reallocNotNullPtr()
|
/external/deqp/modules/gles3/functional/ |
D | es3fTransformFeedbackTests.cpp | 489 …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()
|