Searched defs:varCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/cpu_ref/
H A DrsCpuExecutable.h66 const char* const * fieldName, size_t varCount,
78 mFieldName(fieldName), mExportedVarCount(varCount),
65 ScriptExecutable(void** fieldAddress, bool* fieldIsObject, const char* const * fieldName, size_t varCount, InvokeFunc_t* invokeFunctions, size_t funcCount, ForEachFunc_t* forEachFunctions, uint32_t* forEachSignatures, size_t forEachCount, ReduceDescription *reduceDescriptions, size_t reduceCount, const char** pragmaKeys, const char** pragmaValues, size_t pragmaCount, const char **globalNames, const void **globalAddresses, const size_t *globalSizes, const uint32_t *globalProperties, size_t globalEntries, bool isThreadable, uint32_t buildChecksum) argument
H A DrsCpuExecutable.cpp309 size_t varCount = 0; local
339 if (sscanf(line, EXPORT_VAR_STR "%zu", &varCount) != 1) {
344 fieldAddress = new void*[varCount];
349 fieldIsObject = new bool[varCount];
354 fieldName = new char*[varCount];
359 for (size_t i = 0; i < varCount; ++i) {
579 if (varNum < varCount) {
688 fieldAddress, fieldIsObject, fieldName, varCount,
714 for (size_t i = 0; i < varCount; i++) {
H A DrsCpuScript.cpp299 size_t varCount = mScriptExec->getExportedVariableCount(); local
300 if (varCount > 0) {
301 mBoundAllocs = new Allocation *[varCount];
302 memset(mBoundAllocs, 0, varCount * sizeof(*mBoundAllocs));

Completed in 410 milliseconds