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

/vbox/src/recompiler/
H A Dexec.c184 #define L2_SIZE (1 << L2_BITS) macro
428 ALLOC(p, sizeof(void *) * L2_SIZE);
432 lp = p + ((index >> (i * L2_BITS)) & (L2_SIZE - 1));
440 ALLOC(pd, sizeof(PageDesc) * L2_SIZE);
446 return pd + (index & (L2_SIZE - 1));
471 *lp = p = qemu_mallocz(sizeof(void *) * L2_SIZE);
473 lp = p + ((index >> (i * L2_BITS)) & (L2_SIZE - 1));
484 *lp = pd = qemu_malloc(sizeof(PhysPageDesc) * L2_SIZE);
486 for (i = 0; i < L2_SIZE; i++) {
492 return pd + (index & (L2_SIZE
[all...]

Completed in 1761 milliseconds