Searched refs:PAGE (Results 1 - 25 of 55) sorted by relevance

123

/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_page.c64 PAGE *h;
87 PAGE *
92 PAGE *h;
H A Dbt_split.c53 static int bt_broot __P((BTREE *, PAGE *, PAGE *, PAGE *));
54 static PAGE *bt_page
55 __P((BTREE *, PAGE *, PAGE **, PAGE **, indx_t *, size_t));
57 static PAGE *bt_psplit
58 __P((BTREE *, PAGE *, PAGE *, PAG
[all...]
H A Dextern.h96 int __bt_dleaf __P((BTREE *, const DBT *, PAGE *, u_int));
98 int __bt_free __P((BTREE *, PAGE *));
100 PAGE *__bt_new __P((BTREE *, db_pgno_t *));
109 int __bt_split __P((BTREE *, PAGE *,
119 void __bt_dpage __P((DB *, PAGE *));
120 int __bt_dmpage __P((PAGE *));
H A Dbt_conv.c50 static void mswap __P((PAGE *));
68 PAGE *h;
136 PAGE *h;
206 PAGE *pg;
H A Dbt_delete.c53 static int __bt_curdel __P((BTREE *, const DBT *, PAGE *, u_int));
54 static int __bt_pdelete __P((BTREE *, PAGE *));
55 static int __bt_relink __P((BTREE *, PAGE *));
56 static int __bt_stkacq __P((BTREE *, PAGE **, CURSOR *));
72 PAGE *h;
139 * hp: pointer to current, pinned PAGE pointer
148 PAGE **hp;
154 PAGE *h;
298 PAGE *h;
382 PAGE *
[all...]
H A Dbt_search.c50 static int __bt_snext __P((BTREE *, PAGE *, const DBT *, int *));
51 static int __bt_sprev __P((BTREE *, PAGE *, const DBT *, int *));
73 PAGE *h;
155 PAGE *h;
235 PAGE *h;
H A Dbt_overflow.c58 * nextpg field of the PAGE header.
89 PAGE *h;
146 PAGE *h, *last;
199 PAGE *h;
/illumos-gate/usr/src/cmd/lp/filter/postscript/postreverse/
H A Dpostreverse.h55 typedef struct _page PAGE; typedef in typeref:struct:_page
76 PAGE **page;
H A Dpostreverse.c355 WritePage(int fd, PAGE * p, int global, char *bptr)
399 PAGE *page = document->page[count];
511 * get the pages from a document and return a pointer a list of PAGE
514 PAGE **
517 PAGE **pages = NULL, *page;
530 pages = (PAGE **) nrealloc(pages,
531 (allocated_slots + BLOCKSIZE) * sizeof (PAGE *));
533 BLOCKSIZE * sizeof (PAGE *));
536 page = (PAGE *) nmalloc(sizeof (PAGE));
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/include/
H A Ddb_ext.h72 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 *)));
[all...]
H A Dhash_ext.h74 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 *));
[all...]
H A Dbtree_ext.h5 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 *, PAG
[all...]
H A Ddb_page.h41 BTREE METADATA PAGE LAYOUT
70 HASH METADATA PAGE LAYOUT
105 MAIN PAGE LAYOUT
125 * sizeof(PAGE) == 26 bytes, and the following indices are guaranteed to be
161 } PAGE; typedef in typeref:struct:_db_page
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 *)
[all...]
H A Dhash.h56 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/btree/
H A Dbt_page.c68 * PUBLIC: int __bam_new __P((DBC *, u_int32_t, PAGE **));
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);
149 * PUBLIC: int __bam_free __P((DBC *, PAGE *));
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 *)met
[all...]
H A Dbt_split.c62 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 *));
[all...]
H A Dbt_put.c65 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));
76 * PUBLIC: PAGE **, db_indx_t *, DBT *, DBT *, u_int32_t, u_int32_t));
81 PAGE **hp;
90 PAGE *h;
374 PAGE *h;
437 PAGE *h;
460 * PUBLIC: int __bam_ritem __P((DBC *, PAGE *, u_int32_
[all...]
H A Dbt_conv.c71 * PUBLIC: int __bam_mswap __P((PAGE *));
75 PAGE *pg;
H A Dbt_open.c214 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 Dbt_rsearch.c75 PAGE *h;
289 PAGE *h;
334 PAGE *h;
358 * PUBLIC: db_recno_t __bam_total __P((PAGE *));
362 PAGE *h;
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_dup.c27 PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **)));
29 PAGE **, db_indx_t *, u_int32_t, int (*)(DBC *, u_int32_t, PAGE **)));
36 * PUBLIC: PAGE **, db_indx_t *, int (*)(DBC *, u_int32_t, PAGE **)));
42 PAGE **pp;
44 int (*newfunc) __P((DBC *, u_int32_t, PAGE **));
48 PAGE *pagep;
109 * PUBLIC: PAGE **, u_int32_
[all...]
H A Ddb_overflow.c90 PAGE *h;
164 * PUBLIC: int (*)(DBC *, u_int32_t, PAGE **)));
171 int (*newfunc) __P((DBC *, u_int32_t, PAGE **));
174 PAGE *pagep, *lastp;
262 PAGE *h;
286 * PUBLIC: int __db_doff __P((DBC *, db_pgno_t, int (*)(DBC *, PAGE *)));
292 int (*freefunc) __P((DBC *, PAGE *));
295 PAGE *pagep;
355 PAGE *pagep;
/illumos-gate/usr/src/cmd/lp/filter/postscript/common/
H A Dcomments.h110 #define PAGE "%%Page:" macro
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/
H A Drec_delete.c127 PAGE *h;
158 PAGE *h;
/illumos-gate/usr/src/cmd/sendmail/db/hash/
H A Dhash_conv.c47 tpgno = PGNO((PAGE *)pp);

Completed in 289 milliseconds

123