Home
last modified time | relevance | path

Searched refs:opage (Results 1 – 25 of 129) sorted by relevance

123456

/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/nilfs2/
H A Dbtnode.c171 struct page *opage = obh->b_page; in nilfs_btnode_prepare_change_key() local
172 lock_page(opage); in nilfs_btnode_prepare_change_key()
175 if (unlikely(oldkey != opage->index)) in nilfs_btnode_prepare_change_key()
176 NILFS_PAGE_BUG(opage, in nilfs_btnode_prepare_change_key()
199 unlock_page(opage); in nilfs_btnode_prepare_change_key()
224 struct page *opage; in nilfs_btnode_commit_change_key() local
230 opage = obh->b_page; in nilfs_btnode_commit_change_key()
231 if (unlikely(oldkey != opage->index)) in nilfs_btnode_commit_change_key()
232 NILFS_PAGE_BUG(opage, in nilfs_btnode_commit_change_key()
243 opage->index = obh->b_blocknr = newkey; in nilfs_btnode_commit_change_key()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/fs/nilfs2/
H A Dbtnode.c171 struct page *opage = obh->b_page; in nilfs_btnode_prepare_change_key() local
172 lock_page(opage); in nilfs_btnode_prepare_change_key()
175 if (unlikely(oldkey != opage->index)) in nilfs_btnode_prepare_change_key()
176 NILFS_PAGE_BUG(opage, in nilfs_btnode_prepare_change_key()
199 unlock_page(opage); in nilfs_btnode_prepare_change_key()
224 struct page *opage; in nilfs_btnode_commit_change_key() local
230 opage = obh->b_page; in nilfs_btnode_commit_change_key()
231 if (unlikely(oldkey != opage->index)) in nilfs_btnode_commit_change_key()
232 NILFS_PAGE_BUG(opage, in nilfs_btnode_commit_change_key()
243 opage->index = obh->b_blocknr = newkey; in nilfs_btnode_commit_change_key()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/nilfs2/
H A Dbtnode.c171 struct page *opage = obh->b_page; in nilfs_btnode_prepare_change_key() local
172 lock_page(opage); in nilfs_btnode_prepare_change_key()
175 if (unlikely(oldkey != opage->index)) in nilfs_btnode_prepare_change_key()
176 NILFS_PAGE_BUG(opage, in nilfs_btnode_prepare_change_key()
199 unlock_page(opage); in nilfs_btnode_prepare_change_key()
224 struct page *opage; in nilfs_btnode_commit_change_key() local
230 opage = obh->b_page; in nilfs_btnode_commit_change_key()
231 if (unlikely(oldkey != opage->index)) in nilfs_btnode_commit_change_key()
232 NILFS_PAGE_BUG(opage, in nilfs_btnode_commit_change_key()
243 opage->index = obh->b_blocknr = newkey; in nilfs_btnode_commit_change_key()
[all …]
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/libsrc/apeg-1.2.1/
H A Dogg.c19 ogg_page opage; member
133 if(!ogg_page_bos(&info->opage)) in alogg_open()
136 ogg_stream_pagein(&info->ostream[0], &info->opage); in alogg_open()
138 ogg_stream_pagein(&info->ostream[1], &info->opage); in alogg_open()
144 ogg_stream_pagein(&test, &info->opage); in alogg_open()
210 if(ogg_sync_pageout(&info->osync, &info->opage) <= 0) in alogg_open()
219 ogg_stream_pagein(&info->ostream[0], &info->opage); in alogg_open()
221 ogg_stream_pagein(&info->ostream[1], &info->opage); in alogg_open()
348 } while(!ogg_page_eos(&info->opage)); in alogg_open()
779 if(!ogg_page_bos(&info->opage)) in alogg_reopen()
[all …]
/dports/multimedia/ogmtools/ogmtools-1.5/
H A Dqueue.cpp85 int q_c::add_ogg_page(ogg_page *opage, int header_page, int index_serial = -1) { in add_ogg_page() argument
88 if (opage == NULL) in add_ogg_page()
90 if ((opage->header == NULL) || (opage->body == NULL)) { in add_ogg_page()
100 qpage->mpage->og = q_c::copy_ogg_page(opage); in add_ogg_page()
101 qpage->mpage->timestamp = make_timestamp(ogg_page_granulepos(opage)); in add_ogg_page()
/dports/textproc/halibut/halibut-1.2/
H A Dbk_pdf.c418 object *opage; in pdf_backend() local
420 opage = new_object(&olist); in pdf_backend()
421 page->spare = opage; in pdf_backend()
434 object *opage, *cstr; in pdf_backend() local
462 objref(opage, cstr); in pdf_backend()
463 objtext(opage, "\n"); in pdf_backend()
579 objtext(opage, buf); in pdf_backend()
588 objtext(opage, ">>"); in pdf_backend()
591 objtext(opage, ">>\n"); in pdf_backend()
594 objtext(opage, "]\n"); in pdf_backend()
[all …]
/dports/audio/libsndfile/libsndfile-1.0.31/src/
H A Dogg.c179 if (!ogg_page_bos (&odata->opage)) in ogg_read_first_page()
193 ogg_stream_reset_serialno (&odata->ostream, ogg_page_serialno (&odata->opage)) ; in ogg_read_first_page()
195 if (ogg_stream_pagein (&odata->ostream, &odata->opage) < 0) in ogg_read_first_page()
316 { nn = ogg_sync_next_page (psf, &odata->opage, -1, NULL) ; in ogg_stream_next_page()
324 if (ogg_page_serialno (&odata->opage) == odata->ostream.serialno) in ogg_stream_next_page()
328 if (ogg_page_eos (&odata->opage)) in ogg_stream_next_page()
331 if (ogg_stream_pagein (&odata->ostream, &odata->opage) < 0) in ogg_stream_next_page()
420 { ret = ogg_sync_next_page (psf, &odata->opage, end - position, &position) ; in ogg_sync_last_page_before()
423 if (ogg_page_serialno (&odata->opage) == serialno) in ogg_sync_last_page_before()
424 { uint64_t page_gp = ogg_page_granulepos (&odata->opage) ; in ogg_sync_last_page_before()
[all …]
H A Dogg_speex.c190 while (ogg_sync_pageout (&odata->osync, &odata->opage) == 1) in spx_read_header()
192 { ogg_stream_init (&odata->ostream, ogg_page_serialno (&odata->opage)) ; in spx_read_header()
196 if (ogg_page_serialno (&odata->opage) != odata->ostream.serialno) in spx_read_header()
198 ogg_stream_reset_serialno (&odata->ostream, ogg_page_serialno (&odata->opage)) ; in spx_read_header()
202 ogg_stream_pagein (&odata->ostream, &odata->opage) ; in spx_read_header()
203 page_granule = ogg_page_granulepos (&odata->opage) ; in spx_read_header()
204 page_nb_packets = ogg_page_packets (&odata->opage) ; in spx_read_header()
/dports/databases/postgresql10-plperl/postgresql-10.19/src/backend/access/hash/
H A Dhashpage.c634 Page opage; in _hash_expandtable() local
705 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
876 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1092 Page opage; in _hash_splitbucket() local
1103 opage = BufferGetPage(obuf); in _hash_splitbucket()
1123 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1134 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1144 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1145 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1258 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-client/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql10-docs/postgresql-10.19/src/backend/access/hash/
H A Dhashpage.c634 Page opage; in _hash_expandtable() local
705 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
876 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1092 Page opage; in _hash_splitbucket() local
1103 opage = BufferGetPage(obuf); in _hash_splitbucket()
1123 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1134 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1144 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1145 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1258 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql10-plpython/postgresql-10.19/src/backend/access/hash/
H A Dhashpage.c634 Page opage; in _hash_expandtable() local
705 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
876 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1092 Page opage; in _hash_splitbucket() local
1103 opage = BufferGetPage(obuf); in _hash_splitbucket()
1123 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1134 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1144 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1145 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1258 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql10-contrib/postgresql-10.19/src/backend/access/hash/
H A Dhashpage.c634 Page opage; in _hash_expandtable() local
705 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
876 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1092 Page opage; in _hash_splitbucket() local
1103 opage = BufferGetPage(obuf); in _hash_splitbucket()
1123 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1134 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1144 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1145 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1258 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql10-client/postgresql-10.19/src/backend/access/hash/
H A Dhashpage.c634 Page opage; in _hash_expandtable() local
705 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
876 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1092 Page opage; in _hash_splitbucket() local
1103 opage = BufferGetPage(obuf); in _hash_splitbucket()
1123 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1134 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1144 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1145 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1258 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-contrib/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-plpython/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-plperl/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-docs/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-server/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql10-server/postgresql-10.19/src/backend/access/hash/
H A Dhashpage.c634 Page opage; in _hash_expandtable() local
705 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
876 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1092 Page opage; in _hash_splitbucket() local
1103 opage = BufferGetPage(obuf); in _hash_splitbucket()
1123 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1134 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1144 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1145 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1258 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql12-contrib/postgresql-12.9/src/backend/access/hash/
H A Dhashpage.c626 Page opage; in _hash_expandtable() local
697 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
868 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1084 Page opage; in _hash_splitbucket() local
1095 opage = BufferGetPage(obuf); in _hash_splitbucket()
1120 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1131 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1141 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1142 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1255 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql12-client/postgresql-12.9/src/backend/access/hash/
H A Dhashpage.c626 Page opage; in _hash_expandtable() local
697 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
868 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1084 Page opage; in _hash_splitbucket() local
1095 opage = BufferGetPage(obuf); in _hash_splitbucket()
1120 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1131 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1141 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1142 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1255 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql11-pltcl/postgresql-11.14/src/backend/access/hash/
H A Dhashpage.c636 Page opage; in _hash_expandtable() local
707 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
878 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1094 Page opage; in _hash_splitbucket() local
1105 opage = BufferGetPage(obuf); in _hash_splitbucket()
1130 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1141 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1151 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1152 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1265 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql14-server/postgresql-14.1/src/backend/access/hash/
H A Dhashpage.c623 Page opage; in _hash_expandtable() local
694 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
865 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1081 Page opage; in _hash_splitbucket() local
1092 opage = BufferGetPage(obuf); in _hash_splitbucket()
1117 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1128 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1138 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1139 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1252 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]
/dports/databases/postgresql14-plpython/postgresql-14.1/src/backend/access/hash/
H A Dhashpage.c623 Page opage; in _hash_expandtable() local
694 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
865 opage = BufferGetPage(buf_oblkno); in _hash_expandtable()
1081 Page opage; in _hash_splitbucket() local
1092 opage = BufferGetPage(obuf); in _hash_splitbucket()
1117 omaxoffnum = PageGetMaxOffsetNumber(opage); in _hash_splitbucket()
1128 if (ItemIdIsDead(PageGetItemId(opage, ooffnum))) in _hash_splitbucket()
1138 itup = (IndexTuple) PageGetItem(opage, in _hash_splitbucket()
1139 PageGetItemId(opage, ooffnum)); in _hash_splitbucket()
1252 opage = BufferGetPage(obuf); in _hash_splitbucket()
[all …]

123456