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
a3f4457b
Kaydet (Commit)
a3f4457b
authored
Nis 17, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Speed up reading of small files. This avoids multiple C read() calls on pyc files.
üst
006917ec
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
fileio.c
Modules/_io/fileio.c
+11
-3
No files found.
Modules/_io/fileio.c
Dosyayı görüntüle @
a3f4457b
...
...
@@ -572,6 +572,7 @@ new_buffersize(fileio *self, size_t currentsize
#endif
)
{
size_t
addend
;
#ifdef HAVE_FSTAT
if
(
end
!=
(
Py_off_t
)
-
1
)
{
/* Files claiming a size smaller than SMALLCHUNK may
...
...
@@ -589,9 +590,16 @@ new_buffersize(fileio *self, size_t currentsize
}
#endif
/* Expand the buffer by an amount proportional to the current size,
giving us amortized linear-time behavior. Use a less-than-double
growth factor to avoid excessive allocation. */
return
currentsize
+
(
currentsize
>>
3
)
+
6
;
giving us amortized linear-time behavior. For bigger sizes, use a
less-than-double growth factor to avoid excessive allocation. */
if
(
currentsize
>
65536
)
addend
=
currentsize
>>
3
;
else
addend
=
256
+
currentsize
;
if
(
addend
<
SMALLCHUNK
)
/* Avoid tiny read() calls. */
addend
=
SMALLCHUNK
;
return
addend
+
currentsize
;
}
static
PyObject
*
...
...
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