Searched refs:total_length (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/ui/base/range/
H A Drange_win.cc13 Range::Range(const CHARRANGE& range, LONG total_length) { argument
21 // so use the |total_length| parameter.
24 DCHECK_NE(-1, total_length);
25 set_end(total_length);
H A Drange.h48 // The |total_length| paramater should be used if the CHARRANGE is set to
50 Range(const CHARRANGE& range, LONG total_length = -1);
/external/oprofile/libdb/
H A Ddb_stat.c31 double total_length = 0.0; local
62 total_length += cur_length;
68 result->average_list_length = total_length / nr_non_empty_list;
/external/chromium_org/third_party/iccjpeg/
H A Diccjpeg.c173 unsigned int total_length; local
212 total_length = 0;
216 data_offset[seq_no] = total_length;
217 total_length += data_length[seq_no];
220 if (total_length <= 0)
224 icc_data = (JOCTET *) malloc(total_length * sizeof(JOCTET));
245 *icc_data_len = total_length;
/external/ppp/pppd/plugins/radius/
H A Dsendserver.c36 int total_length = 0; local
70 total_length += length+8;
80 total_length += length+8;
124 total_length += padded_length + 2;
151 total_length += CHAP_VALUE_LENGTH + 2;
162 total_length += length + 2;
171 total_length += sizeof (UINT4) + 2;
182 return total_length;
205 int total_length; local
268 total_length
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DPMurHash.h57 MH_UINT32 PMurHash32_Result(MH_UINT32 h1, MH_UINT32 carry, MH_UINT32 total_length);
H A DPMurHash.c262 /* Finalize a hash. To match the original Murmur3A the total_length must be provided */
263 uint32_t PMurHash32_Result(uint32_t h, uint32_t carry, uint32_t total_length) argument
271 h ^= total_length;
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dndef.c29 u32 total_length; member in struct:ndef_record
69 record->total_length = pos - data;
70 if (record->total_length > size)
91 data += record.total_length;
92 len -= record.total_length;
/external/wpa_supplicant_8/src/wps/
H A Dndef.c29 u32 total_length; member in struct:ndef_record
69 record->total_length = pos - data;
70 if (record->total_length > size)
91 data += record.total_length;
92 len -= record.total_length;
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dndef.c29 u32 total_length; member in struct:ndef_record
69 record->total_length = pos - data;
70 if (record->total_length > size)
91 data += record.total_length;
92 len -= record.total_length;
/external/chromium/net/http/
H A Dpartial_data.cc252 int64 total_length = headers->GetContentLength();
253 if (total_length <= 0 || !headers->HasStrongValidators())
261 resource_size_ = total_length;
329 int64 start, end, total_length; local
330 if (!headers->GetContentRange(&start, &end, &total_length))
332 if (total_length <= 0)
341 resource_size_ = total_length;
348 } else if (resource_size_ != total_length) {
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dskia_utils_gtk2.cc56 int total_length = w * h; local
61 for (int i = 0; i < total_length; ++i, gdk_pixels += 4) {
/external/chromium_org/net/http/
H A Dpartial_data.cc257 int64 total_length = headers->GetContentLength();
258 if (total_length <= 0)
266 resource_size_ = total_length;
334 int64 start, end, total_length; local
335 if (!headers->GetContentRange(&start, &end, &total_length))
337 if (total_length <= 0)
346 resource_size_ = total_length;
353 } else if (resource_size_ != total_length) {
/external/chromium_org/media/base/android/
H A Dmedia_codec_bridge.cc275 // |total_length| keeps track of the total number of bytes before the last
277 size_t total_length = 1; local
282 while (total_length < extra_data_size) {
284 total_length += 1 + size;
285 if (total_length > 0x80000000) {
293 if (total_length >= extra_data_size) {
307 env, extra_data + total_length, extra_data_size - total_length);
/external/chromium_org/v8/test/cctest/
H A Dtest-utils.cc200 int total_length = 0; local
211 total_length += seq_length;
214 CHECK_EQ(total_length, result.length());
/external/v8/test/cctest/
H A Dtest-utils.cc173 int total_length = 0; local
184 total_length += seq_length;
187 CHECK_EQ(total_length, result.length());
/external/chromium_org/v8/tools/
H A Djs2c.py267 return Vector<const byte>(sources, %(total_length)i);
339 total_length = raw_total_length = module_offset
348 total_length = len(all_sources)
380 'total_length': total_length,
/external/v8/tools/
H A Djs2c.py267 return Vector<const byte>(sources, %(total_length)i);
339 total_length = raw_total_length = module_offset
348 total_length = len(all_sources)
380 'total_length': total_length,
/external/oprofile/opjitconv/
H A Ddebug_line.c89 uword total_length; member in struct:debug_line_header
121 uword total_length; member in struct:compilation_unit_header
401 dbg_header->total_length = (b->size - old_size) -
420 comp_unit_header->total_length = (b->size - old_size) -
/external/chromium_org/ui/gfx/
H A Dskia_util.cc163 int total_length = pixel_width * 4; local
164 for (int i = 0; i < total_length; i += 4) {
/external/srec/srec/ca/
H A Dann_api.c316 int total_length; local
468 total_length = 0;
470 total_length += hAnnotation->data->tcp[ii].end;
471 if (total_length > hPattern->data.prep->end.max_annotation_frames)
485 if (total_length < hPattern->data.prep->end.min_annotation_frames)
/external/marisa-trie/tools/
H A Dmarisa-benchmark.cc165 std::size_t total_length = 0; local
167 total_length += (*keys)[i].first.length();
169 std::cout << "total length: " << total_length << std::endl;
/external/marisa-trie/v0_1_5/tools/
H A Dmarisa_alpha-benchmark.cc165 std::size_t total_length = 0; local
167 total_length += (*keys)[i].first.length();
169 std::cout << "total length: " << total_length << std::endl;
/external/chromium_org/chrome/installer/util/
H A Ddelete_after_reboot_helper.cc216 size_t total_length = total_wchars * sizeof(wchar_t); local
217 buffer->resize(total_length);
/external/chromium_org/net/server/
H A Dweb_socket.cc341 size_t total_length = actual_masking_key_length + payload_length; local
342 if (static_cast<size_t>(buffer_end - p) < total_length)

Completed in 3010 milliseconds

12