Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2190f8c4
Kaydet (Commit)
2190f8c4
authored
Eyl 20, 2005
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added a class MallocHeapOutputBufferType for types that are passed
as &buffer, &size and allocated by the called function.
üst
a2534c86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
bgenHeapBuffer.py
Tools/bgen/bgen/bgenHeapBuffer.py
+29
-0
No files found.
Tools/bgen/bgen/bgenHeapBuffer.py
Dosyayı görüntüle @
2190f8c4
...
...
@@ -111,3 +111,32 @@ class VarVarHeapOutputBufferType(VarHeapOutputBufferType):
def
passOutput
(
self
,
name
):
return
"
%
s__out__,
%
s__len__, &
%
s__len__"
%
(
name
,
name
,
name
)
class
MallocHeapOutputBufferType
(
HeapOutputBufferType
):
"""Output buffer allocated by the called function -- passed as (&buffer, &size).
Instantiate without parameters.
Call from Python without parameters.
"""
def
getargsCheck
(
self
,
name
):
Output
(
"
%
s__out__ = NULL;"
,
name
)
def
getAuxDeclarations
(
self
,
name
):
return
[]
def
passOutput
(
self
,
name
):
return
"&
%
s__out__, &
%
s__len__"
%
(
name
,
name
)
def
getargsFormat
(
self
):
return
""
def
getargsArgs
(
self
,
name
):
return
None
def
mkvalueFormat
(
self
):
return
"z#"
def
cleanup
(
self
,
name
):
Output
(
"if(
%
s__out__ ) free(
%
s__out__);"
,
name
,
name
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment