Searched defs:total (Results 176 - 200 of 470) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_iconv.c216 size_t total; local
302 total = 0;
800 ++total;
802 return total;
/external/qemu/slirp/
H A Dsocket.c90 int n, lss, total; local
124 total = iov[0].iov_len + iov[1].iov_len;
125 if (total > mss) {
126 lss = total%mss;
/external/qemu/slirp-android/
H A Dsocket.c98 int n, lss, total; local
132 total = iov[0].iov_len + iov[1].iov_len;
133 if (total > mss) {
134 lss = total%mss;
/external/qemu/util/
H A Diov.c147 ssize_t total = 0; local
197 if (errno == EAGAIN && total > 0) {
198 return total;
211 total += ret;
215 return total;
299 * dst copies up to `sbytes' bytes total, or up to the end
333 * dst copies up to `sbytes' bytes total, or up to the end
384 size_t total = 0; local
391 total += bytes;
396 total
407 size_t total = 0; local
[all...]
H A Dosdep.c264 ssize_t total = 0; local
276 total += ret;
279 return total;
340 ssize_t total = 0; local
353 total += ret;
356 return total;
373 ssize_t total = 0; local
386 total += ret;
389 return total;
/external/skia/experimental/Intersection/
H A DShapeOps.cpp252 int total = 0; local
255 total += contourList[index]->segments().count();
260 coincidenceCheck(contourList, total);
/external/skia/src/pathops/
H A DSkPathOpsOp.cpp303 int total = 0; local
306 total += contourList[index]->segments().count();
308 if (!HandleCoincidence(&contourList, total)) {
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dacs.c124 * it overlaps. The one with least total interference is picked up.
225 * ACS: * channel 1: total interference = 0.121432
226 * ACS: * channel 2: total interference = 0.137512
227 * ACS: * channel 3: total interference = 0.369757
228 * ACS: * channel 4: total interference = 0.546338
229 * ACS: * channel 5: total interference = 0.690538
230 * ACS: * channel 6: total interference = 0.762242
231 * ACS: * channel 7: total interference = 0.756092
232 * ACS: * channel 8: total interference = 0.537451
233 * ACS: * channel 9: total interferenc
294 long double factor, busy, total; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dacs.c124 * it overlaps. The one with least total interference is picked up.
225 * ACS: * channel 1: total interference = 0.121432
226 * ACS: * channel 2: total interference = 0.137512
227 * ACS: * channel 3: total interference = 0.369757
228 * ACS: * channel 4: total interference = 0.546338
229 * ACS: * channel 5: total interference = 0.690538
230 * ACS: * channel 6: total interference = 0.762242
231 * ACS: * channel 7: total interference = 0.756092
232 * ACS: * channel 8: total interference = 0.537451
233 * ACS: * channel 9: total interferenc
294 long double factor, busy, total; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dacs.c124 * it overlaps. The one with least total interference is picked up.
225 * ACS: * channel 1: total interference = 0.121432
226 * ACS: * channel 2: total interference = 0.137512
227 * ACS: * channel 3: total interference = 0.369757
228 * ACS: * channel 4: total interference = 0.546338
229 * ACS: * channel 5: total interference = 0.690538
230 * ACS: * channel 6: total interference = 0.762242
231 * ACS: * channel 7: total interference = 0.756092
232 * ACS: * channel 8: total interference = 0.537451
233 * ACS: * channel 9: total interferenc
294 long double factor, busy, total; local
[all...]
/external/zlib/src/examples/
H A Dgun.c115 output file, a running CRC-32 check on the output and the total number of
121 int check; /* true if checking crc and total */
123 unsigned long total; member in struct:outd
126 /* Write output buffer and update the CRC-32 and total bytes written. write()
138 me->total += len;
470 outd.total = 0;
494 if (NEXT() != (int)(outd.total & 0xff) ||
495 NEXT() != (int)((outd.total >> 8) & 0xff) ||
496 NEXT() != (int)((outd.total >> 16) & 0xff) ||
497 NEXT() != (int)((outd.total >> 2
[all...]
/external/zlib/src/test/
H A Dinfcover.c27 and high water mark of total bytes requested, optionally set a limit on the
28 total memory that can be allocated, and when done check for memory leaks.
36 mem_limit(&strm, limit) sets a limit on the total bytes requested -- a
41 mem_used(&strm, "msg") prints to stderr "msg" and the total bytes used
65 size_t total, highwater; /* total allocations, and largest total */ member in struct:mem_zone
79 if (zone == NULL || (zone->limit && zone->total + len > zone->limit))
103 zone->total += item->size;
104 if (zone->total > zon
[all...]
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_discovery.c323 UINT16 total, cur_handles, orig; local
328 BE_STREAM_TO_UINT16 (total, p_reply);
341 if (total > sdp_cb.max_recs_per_search)
342 total = sdp_cb.max_recs_per_search;
/external/chromium_org/base/process/
H A Dprocess_metrics.h89 // total : total amount in megabytes marked as free. Maximum value is 2048.
91 // always smaller or equal to FreeMBytes::total.
94 size_t total; member in struct:base::FreeMBytes
134 // may or may not be in memory). On Linux, this returns the total virtual
267 int total; member in struct:base::SystemMemoryInfoKB
/external/chromium_org/base/synchronization/
H A Dcondition_variable_unittest.cc647 int total = 0; local
649 total += completion_history_[i];
650 return total;
/external/chromium_org/chrome/browser/chromeos/imageburner/
H A Dburn_manager.h46 ImageBurnStatus(int64 burnt, int64 total) argument
47 : amount_burnt(burnt), total_size(total) {
317 int64 total) OVERRIDE;
/external/chromium_org/chrome/browser/download/
H A Ddownload_item_model.cc313 int64 total = GetTotalBytes(); local
322 if (total) {
323 base::string16 total_text = ui::FormatBytes(total);
616 int64 total = GetTotalBytes(); local
617 if (total > 0) {
618 ui::DataUnits amount_units = ui::GetByteDisplayUnits(total);
621 // In RTL locales, we render the text "size/total" in an RTL context. This
624 // we mark the total string as an LTR string if the UI layout is
627 ui::FormatBytesWithUnits(total, amount_units, true));
/external/chromium_org/chrome/browser/media/
H A Dwebrtc_log_uploader.cc122 const net::URLFetcher* source, int64 current, int64 total) {
121 OnURLFetchUploadProgress( const net::URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_scan_result_controller.cc216 int total = 0; local
226 total++;
228 if (total > 0) {
230 (granted * 100 / total));
/external/chromium_org/content/browser/fileapi/
H A Dblob_url_request_job_unittest.cc222 int64 total = 0; local
227 CHECK(length <= kint64max - total);
228 total += length;
230 return total;
390 int64 total = GetTotalBlobLength(); local
394 EXPECT_EQ(total - 10, first);
395 EXPECT_EQ(total - 1, last);
396 EXPECT_EQ(total, length);
/external/chromium_org/content/browser/speech/
H A Dgoogle_streaming_remote_engine.cc120 const URLFetcher* source, int64 current, int64 total) {
119 OnURLFetchDownloadProgress( const URLFetcher* source, int64 current, int64 total) argument
/external/chromium_org/courgette/
H A Ddisassembler_win32_x64.cc620 int total = 0; local
626 total += p->second;
629 std::cout << total << " " << kind << " to "
H A Ddisassembler_win32_x86.cc620 int total = 0; local
626 total += p->second;
629 std::cout << total << " " << kind << " to "
/external/chromium_org/pdf/
H A Dpreview_mode_client.cc53 void PreviewModeClient::NotifyNumberOfFindResultsChanged(int total, argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSelector.cpp76 unsigned total = 0; local
80 temp = total + selector->specificityForOneSelector();
82 if ((temp & idMask) < (total & idMask))
83 total |= idMask;
84 else if ((temp & classMask) < (total & classMask))
85 total |= classMask;
86 else if ((temp & elementMask) < (total & elementMask))
87 total |= elementMask;
89 total = temp;
91 return total;
[all...]

Completed in 2723 milliseconds

1234567891011>>