/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/ |
H A D | bt_split.c | 51 static int bt_broot __P((BTREE *, PAGE *, PAGE *, PAGE *)); 52 static PAGE *bt_page 53 __P((BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t)); 55 static PAGE *bt_psplit 56 __P((BTREE *, PAGE *, PAGE *, PAGE *, indx_t *, size_t)); 57 static PAGE *bt_root 58 __P((BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t)); 59 static int bt_rroot __P((BTREE *, PAGE *, PAGE *, PAGE *)); 60 static recno_t rec_total __P((PAGE *)); 84 PAGE *sp; [all …]
|
H A D | extern.h | 94 int __bt_dleaf __P((BTREE *, const DBT *, PAGE *, u_int)); 96 int __bt_free __P((BTREE *, PAGE *)); 98 PAGE *__bt_new __P((BTREE *, db_pgno_t *)); 107 int __bt_split __P((BTREE *, PAGE *, 117 void __bt_dpage __P((DB *, PAGE *)); 118 int __bt_dmpage __P((PAGE *));
|
H A D | bt_delete.c | 51 static int __bt_curdel __P((BTREE *, const DBT *, PAGE *, u_int)); 52 static int __bt_pdelete __P((BTREE *, PAGE *)); 53 static int __bt_relink __P((BTREE *, PAGE *)); 54 static int __bt_stkacq __P((BTREE *, PAGE **, CURSOR *)); 70 PAGE *h; 146 PAGE **hp; 152 PAGE *h; 296 PAGE *h; 380 PAGE *h; 383 PAGE *pg; [all …]
|
H A D | bt_page.c | 62 PAGE *h; 85 PAGE * 90 PAGE *h;
|
H A D | bt_search.c | 48 static int __bt_snext __P((BTREE *, PAGE *, const DBT *, int *)); 49 static int __bt_sprev __P((BTREE *, PAGE *, const DBT *, int *)); 71 PAGE *h; 153 PAGE *h; 233 PAGE *h;
|
H A D | bt_conv.c | 48 static void mswap __P((PAGE *)); 66 PAGE *h; 134 PAGE *h; 204 PAGE *pg; in mswap()
|
H A D | bt_debug.c | 94 PAGE *h; 137 PAGE *h; in __bt_dmpage() 180 PAGE *h; 200 PAGE *h; 310 PAGE *h;
|
H A D | bt_overflow.c | 87 PAGE *h; 144 PAGE *h, *last; 197 PAGE *h;
|
/illumos-gate/usr/src/cmd/sendmail/db/include/ |
H A D | db_ext.h | 72 PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **))); 74 PAGE **, u_int32_t, int (*)(DBC *, PAGE *))); 75 int __db_dend __P((DBC *, db_pgno_t, PAGE **)); 76 int __db_ditem __P((DBC *, PAGE *, u_int32_t, u_int32_t)); 78 __P((DBC *, PAGE *, u_int32_t, u_int32_t, DBT *, DBT *)); 79 int __db_relink __P((DBC *, u_int32_t, PAGE *, PAGE **, int)); 80 int __db_ddup __P((DBC *, db_pgno_t, int (*)(DBC *, PAGE *))); 82 int, DBT *, db_pgno_t, db_indx_t *, PAGE **, int *)); 100 int (*)(DBC *, u_int32_t, PAGE **))); 102 int __db_doff __P((DBC *, db_pgno_t, int (*)(DBC *, PAGE *))); [all …]
|
H A D | hash_ext.h | 74 void __ham_move_offpage __P((DBC *, PAGE *, u_int32_t, db_pgno_t)); 88 void __ham_putitem __P((PAGE *p, const DBT *, int)); 90 __P((PAGE *p, u_int32_t, u_int32_t, const DBT *, const DBT *)); 93 void __ham_onpage_replace __P((PAGE *, size_t, u_int32_t, int32_t, 97 void __ham_copy_item __P((size_t, PAGE *, u_int32_t, PAGE *)); 98 int __ham_add_ovflpage __P((DBC *, PAGE *, int, PAGE **)); 99 int __ham_new_page __P((DB *, u_int32_t, u_int32_t, PAGE **)); 100 int __ham_del_page __P((DBC *, PAGE *)); 101 int __ham_put_page __P((DB *, PAGE *, int32_t)); 102 int __ham_dirty_page __P((DB *, PAGE *)); [all …]
|
H A D | btree_ext.h | 5 PAGE *, u_int32_t, int (*)(const DBT *, const DBT *))); 10 int __bam_mswap __P((PAGE *)); 22 int __bam_ditem __P((DBC *, PAGE *, u_int32_t)); 23 int __bam_adjindx __P((DBC *, PAGE *, u_int32_t, u_int32_t, int)); 30 int __bam_new __P((DBC *, u_int32_t, PAGE **)); 32 int __bam_free __P((DBC *, PAGE *)); 37 PAGE **, db_indx_t *, DBT *, DBT *, u_int32_t, u_int32_t)); 38 int __bam_ritem __P((DBC *, PAGE *, u_int32_t, DBT *)); 65 db_recno_t __bam_total __P((PAGE *)); 71 int __bam_copy __P((DB *, PAGE *, PAGE *, u_int32_t, u_int32_t));
|
H A D | db_page.h | 161 } PAGE; typedef 164 #define LSN(p) (((PAGE *)p)->lsn) 165 #define PGNO(p) (((PAGE *)p)->pgno) 166 #define PREV_PGNO(p) (((PAGE *)p)->prev_pgno) 167 #define NEXT_PGNO(p) (((PAGE *)p)->next_pgno) 168 #define NUM_ENT(p) (((PAGE *)p)->entries) 169 #define HOFFSET(p) (((PAGE *)p)->hf_offset) 170 #define LEVEL(p) (((PAGE *)p)->level) 171 #define TYPE(p) (((PAGE *)p)->type) 213 #define P_OVERHEAD (SSZA(PAGE, inp)) [all …]
|
H A D | hash.h | 56 PAGE *split_buf; /* Temporary buffer for splits. */ 63 PAGE *pagep; /* The current page. */ 66 PAGE *dpagep; /* Duplicate page pointer. */ 118 ((R) = __ham_get_page(D, 0, (PAGE **)&((I)->hdr))) != 0 && \ 127 (void)__ham_put_page(D, (PAGE *)(I)->hdr, \
|
/illumos-gate/usr/src/cmd/sendmail/db/db/ |
H A D | db_dup.c | 27 PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **))); 29 PAGE **, db_indx_t *, u_int32_t, int (*)(DBC *, u_int32_t, PAGE **))); 42 PAGE **pp; 44 int (*newfunc) __P((DBC *, u_int32_t, PAGE **)); 48 PAGE *pagep; 114 PAGE **pp; 116 int (*freefunc) __P((DBC *, PAGE *)); 118 PAGE *pagep; 165 PAGE **pp; 168 PAGE *h; [all …]
|
H A D | db_overflow.c | 90 PAGE *h; 171 int (*newfunc) __P((DBC *, u_int32_t, PAGE **)); 174 PAGE *pagep, *lastp; 262 PAGE *h; 292 int (*freefunc) __P((DBC *, PAGE *)); 295 PAGE *pagep; 355 PAGE *pagep;
|
/illumos-gate/usr/src/cmd/sendmail/db/btree/ |
H A D | bt_page.c | 74 PAGE **pagepp; 79 PAGE *h; 91 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0) 115 (void)memp_fput(dbp->mpf, (PAGE *)meta, DB_MPOOL_DIRTY); 154 PAGE *h; 176 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0) { 189 (void)memp_fput(dbp->mpf, (PAGE *)meta, 0); 215 ret = memp_fput(dbp->mpf, (PAGE *)meta, DB_MPOOL_DIRTY);
|
H A D | bt_split.c | 62 static int __bam_broot __P((DBC *, PAGE *, PAGE *, PAGE *)); 64 static int __bam_pinsert __P((DBC *, EPG *, PAGE *, PAGE *)); 65 static int __bam_psplit __P((DBC *, EPG *, PAGE *, PAGE *, db_indx_t *)); 67 static int __ram_root __P((DBC *, PAGE *, PAGE *, PAGE *)); 180 PAGE *lp, *rp; 261 PAGE *lp, *rp, *tp; 402 PAGE *rootp, *lp, *rp; 527 PAGE *rootp, *lp, *rp; 567 PAGE *lchild, *rchild; 574 PAGE *ppage; [all …]
|
H A D | bt_put.c | 65 static int __bam_ndup __P((DBC *, PAGE *, u_int32_t)); 66 static int __bam_ovput __P((DBC *, PAGE *, u_int32_t, DBT *)); 68 DBT *, PAGE *, u_int32_t, u_int32_t, u_int32_t)); 69 static u_int32_t __bam_partsize __P((DBT *, PAGE *, u_int32_t)); 81 PAGE **hp; 90 PAGE *h; 374 PAGE *h; 437 PAGE *h; 465 PAGE *h; 569 PAGE *h; [all …]
|
H A D | bt_open.c | 214 PAGE *root; 231 memp_fget(dbp->mpf, &pgno, DB_MPOOL_CREATE, (PAGE **)&meta)) != 0) { 245 (void)memp_fput(dbp->mpf, (PAGE *)meta, 0); 286 if ((ret = memp_fput(dbp->mpf, (PAGE *)meta, DB_MPOOL_DIRTY)) != 0)
|
H A D | bt_rsearch.c | 75 PAGE *h; 289 PAGE *h; 334 PAGE *h; 362 PAGE *h; in __bam_total()
|
H A D | bt_stat.c | 43 PAGE *h; 73 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&h)) != 0) 87 if ((ret = memp_fget(dbp->mpf, &pgno, 0, (PAGE **)&meta)) != 0)
|
/illumos-gate/usr/src/cmd/lp/filter/postscript/postreverse/ |
H A D | postreverse.c | 353 WritePage(int fd, PAGE * p, int global, char *bptr) in WritePage() 397 PAGE *page = document->page[count]; in WriteDocument() 512 PAGE ** 515 PAGE **pages = NULL, *page; in DocumentPages() 528 pages = (PAGE **) nrealloc(pages, in DocumentPages() 529 (allocated_slots + BLOCKSIZE) * sizeof (PAGE *)); in DocumentPages() 531 BLOCKSIZE * sizeof (PAGE *)); in DocumentPages() 534 page = (PAGE *) nmalloc(sizeof (PAGE)); in DocumentPages() 555 memset(page, 0, sizeof (PAGE)); in DocumentPages() 636 PAGE *p; in PrintDocumentInfo()
|
H A D | postreverse.h | 55 typedef struct _page PAGE; typedef 76 PAGE **page;
|
/illumos-gate/usr/src/cmd/sendmail/db/hash/ |
H A D | hash_rec.c | 87 PAGE *pagep; 160 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0) 163 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0) 196 PAGE *pagep; 251 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0) 255 if ((ret = __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0) 296 __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0) 301 __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0) 342 __ham_put_page(file_dbp, (PAGE *)pagep, 0)) != 0) 347 __ham_put_page(file_dbp, (PAGE *)pagep, 1)) != 0) [all …]
|
H A D | hash_page.c | 524 PAGE *p; in __ham_putitem() 558 PAGE *p; in __ham_reputpair() 609 PAGE *p; 706 PAGE *n_pagep, *nn_pagep; 767 PAGE *n_pagep, *p_pagep; 1017 PAGE *pagep; in __ham_onpage_replace() 1070 PAGE **pp, *old_pagep, *temp_pagep, *new_pagep; 1395 PAGE *src_page; 1397 PAGE *dest_page; 1428 PAGE *pagep; [all …]
|