Home | History | Annotate | Download | only in priv

Lines Matching defs:temporary

57 static HChar  temporary[N_TEMPORARY_BYTES] __attribute__((aligned(REQ_ALIGN)));
58 static HChar* temporary_first = &temporary[0];
59 static HChar* temporary_curr = &temporary[0];
60 static HChar* temporary_last = &temporary[N_TEMPORARY_BYTES-1];
71 HChar* private_LibVEX_alloc_first = &temporary[0];
72 HChar* private_LibVEX_alloc_curr = &temporary[0];
73 HChar* private_LibVEX_alloc_last = &temporary[N_TEMPORARY_BYTES-1];
80 vassert(temporary_first == &temporary[0]);
81 vassert(temporary_last == &temporary[N_TEMPORARY_BYTES-1]);
162 if (private_LibVEX_alloc_first == &temporary[0]) pool = "TEMP";
164 vex_printf("VEX temporary storage exhausted.\n");
171 vpanic("VEX temporary storage exhausted.\n"
172 "Increase N_{TEMPORARY,PERMANENT}_BYTES and recompile.");
182 temporary_curr = &temporary[0];
183 private_LibVEX_alloc_curr = &temporary[0];
191 temporary[i] = 0x00;