Lines Matching refs:w
86 w, err := fromZip.CreateHeaderAndroid(&FileHeader{
95 _, err = w.Write(make([]byte, size))
135 if g, w := toZipReader.File[0].CompressedSize64, uint64(size); g != w {
136 t.Errorf("Expected CompressedSize64 %d, got %d", w, g)
139 if g, w := toZipReader.File[0].UncompressedSize64, uint64(size); g != w {
140 t.Errorf("Expected UnompressedSize64 %d, got %d", w, g)
189 if g, w := d.directoryRecords, uint64(1); g != w {
190 t.Errorf("wanted directoryRecords %d, got %d", w, g)
193 if g, w := d.directorySize, uint64(uint32max); g != w {
194 t.Errorf("wanted directorySize %d, got %d", w, g)
197 if g, w := d.directoryOffset, uint64(uint32max); g != w {
198 t.Errorf("wanted directoryOffset %d, got %d", w, g)
215 if g, w := d.directoryRecords, uint64(1); g != w {
216 t.Errorf("wanted directoryRecords %d, got %d", w, g)
219 if g, w := d.directoryOffset, uint64(uint32max); g <= w {
220 t.Errorf("wanted directoryOffset > %d, got %d", w, g)