Home
last modified time | relevance | path

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

/external/zstd/tests/
Dparamgrill.c494 paramVariation(paramValues_t* ptr, memoTable_t* mtAll, const U32 nbChanges) in paramVariation() argument
502 const U32 changeID = (U32)FUZ_rand(&g_rand) % (mtAll[p.vals[strt_ind]].varLen << 1); in paramVariation()
503 paramVaryOnce(mtAll[p.vals[strt_ind]].varArray[changeID >> 1], in paramVariation()
1444 static void freeMemoTableArray(memoTable_t* const mtAll) { in freeMemoTableArray() argument
1446 if(mtAll == NULL) { return; } in freeMemoTableArray()
1448 free(mtAll[i].table); in freeMemoTableArray()
1450 free(mtAll); in freeMemoTableArray()
1461 memoTable_t* const mtAll = (memoTable_t*)calloc(sizeof(memoTable_t),(ZSTD_STRATEGY_MAX + 1)); in createMemoTableArray() local
1464 if(mtAll == NULL) { in createMemoTableArray()
1469 mtAll[i].varLen = sanitizeVarArray(mtAll[i].varArray, varyLen, varyParams, i); in createMemoTableArray()
[all …]