Home | History | Annotate | Download | only in jni

Lines Matching defs:allocs

1521     RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numVtxIDs * sizeof(RsAllocation));
1522 rsaMeshGetVertices(con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs);
1525 _env->SetIntArrayRegion(_ids, i, 1, (const jint*)&allocs[i]);
1528 free(allocs);
1536 RsAllocation *allocs = (RsAllocation*)malloc((uint32_t)numIndices * sizeof(RsAllocation));
1539 rsaMeshGetIndices(con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices);
1542 _env->SetIntArrayRegion(_idxIds, i, 1, (const jint*)&allocs[i]);
1546 free(allocs);