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

/external/valgrind/main/VEX/priv/
H A Dguest_mips_helpers.c161 /* Figure out if any part of the guest state contained in minoff
167 Bool guest_mips32_state_requires_precise_mem_exns(Int minoff, Int maxoff) argument
174 if (maxoff < sp_min || minoff > sp_max) {
180 if (maxoff < pc_min || minoff > pc_max) {
191 if (maxoff < fp_min || minoff > fp_max) {
H A Dguest_ppc_helpers.c690 /* Figure out if any part of the guest state contained in minoff
700 Bool guest_ppc32_state_requires_precise_mem_exns ( Int minoff, argument
710 if (maxoff < lr_min || minoff > lr_max) {
716 if (maxoff < r1_min || minoff > r1_max) {
722 if (maxoff < cia_min || minoff > cia_max) {
731 Bool guest_ppc64_state_requires_precise_mem_exns ( Int minoff, argument
747 if (maxoff < lr_min || minoff > lr_max) {
753 if (maxoff < r1_min || minoff > r1_max) {
759 if (maxoff < r2_min || minoff > r2_max) {
765 if (maxoff < cia_min || minoff > cia_ma
[all...]
H A Dguest_arm_helpers.c1044 /* Figure out if any part of the guest state contained in minoff
1050 Bool guest_arm_state_requires_precise_mem_exns ( Int minoff, argument
1058 if (maxoff < sp_min || minoff > sp_max) {
1064 if (maxoff < pc_min || minoff > pc_max) {
1075 if (maxoff < r11_min || minoff > r11_max) {
1086 if (maxoff < r7_min || minoff > r7_max) {
H A Dguest_s390_helpers.c149 /* Figure out if any part of the guest state contained in minoff
153 guest_s390x_state_requires_precise_mem_exns(Int minoff, Int maxoff) argument
164 if (maxoff < lr_min || minoff > lr_max) {
170 if (maxoff < sp_min || minoff > sp_max) {
176 if (maxoff < fp_min || minoff > fp_max) {
182 if (maxoff < ia_min || minoff > ia_max) {
H A Dguest_x86_helpers.c2740 /* Figure out if any part of the guest state contained in minoff
2748 Bool guest_x86_state_requires_precise_mem_exns ( Int minoff, argument
2758 if (maxoff < ebp_min || minoff > ebp_max) {
2764 if (maxoff < esp_min || minoff > esp_max) {
2770 if (maxoff < eip_min || minoff > eip_max) {
H A Dguest_amd64_helpers.c3717 /* Figure out if any part of the guest state contained in minoff
3725 Bool guest_amd64_state_requires_precise_mem_exns ( Int minoff, argument
3735 if (maxoff < rbp_min || minoff > rbp_max) {
3741 if (maxoff < rsp_min || minoff > rsp_max) {
3747 if (maxoff < rip_min || minoff > rip_max) {
H A Dir_opt.c517 On seeing 't = Get(minoff,maxoff)', look up (minoff,maxoff) in the
519 there is no match, add a (minoff,maxoff) :-> t binding.
521 On seeing 'Put (minoff,maxoff) = t or c', first remove in the env
522 any binding which fully or partially overlaps with (minoff,maxoff).
523 Then add a new (minoff,maxoff) :-> t or c binding. */
529 UInt* minoff, UInt* maxoff )
531 *minoff = descr->base;
532 *maxoff = *minoff + descr->nElems*sizeofIRType(descr->elemTy) - 1;
533 vassert((*minoff
528 getArrayBounds( IRRegArray* descr, UInt* minoff, UInt* maxoff ) argument
543 UInt minoff = offset; local
552 UInt minoff, maxoff; local
[all...]
/external/valgrind/main/VEX/
H A Dtest_main.c1101 Int minoff = offset; local
1102 Int maxoff = minoff + size - 1;
1103 tl_assert((minoff & ~0xFFFF) == 0);
1112 if (maxoff < minoffD || maxoffD < minoff)
1114 if (minoff >= minoffD && maxoff <= maxoffD)
/external/elfutils/libcpu/
H A Di386_parse.c2488 static int minoff[3][3] = { { 1000, 1000, 1000 },
2546 minoff[i][0] = MIN (minoff[i][0], runp->operands[i].off1);
2548 minoff[i][1] = MIN (minoff[i][1], runp->operands[i].off2);
2550 minoff[i][2] = MIN (minoff[i][2], runp->operands[i].off3);
2565 // printf ("min1 = %d, min2 = %d, min3 = %d\n", minoff[i][0], minoff[i][1], minoff[
2485 static int minoff[3][3] = { { 1000, 1000, 1000 }, variable
[all...]
/external/valgrind/main/memcheck/
H A Dmc_translate.c1266 Int minoff = offset; local
1267 Int maxoff = minoff + size - 1;
1268 tl_assert((minoff & ~0xFFFF) == 0);
1277 if (maxoff < minoffD || maxoffD < minoff)
1279 if (minoff >= minoffD && maxoff <= maxoffD)

Completed in 192 milliseconds