HomeSort by relevance Sort by last modified time
    Searched refs:ByteCount (Results 1 - 25 of 31) sorted by null

1 2

  /external/jhead/
makernote.c 40 int ByteCount;
59 ByteCount = Components * BytesPerFormat[Format];
61 if (ByteCount > 4){
65 if (OffsetVal+ByteCount > ExifLength){
66 // Bogus pointer offset and / or bytecount value
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)
159 for (a=0;a<ByteCount;a++)
    [all...]
gpsinfo.c 148 unsigned ByteCount;
168 ByteCount = Components * ComponentSize;
171 printf("GPS tag %x format %s #components %d componentsize %d bytecount %d", Tag, formatStr(Format), Components, ComponentSize,
172 ByteCount);
175 if (ByteCount > 4){
179 if (OffsetVal+ByteCount > ExifLength){
180 // Bogus pointer offset and / or bytecount value
274 if (ByteCount > EXIF_ASCII_PREFIX_LEN &&
277 ByteCount < GPS_PROCESSING_METHOD_LEN + EXIF_ASCII_PREFIX_LEN ?
278 ByteCount - EXIF_ASCII_PREFIX_LEN : GPS_PROCESSING_METHOD_LEN
    [all...]
jhead.h 173 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount);
202 extern void ProcessMakerNote(unsigned char * DirStart, int ByteCount,
206 void ProcessGpsInfo(unsigned char * ValuePtr, int ByteCount,
exif.c 383 void PrintFormatNumber(void * ValuePtr, int Format, int ByteCount)
407 ByteCount -= s;
408 if (ByteCount <= 0) break;
511 int ByteCount;
530 ByteCount = Components * BytesPerFormat[Format];
532 if (ByteCount > 4){
536 if (OffsetVal+ByteCount > ExifLength){
537 // Bogus pointer offset and / or bytecount value
548 printf("Map: %05d-%05d: Data for tag %04x\n",OffsetVal, OffsetVal+ByteCount, Tag);
559 ProcessMakerNote(ValuePtr, ByteCount, OffsetBase, ExifLength)
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.h 167 // 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;
zero_copy_stream_impl.cc 100 int64 FileInputStream::ByteCount() const {
101 return impl_.ByteCount();
199 int64 FileOutputStream::ByteCount() const {
200 return impl_.ByteCount();
290 int64 IstreamInputStream::ByteCount() const {
291 return impl_.ByteCount();
330 int64 OstreamOutputStream::ByteCount() const {
331 return impl_.ByteCount();
363 bytes_retired_ += streams_[0]->ByteCount();
382 // Assume that ByteCount() can be used to find out how much we actuall
    [all...]
zero_copy_stream_impl_lite.h 76 int64 ByteCount() const;
109 int64 ByteCount() const;
141 int64 ByteCount() const;
213 int64 ByteCount() const;
300 int64 ByteCount() const;
zero_copy_stream_impl.h 94 int64 ByteCount() const;
176 int64 ByteCount() const;
228 int64 ByteCount() const;
271 int64 ByteCount() const;
315 int64 ByteCount() const;
341 int64 ByteCount() const;
gzip_stream.h 88 int64 ByteCount() const;
179 int64 ByteCount() const;
printer_unittest.cc 77 buffer[output.ByteCount()] = '\0';
103 buffer[output.ByteCount()] = '\0';
138 buffer[output.ByteCount()] = '\0';
163 buffer[output.ByteCount()] = '\0';
204 buffer[output.ByteCount()] = '\0';
coded_stream_unittest.cc 191 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());
    [all...]
zero_copy_stream_impl_lite.cc 99 int64 ArrayInputStream::ByteCount() const {
140 int64 ArrayOutputStream::ByteCount() const {
181 int64 StringOutputStream::ByteCount() const {
290 int64 CopyingInputStreamAdaptor::ByteCount() const {
355 int64 CopyingOutputStreamAdaptor::ByteCount() const {
zero_copy_stream_unittest.cc 212 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...]
gzip_stream.cc 164 int64 GzipInputStream::ByteCount() const {
292 int64 GzipOutputStream::ByteCount() const {
tokenizer_unittest.cc 144 int64 ByteCount() const { return array_stream_.ByteCount(); }
737 EXPECT_EQ(strlen("foo"), input.ByteCount());
coded_stream.h 671 inline int ByteCount() const;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
zip_writer.cc 114 info.offset = raw_output_->ByteCount();
141 uint32 dir_ofs = raw_output_->ByteCount();
171 uint32 dir_len = output.ByteCount();
  /external/protobuf/src/google/protobuf/
message_lite.cc 244 int original_byte_count = output->ByteCount();
249 int final_byte_count = output->ByteCount();
  /external/skia/src/images/
SkMovie_gif.cpp 72 int size = image->ExtensionBlocks[j].ByteCount;
155 eb->ByteCount == 4) {
SkImageDecoder_libgif.cpp 138 if (eb->Function == 0xF9 && eb->ByteCount == 4) {
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextControllerATSUI.cpp 211 ByteCount sizes[] = { sizeof(ATSLineLayoutOptions), sizeof(Boolean), sizeof(ATSULayoutOperationOverrideSpecifier) };
250 ByteCount propTableSize;
298 ByteCount styleSizes[4] = { sizeof(fontSize), sizeof(fontID), sizeof(verticalFlip), sizeof(kerningInhibitFactor) };
SimpleFontDataMac.mm 77 ByteCount size = sizeof(ATSUFontID);
424 ByteCount tableSize;
  /external/giflib/
gifalloc.c 269 ep->ByteCount=Len;
270 ep->Bytes = (char *)malloc(ep->ByteCount);
gif_lib.h 281 int ByteCount;
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
AudioFilePlayer.c 243 ByteCount actual;

Completed in 961 milliseconds

1 2