Lines Matching defs:heap_begin

30   const uptr heap_begin;
33 JavaContext(jptr heap_begin, jptr heap_size)
34 : heap_begin(heap_begin)
69 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
71 DPrintf("#%d: java_init(%p, %p)\n", thr->tid, heap_begin, heap_size);
73 CHECK_GT(heap_begin, 0);
75 CHECK_EQ(heap_begin % kHeapAlignment, 0);
77 CHECK_LT(heap_begin, heap_begin + heap_size);
78 jctx = new(jctx_buf) JavaContext(heap_begin, heap_size);
98 CHECK_GE(ptr, jctx->heap_begin);
99 CHECK_LE(ptr + size, jctx->heap_begin + jctx->heap_size);
111 CHECK_GE(ptr, jctx->heap_begin);
112 CHECK_LE(ptr + size, jctx->heap_begin + jctx->heap_size);
125 CHECK_GE(src, jctx->heap_begin);
126 CHECK_LE(src + size, jctx->heap_begin + jctx->heap_size);
127 CHECK_GE(dst, jctx->heap_begin);
128 CHECK_LE(dst + size, jctx->heap_begin + jctx->heap_size);
163 CHECK_GE(addr, jctx->heap_begin);
164 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
174 CHECK_GE(addr, jctx->heap_begin);
175 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
184 CHECK_GE(addr, jctx->heap_begin);
185 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
195 CHECK_GE(addr, jctx->heap_begin);
196 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
205 CHECK_GE(addr, jctx->heap_begin);
206 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
217 CHECK_GE(addr, jctx->heap_begin);
218 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
227 CHECK_GE(addr, jctx->heap_begin);
228 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
237 CHECK_GE(addr, jctx->heap_begin);
238 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);
247 CHECK_GE(addr, jctx->heap_begin);
248 CHECK_LT(addr, jctx->heap_begin + jctx->heap_size);