Home
last modified time | relevance | path

Searched refs:number_bytes (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
Dcng_unittest.cc102 size_t number_bytes; in TEST_F() local
111 &number_bytes, kNoSid)); in TEST_F()
113 cng_enc_inst_, speech_data_, 80, sid_data, &number_bytes, kForceSid)); in TEST_F()
119 &number_bytes, kNoSid)); in TEST_F()
121 cng_enc_inst_, speech_data_, 160, sid_data, &number_bytes, kForceSid)); in TEST_F()
127 &number_bytes, kNoSid)); in TEST_F()
129 cng_enc_inst_, speech_data_, 320, sid_data, &number_bytes, kForceSid)); in TEST_F()
135 &number_bytes, kNoSid)); in TEST_F()
137 cng_enc_inst_, speech_data_, 480, sid_data, &number_bytes, kForceSid)); in TEST_F()
143 &number_bytes, kNoSid)); in TEST_F()
[all …]
/external/ImageMagick/MagickCore/
Dprofile.c2125 number_bytes; in SyncExifProfile() local
2144 number_bytes=(size_t) components*format_bytes[format]; in SyncExifProfile()
2145 if ((ssize_t) number_bytes < components) in SyncExifProfile()
2147 if (number_bytes <= 4) in SyncExifProfile()
2155 if ((offset < 0) || ((size_t) (offset+number_bytes) > length)) in SyncExifProfile()
2157 if (~length < number_bytes) in SyncExifProfile()
2166 if (number_bytes == 8) in SyncExifProfile()
2173 if (number_bytes == 8) in SyncExifProfile()
2179 if (number_bytes == 4) in SyncExifProfile()
2190 if (number_bytes == 4) in SyncExifProfile()
Dproperty.c1435 number_bytes; in GetEXIFProperty() local
1450 number_bytes=(size_t) components*tag_bytes[format]; in GetEXIFProperty()
1451 if (number_bytes < components) in GetEXIFProperty()
1453 if (number_bytes <= 4) in GetEXIFProperty()
1466 if ((ssize_t) (dir_offset+number_bytes) < dir_offset) in GetEXIFProperty()
1468 if ((size_t) (dir_offset+number_bytes) > length) in GetEXIFProperty()
1543 if (~((size_t) number_bytes) >= 1) in GetEXIFProperty()
1544 value=(char *) AcquireQuantumMemory((size_t) number_bytes+1UL, in GetEXIFProperty()
1548 for (i=0; i < (ssize_t) number_bytes; i++) in GetEXIFProperty()
Dcache.c628 number_bytes; in ClonePixelCacheOnDisk() local
630 number_bytes=write(clone_info->file,buffer,(size_t) count); in ClonePixelCacheOnDisk()
631 if (number_bytes != count) in ClonePixelCacheOnDisk()
633 extent+=number_bytes; in ClonePixelCacheOnDisk()
/external/ImageMagick/coders/
Djpeg.c823 static void SkipInputData(j_decompress_ptr cinfo,long number_bytes) in SkipInputData() argument
828 if (number_bytes <= 0) in SkipInputData()
831 while (number_bytes > (long) source->manager.bytes_in_buffer) in SkipInputData()
833 number_bytes-=(long) source->manager.bytes_in_buffer; in SkipInputData()
836 source->manager.next_input_byte+=number_bytes; in SkipInputData()
837 source->manager.bytes_in_buffer-=number_bytes; in SkipInputData()