OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UncompressedSize
(Results
1 - 13
of
13
) sorted by null
/external/llvm/lib/Support/
Compression.cpp
67
size_t
UncompressedSize
) {
68
UncompressedBuffer.resize(
UncompressedSize
);
70
(Bytef *)UncompressedBuffer.data(), (uLongf *)&
UncompressedSize
,
74
__msan_unpoison(UncompressedBuffer.data(),
UncompressedSize
);
75
UncompressedBuffer.resize(
UncompressedSize
);
92
size_t
UncompressedSize
) {
/external/llvm/include/llvm/Support/
Compression.h
48
size_t
UncompressedSize
);
/prebuilts/go/darwin-x86/src/archive/zip/
zip_test.go
72
if got, want := fh2.
UncompressedSize
, wantUncompressedSize; got != want {
73
t.Errorf("
UncompressedSize
: got %d, want %d\n", got, want)
93
UncompressedSize
: 987654321,
97
testHeaderRoundTrip(fh, fh.
UncompressedSize
, uint64(fh.
UncompressedSize
), t)
298
if got, want := f0.
UncompressedSize
, uint32(uint32max); got != want {
299
t.Errorf("
UncompressedSize
%d, want %d", got, want)
struct.go
85
UncompressedSize
uint32 // Deprecated: Use UncompressedSize64 instead.
108
return int64(fi.fh.
UncompressedSize
)
129
fh.
UncompressedSize
= uint32max
131
fh.
UncompressedSize
= uint32(fh.UncompressedSize64)
writer.go
99
b.uint32(h.
UncompressedSize
)
308
fh.
UncompressedSize
= uint32max
312
fh.
UncompressedSize
= uint32(fh.UncompressedSize64)
334
b.uint32(fh.
UncompressedSize
)
reader.go
247
f.
UncompressedSize
= b.uint32()
249
f.UncompressedSize64 = uint64(f.
UncompressedSize
)
reader_test.go
375
size := uint64(f.
UncompressedSize
)
380
t.Errorf("%v: read %v bytes but f.
UncompressedSize
== %v", f.Name, g, size)
/prebuilts/go/linux-x86/src/archive/zip/
zip_test.go
72
if got, want := fh2.
UncompressedSize
, wantUncompressedSize; got != want {
73
t.Errorf("
UncompressedSize
: got %d, want %d\n", got, want)
93
UncompressedSize
: 987654321,
97
testHeaderRoundTrip(fh, fh.
UncompressedSize
, uint64(fh.
UncompressedSize
), t)
298
if got, want := f0.
UncompressedSize
, uint32(uint32max); got != want {
299
t.Errorf("
UncompressedSize
%d, want %d", got, want)
struct.go
85
UncompressedSize
uint32 // Deprecated: Use UncompressedSize64 instead.
108
return int64(fi.fh.
UncompressedSize
)
129
fh.
UncompressedSize
= uint32max
131
fh.
UncompressedSize
= uint32(fh.UncompressedSize64)
writer.go
99
b.uint32(h.
UncompressedSize
)
308
fh.
UncompressedSize
= uint32max
312
fh.
UncompressedSize
= uint32(fh.UncompressedSize64)
334
b.uint32(fh.
UncompressedSize
)
reader.go
247
f.
UncompressedSize
= b.uint32()
249
f.UncompressedSize64 = uint64(f.
UncompressedSize
)
reader_test.go
375
size := uint64(f.
UncompressedSize
)
380
t.Errorf("%v: read %v bytes but f.
UncompressedSize
== %v", f.Name, g, size)
/external/zlib/src/contrib/minizip/
zip.c
1032
ZPOS64_T
UncompressedSize
= 0;
1040
err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)
UncompressedSize
,8);
[
all
...]
Completed in 687 milliseconds