Lines Matching defs:assembly
160 class ScanlineAssembly : public Assembly {
164 : Assembly(size), mKey(needs) { }
255 sp<Assembly> assembly = gCodeCache.lookup(key);
256 if (assembly == 0) {
257 // create a new assembly region
267 // finally, cache this assembly
271 LOGE("error generating or caching assembly. Reverting to NOP.");
277 assembly = a;
280 // release the previous assembly
286 c->scanline_as = assembly.get();
287 c->scanline_as->incStrong(c); // hold on to assembly
288 c->scanline = (void(*)(context_t* c))assembly->base();