Home | History | Annotate | Download | only in priv

Lines Matching refs:temporary

56 static HChar  temporary[N_TEMPORARY_BYTES] __attribute__((aligned(8)));
57 static HChar* temporary_first = &temporary[0];
58 static HChar* temporary_curr = &temporary[0];
59 static HChar* temporary_last = &temporary[N_TEMPORARY_BYTES-1];
74 vassert(temporary_first == &temporary[0]);
75 vassert(temporary_last == &temporary[N_TEMPORARY_BYTES-1]);
154 HChar* private_LibVEX_alloc_first = &temporary[0];
155 HChar* private_LibVEX_alloc_curr = &temporary[0];
156 HChar* private_LibVEX_alloc_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;