HomeSort by: relevance | last modified time | path
    Searched refs:bufhead (Results 1 - 9 of 9) sorted by relevancy

  /src/sbin/fsck_ext2fs/
utilities.c 153 bufhead.b_next = bufhead.b_prev = &bufhead;
168 bp->b_prev = &bufhead;
169 bp->b_next = bufhead.b_next;
170 bufhead.b_next->b_prev = bp;
171 bufhead.b_next = bp;
174 bufhead.b_size = i; /* save number of buffers */
185 for (bp = bufhead.b_next; bp != &bufhead; bp = bp->b_next
    [all...]
fsck.h 100 extern struct bufarea bufhead; /* head of list of other blks in filesys */
main.c 90 struct bufarea bufhead; variable in typeref:struct:bufarea
  /src/sbin/fsck_ffs/
utilities.c 150 bufhead.b_next = bufhead.b_prev = &bufhead;
168 bp->b_prev = &bufhead;
169 bp->b_next = bufhead.b_next;
170 bufhead.b_next->b_prev = bp;
171 bufhead.b_next = bp;
174 bufhead.b_size = i; /* save number of buffers */
185 for (bp = bufhead.b_next; bp != &bufhead; bp = bp->b_next
    [all...]
fsck.h 142 extern struct bufarea bufhead; /* head of list of other blks in filesys */
main.c 73 struct bufarea bufhead; variable in typeref:struct:bufarea
  /src/lib/libc/db/hash/
hash_buf.c 72 static BUFHEAD *newbuf(HTAB *, uint32_t, BUFHEAD *);
88 #define MRU hashp->bufhead.next
89 #define LRU hashp->bufhead.prev
91 #define MRU_INSERT(B) BUF_INSERT((B), &hashp->bufhead)
103 BUFHEAD *
107 BUFHEAD *prev_bp,
111 BUFHEAD *bp;
143 (BUFHEAD *)(void *)((u_long)bp | is_disk_mask);
157 static BUFHEAD *
    [all...]
hash.h 47 typedef struct _bufhead BUFHEAD;
50 BUFHEAD *prev; /* LRU links */
51 BUFHEAD *next; /* LRU links */
52 BUFHEAD *ovfl; /* Overflow page buffer header */
64 typedef BUFHEAD **SEGMENT;
104 BUFHEAD *cpage; /* Current page */
118 BUFHEAD bufhead; /* Header of buffer lru list */ member in struct:htab
150 #define PTROF(X) ((BUFHEAD *)(void *)((u_long)(X)&~0x3))
  /src/sbin/fsdb/
fsdb.c 65 struct bufarea bufhead; variable in typeref:struct:bufarea

Completed in 20 milliseconds