HomeSort by: relevance | last modified time | path
    Searched defs:ov_magic (Results 1 - 2 of 2) sorted by relevancy

  /src/libexec/ld.elf_so/
xmalloc.c 110 * The order of elements is critical: ov_magic must overlay the low order
111 * bits of ov_next, and ov_magic can not be a valid ov_next bit pattern.
123 #define ov_magic ovu.ovu_magic macro
244 op->ov_magic = MAGIC;
314 ASSERT(op->ov_magic == MAGIC); /* make sure it was in use */
316 if (op->ov_magic != MAGIC)
325 op->ov_next = nextf[size]; /* also clobbers ov_magic */
343 if (op->ov_magic != MAGIC) {
  /src/lib/libbsdmalloc/
malloc.c 78 * The order of elements is critical: ov_magic must overlay the low order
79 * bits of ov_next, and ov_magic can not be a valid ov_next bit pattern.
91 #define ov_magic ovu.ovu_magic macro
249 op->ov_magic = MAGIC;
322 ASSERT(op->ov_magic == MAGIC); /* make sure it was in use */
324 if (op->ov_magic != MAGIC)
334 op->ov_next = nextf[(unsigned int)size];/* also clobbers ov_magic */
372 if (op->ov_magic == MAGIC) {

Completed in 47 milliseconds