| /openbsd/src/lib/libc/db/btree/ |
| D | bt_split.c | 45 static int bt_broot(BTREE *, PAGE *, PAGE *, PAGE *); 46 static PAGE *bt_page(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); 48 static PAGE *bt_psplit(BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t); 49 static PAGE *bt_root(BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t); 50 static int bt_rroot(BTREE *, PAGE *, PAGE *, PAGE *); 51 static recno_t rec_total(PAGE *); 73 __bt_split(BTREE *t, PAGE *sp, const DBT *key, const DBT *data, int flags, in __bt_split() 80 PAGE *h, *l, *r, *lchild, *rchild; in __bt_split() 329 static PAGE * 330 bt_page(BTREE *t, PAGE *h, PAGE **lp, PAGE **rp, indx_t *skip, size_t ilen) in bt_page() [all …]
|
| D | extern.h | 40 int __bt_dleaf(BTREE *, const DBT *, PAGE *, u_int); 42 int __bt_free(BTREE *, PAGE *); 44 PAGE *__bt_new(BTREE *, pgno_t *); 52 int __bt_split(BTREE *, PAGE *, 62 void __bt_dpage(PAGE *);
|
| D | bt_delete.c | 45 static int __bt_curdel(BTREE *, const DBT *, PAGE *, u_int); 46 static int __bt_pdelete(BTREE *, PAGE *); 47 static int __bt_relink(BTREE *, PAGE *); 48 static int __bt_stkacq(BTREE *, PAGE **, CURSOR *); 61 PAGE *h; in __bt_delete() 135 __bt_stkacq(BTREE *t, PAGE **hp, CURSOR *c) in __bt_stkacq() 140 PAGE *h; in __bt_stkacq() 282 PAGE *h; in __bt_bdelete() 364 __bt_pdelete(BTREE *t, PAGE *h) in __bt_pdelete() 367 PAGE *pg; in __bt_pdelete() [all …]
|
| D | bt_search.c | 42 static int __bt_snext(BTREE *, PAGE *, const DBT *, int *); 43 static int __bt_sprev(BTREE *, PAGE *, const DBT *, int *); 62 PAGE *h; in __bt_search() 142 __bt_snext(BTREE *t, PAGE *h, const DBT *key, int *exactp) in __bt_snext() 177 __bt_sprev(BTREE *t, PAGE *h, const DBT *key, int *exactp) in __bt_sprev()
|
| D | bt_page.c | 54 __bt_free(BTREE *t, PAGE *h) in __bt_free() 77 PAGE * 80 PAGE *h; in __bt_new()
|
| D | bt_conv.c | 40 static void mswap(PAGE *); 55 PAGE *h; in __bt_pgin() 120 PAGE *h; in __bt_pgout() 189 mswap(PAGE *pg) in mswap()
|
| D | bt_debug.c | 53 PAGE *h; in __bt_dump() 92 __bt_dmpage(PAGE *h) in __bt_dmpage() 128 PAGE *h; in __bt_dnpage() 142 __bt_dpage(PAGE *h) in __bt_dpage() 242 PAGE *h; in __bt_stat()
|
| D | bt_overflow.c | 76 PAGE *h; in __ovfl_get() 132 PAGE *h, *last; in __ovfl_put() 183 PAGE *h; in __ovfl_delete()
|
| D | btree.h | 82 } PAGE; typedef 245 PAGE *page; /* the (pinned) page */ 308 PAGE *bt_pinned; /* page pinned across calls */
|
| D | bt_seq.c | 145 PAGE *h; in __bt_seqset() 230 PAGE *h; in __bt_seqadv() 328 PAGE *h; in __bt_first()
|
| D | bt_put.c | 66 PAGE *h; in __bt_put() 261 PAGE *h; in bt_fast()
|
| D | bt_utils.c | 145 PAGE *h; in __bt_cmp()
|
| D | bt_open.c | 342 PAGE *meta, *root; in nroot()
|
| /openbsd/src/gnu/usr.sbin/mkhybrid/src/diag/ |
| D | dump.c | 40 #define PAGE 256 macro 130 c1 = buffer[file_addr & (PAGE-1)]; in getbyte() 132 if ((file_addr & (PAGE-1)) == 0) showblock(0); in getbyte() 165 if (c == 'a') file_addr -= PAGE; in main() 166 if (c == 'b') file_addr += PAGE; in main() 193 file_addr &= ~(PAGE-1); in main()
|
| D | isodump.c | 42 #define PAGE sizeof(buffer) macro
|
| /openbsd/src/sys/dev/pcmcia/ |
| D | if_xe.c | 629 PAGE(sc, 0); in xe_intr() 640 PAGE(sc, 40); in xe_intr() 651 PAGE(sc, 0); in xe_intr() 720 PAGE(sc, savedpage); in xe_intr() 737 PAGE(sc, 0); in xe_get() 898 PAGE(sc, 2); in xe_mdi_read() 924 PAGE(sc, 2); in xe_mdi_write() 994 PAGE(sc, 0); in xe_stop() 997 PAGE(sc, 1); in xe_stop() 1001 PAGE(sc, 4); in xe_stop() [all …]
|
| D | if_xereg.h | 279 #define PAGE(sc, page) \ macro
|
| /openbsd/src/gnu/lib/libreadline/ |
| D | chardefs.h | 144 #ifdef PAGE 145 #undef PAGE 147 #define PAGE CTRL('L') macro
|
| /openbsd/src/gnu/usr.bin/binutils/ld/scripttempl/ |
| D | tic54xcoff.sc | 11 /*PAGE 0 : */ prog (RXI) : ORIGIN = 0x00000080, LENGTH = 0xFF00 12 /*PAGE 1 : */ data (W) : ORIGIN = 0x01000080, LENGTH = 0xFF80
|
| /openbsd/src/gnu/usr.bin/binutils-2.17/ld/scripttempl/ |
| D | tic54xcoff.sc | 11 /*PAGE 0 : */ prog (RXI) : ORIGIN = 0x00000080, LENGTH = 0xFF00 12 /*PAGE 1 : */ data (W) : ORIGIN = 0x01000080, LENGTH = 0xFF80
|
| /openbsd/src/lib/libc/db/recno/ |
| D | rec_delete.c | 114 PAGE *h; in rec_rdelete() 143 __rec_dleaf(BTREE *t, PAGE *h, u_int32_t idx) in __rec_dleaf()
|
| D | extern.h | 39 int __rec_dleaf(BTREE *, PAGE *, u_int32_t);
|
| D | rec_search.c | 61 PAGE *h; in __rec_search()
|
| D | rec_open.c | 56 PAGE *h; in __rec_open()
|
| D | rec_put.c | 184 PAGE *h; in __rec_iput()
|