Searched refs:ByteCount (Results 1 - 25 of 36) sorted by relevance

12

/external/jhead/
H A Dmakernote.c40 int ByteCount; local
59 ByteCount = Components * BytesPerFormat[Format];
61 if (ByteCount > 4){
65 if (OffsetVal+ByteCount > ExifLength){
73 printf("Map: %05d-%05d: Data for makernote tag %04x\n",OffsetVal, OffsetVal+ByteCount, Tag);
95 for (a=0;a<ByteCount;a++){
115 PrintFormatNumber(ValuePtr, Format, ByteCount);
156 void ShowMakerNoteGeneric(unsigned char * ValuePtr, int ByteCount) argument
159 for (a=0;a<ByteCount;a++){
166 printf(" (%d bytes)", ByteCount);
174 ProcessMakerNote(unsigned char * ValuePtr, int ByteCount, unsigned char * OffsetBase, unsigned ExifLength) argument
[all...]
H A Dgpsinfo.c146 unsigned ByteCount; local
166 ByteCount = Components * ComponentSize;
170 ByteCount);
173 if (ByteCount > 4){
177 if (OffsetVal+ByteCount > ExifLength){
272 if (ByteCount > EXIF_ASCII_PREFIX_LEN &&
275 ByteCount < GPS_PROCESSING_METHOD_LEN + EXIF_ASCII_PREFIX_LEN ?
276 ByteCount - EXIF_ASCII_PREFIX_LEN : GPS_PROCESSING_METHOD_LEN;
303 for (a=0;a<ByteCount;a++){
324 PrintFormatNumber(ValuePtr+a*ComponentSize, Format, ByteCount);
[all...]
H A Dexif.c388 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount) argument
412 ByteCount -= s;
413 if (ByteCount <= 0) break;
592 int ByteCount; local
611 ByteCount = Components * BytesPerFormat[Format];
613 if (ByteCount > 4){
617 if (OffsetVal+ByteCount > ExifLength){
629 printf("Map: %05d-%05d: Data for tag %04x\n",OffsetVal, OffsetVal+ByteCount, Tag);
640 ProcessMakerNote(ValuePtr, ByteCount, OffsetBase, ExifLength);
662 if(ByteCount>
[all...]
H A Djhead.h178 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount);
208 extern void ProcessMakerNote(unsigned char * DirStart, int ByteCount,
212 void ProcessGpsInfo(unsigned char * ValuePtr, int ByteCount,
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream.h167 // stream is advanced to the end of the stream (so ByteCount() will return
172 virtual int64 ByteCount() const = 0;
227 virtual int64 ByteCount() const = 0;
H A Dzero_copy_stream_impl.cc100 int64 FileInputStream::ByteCount() const { function in class:google::protobuf::io::FileInputStream
101 return impl_.ByteCount();
199 int64 FileOutputStream::ByteCount() const { function in class:google::protobuf::io::FileOutputStream
200 return impl_.ByteCount();
290 int64 IstreamInputStream::ByteCount() const { function in class:google::protobuf::io::IstreamInputStream
291 return impl_.ByteCount();
330 int64 OstreamOutputStream::ByteCount() const { function in class:google::protobuf::io::OstreamOutputStream
331 return impl_.ByteCount();
363 bytes_retired_ += streams_[0]->ByteCount();
382 // Assume that ByteCount() ca
402 int64 ConcatenatingInputStream::ByteCount() const { function in class:google::protobuf::io::ConcatenatingInputStream
457 int64 LimitingInputStream::ByteCount() const { function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl_lite.h76 int64 ByteCount() const;
109 int64 ByteCount() const;
141 int64 ByteCount() const;
213 int64 ByteCount() const;
300 int64 ByteCount() const;
H A Dzero_copy_stream_impl.h94 int64 ByteCount() const;
176 int64 ByteCount() const;
228 int64 ByteCount() const;
271 int64 ByteCount() const;
315 int64 ByteCount() const;
341 int64 ByteCount() const;
H A Dprinter_unittest.cc77 buffer[output.ByteCount()] = '\0';
103 buffer[output.ByteCount()] = '\0';
138 buffer[output.ByteCount()] = '\0';
163 buffer[output.ByteCount()] = '\0';
204 buffer[output.ByteCount()] = '\0';
H A Dcoded_stream_unittest.cc191 EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
208 EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
239 EXPECT_EQ(kVarintCases_case.size + 1, input.ByteCount());
241 EXPECT_EQ(1, input.ByteCount());
275 EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
292 EXPECT_EQ(kVarintCases_case.size, coded_output.ByteCount());
295 EXPECT_EQ(kVarintCases_case.size, output.ByteCount());
309 EXPECT_EQ(kVarintCases_case.size, coded_output.ByteCount());
312 EXPECT_EQ(kVarintCases_case.size, output.ByteCount());
336 EXPECT_EQ(10, coded_output.ByteCount());
1068 int64 ByteCount() const { GOOGLE_LOG(FATAL) << "Not implemented."; return 0; } function in class:google::protobuf::io::__anon10692::ReallyBigInputStream
[all...]
H A Dgzip_stream.h88 int64 ByteCount() const;
179 int64 ByteCount() const;
H A Dzero_copy_stream_impl_lite.cc99 int64 ArrayInputStream::ByteCount() const { function in class:google::protobuf::io::ArrayInputStream
140 int64 ArrayOutputStream::ByteCount() const { function in class:google::protobuf::io::ArrayOutputStream
181 int64 StringOutputStream::ByteCount() const { function in class:google::protobuf::io::StringOutputStream
290 int64 CopyingInputStreamAdaptor::ByteCount() const { function in class:google::protobuf::io::CopyingInputStreamAdaptor
355 int64 CopyingOutputStreamAdaptor::ByteCount() const { function in class:google::protobuf::io::CopyingOutputStreamAdaptor
H A Dzero_copy_stream_unittest.cc212 EXPECT_EQ(output->ByteCount(), 68);
214 int result = output->ByteCount();
230 EXPECT_EQ(input->ByteCount(), 68);
244 EXPECT_EQ(output->ByteCount(), 200055);
246 int result = output->ByteCount();
261 EXPECT_EQ(input->ByteCount(), 200055);
303 size = output.ByteCount();
331 size = output.ByteCount();
354 size = output.ByteCount();
366 size = output.ByteCount();
[all...]
H A Dgzip_stream.cc164 int64 GzipInputStream::ByteCount() const { function in class:google::protobuf::io::GzipInputStream
292 int64 GzipOutputStream::ByteCount() const { function in class:google::protobuf::io::GzipOutputStream
H A Dtokenizer_unittest.cc144 int64 ByteCount() const { return array_stream_.ByteCount(); } function in class:google::protobuf::io::__anon10695::TestInputStream
737 EXPECT_EQ(strlen("foo"), input.ByteCount());
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DSimpleFontDataATSUI.mm63 ByteCount tableSize;
H A DComplexTextControllerATSUI.cpp213 ByteCount sizes[] = { sizeof(ATSLineLayoutOptions), sizeof(Boolean), sizeof(ATSULayoutOperationOverrideSpecifier) };
252 ByteCount propTableSize;
300 ByteCount styleSizes[4] = { sizeof(fontSize), sizeof(fontID), sizeof(verticalFlip), sizeof(kerningInhibitFactor) };
/external/protobuf/src/google/protobuf/compiler/
H A Dzip_writer.cc114 info.offset = raw_output_->ByteCount();
141 uint32 dir_ofs = raw_output_->ByteCount();
171 uint32 dir_len = output.ByteCount();
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DAudioFilePlayer.h121 OSStatus (*Read)(struct S_AudioFileManager *afm, char *buffer, ByteCount *len);
H A DAudioFileReaderThread.c248 ByteCount dataChunkSize;
383 ByteCount dataChunkSize;
418 static OSStatus AudioFileManager_Read(AudioFileManager *afm, char *buffer, ByteCount *len)
/external/skia/src/images/
H A DSkMovie_gif.cpp68 int size = image->ExtensionBlocks[j].ByteCount;
226 eb->ByteCount == 4) {
256 eb->ByteCount == 4) {
274 eb->ByteCount == 4) {
/external/protobuf/src/google/protobuf/
H A Dmessage_lite.cc244 int original_byte_count = output->ByteCount();
249 int final_byte_count = output->ByteCount();
/external/skia/src/ports/
H A DSkFontHost_mac_atsui.cpp154 static const ByteCount sizes[] = {
297 ByteCount size;
527 ByteCount size;
574 ByteCount size;
583 ByteCount size;
/external/giflib/
H A Dgifalloc.c269 ep->ByteCount=Len;
270 ep->Bytes = (char *)malloc(ep->ByteCount);
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
H A DNetscapePluginMac.mm898 ByteCount inputLength = string.length() * sizeof(UniChar);
899 ByteCount inputRead;
900 ByteCount outputLength;
901 ByteCount maxOutputLength = string.length() * sizeof(UniChar);

Completed in 403 milliseconds

12