Home | History | Annotate | Download | only in memcheck

Lines Matching refs:ok

414 /* Check representation invariants; if OK return NULL; else a
498 return NULL; /* ok */
581 /* Ok, there's no entry in the secondary map, so we'll have
780 Bool ok = True;
796 ok = False;
798 return ok;
806 Bool ok = True;
814 ok = False;
819 return ok;
1119 Bool ok = VG_(parse_Addr) (ppc, result1);
1120 if (!ok)
1125 ok = VG_(parse_Addr) (ppc, result2);
1126 if (!ok)
1142 Bool ok = parse_range(ppc, &start, &end);
1143 if (!ok)
1204 ULong pessim[4]; /* only used when p-l-ok=yes */
1211 Bool ok;
1231 --partial-loads-ok=yes. n_addrs_bad is redundant (the relevant
1241 ok = get_vbits8(ai, &vbits8);
1244 if (!ok) n_addrs_bad++;
1246 pessim64 |= (ok ? V_BITS8_DEFINED : V_BITS8_UNDEFINED);
1257 /* If there's no possibility of getting a partial-loads-ok
1264 /* The partial-loads-ok excemption might apply. Find out if it
1288 ok = False;
1290 ok |= pessim[j] != V_BITS64_DEFINED;
1291 tl_assert(ok);
1355 ULong pessim64 = V_BITS64_DEFINED; /* only used when p-l-ok=yes */
1361 Bool ok;
1370 --partial-loads-ok=yes. n_addrs_bad is redundant (the relevant
1376 ok = get_vbits8(ai, &vbits8);
1379 if (!ok) n_addrs_bad++;
1381 pessim64 |= (ok ? V_BITS8_DEFINED : V_BITS8_UNDEFINED);
1389 /* If there's no possibility of getting a partial-loads-ok
1396 /* The partial-loads-ok excemption might apply. Find out if it
1470 Bool ok;
1537 ok = set_vbits8(ai, vbits8);
1538 if (!ok) n_addrs_bad++;
2910 /* We have 8-alignment at -12, hence ok to do 8 at -12 and 4 at
3925 /* Ok, a is safe to read. */
3943 Bool ok = is_mem_addressable ( base, size, &bad_addr );
3945 if (!ok) {
4040 (2) is OK because memory newly obtained from mmap really is defined
4044 (1) is OK because the only way to make the memory usable is via
4060 been made that way by (1), and so it's OK to change it to
5450 /* Copy Vbits from/to address 'a'. Returns: 1 == OK, 2 == alignment
5465 Bool ok;
5481 ok = set_vbits8(a + i, ((UChar*)vbits)[i]);
5482 tl_assert(ok);
5487 ok = get_vbits8(a + i, &vbits8);
5488 tl_assert(ok);
5693 --partial-loads-ok needs to be enabled by default on all platforms.
5763 if VG_BOOL_CLO(arg, "--partial-loads-ok", MC_(clo_partial_loads_ok)) {}
5814 Bool ok = parse_ignore_ranges(tmp_str);
5815 if (!ok) {
5895 " --partial-loads-ok=no|yes too hard to explain here; see manual [yes]\n"
5901 " --ignore-ranges=0xPP-0xQQ[,0xRR-0xSS] assume given addresses are OK\n"
5977 /* Ok, we have to allocate a new one. */
6557 Bool ok = is_mem_addressable ( arg[1], arg[2], &bad_addr );
6558 if (!ok)
6560 *ret = ok ? (UWord)NULL : bad_addr;
6845 Bool ok
6847 *ret = ok ? 1 : 0;