Searched defs:total (Results 1 - 25 of 470) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/yaffs2/yaffs2/direct/
H A Ddtest.c874 int total = 0; local
906 if (total >lastTotal+100*9*1024||(i & 1023)==0){
907 printf("files = %d, total = %d\n",i, total);
908 lastTotal = total;
916 total += s.st_size;
/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/
H A Dinflate.h89 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
/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/webrtc/src/common_audio/vad/
H A Dvad_core.h46 WebRtc_Word16 total[3]; member in struct:VadInstT_
/external/wpa_supplicant_8/hostapd/
H A Dhostapd_cli.c904 int total; local
922 total = res;
924 tmp = cmd + total;
925 res = os_snprintf(tmp, sizeof(cmd) - total, " %s", argv[i]);
926 if (res < 0 || (size_t) res >= sizeof(cmd) - total - 1) {
930 total += res;
/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/hostapd/src/utils/
H A Dos_unix.c335 unsigned long total = 0; local
337 total += a->len;
348 if (total)
349 wpa_printf(MSG_INFO, "MEMLEAK: total %lu bytes",
350 (unsigned long) total);
447 ; /* determine total src string length */
/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/src/utils/
H A Dos_unix.c335 unsigned long total = 0; local
337 total += a->len;
348 if (total)
349 wpa_printf(MSG_INFO, "MEMLEAK: total %lu bytes",
350 (unsigned long) total);
447 ; /* determine total src string length */
/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/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c335 unsigned long total = 0; local
337 total += a->len;
348 if (total)
349 wpa_printf(MSG_INFO, "MEMLEAK: total %lu bytes",
350 (unsigned long) total);
447 ; /* determine total src string length */
/external/webp/src/demux/
H A Ddemux.c803 // Returns fragment 'fragment_num' and the total count.
809 int total; local
811 for (total = 0; f != NULL && f->frame_num_ == this_frame; f = f->next_) {
812 if (++total == fragment_num) fragment = f;
814 *count = total;
/external/webp/src/enc/
H A Dframe.c109 static int CalcSkipProba(uint64_t nb, uint64_t total) { argument
110 return (int)(total ? (total - nb) * 255 / total : 255);
131 // Return the total bit-cost for coding the probability updates.
132 static int CalcTokenProba(int nb, int total) { argument
133 assert(nb <= total);
134 return nb ? (255 - nb * 255 / total) : 255;
137 // Cost of coding 'nb' 1's and 'total-nb' 0's using 'proba' probability.
138 static int BranchCost(int nb, int total, in argument
157 const int total = (stats >> 16) & 0xffff; local
187 const int total = a + b; local
[all...]
/external/valgrind/main/callgrind/
H A Dmain.c803 // return total number of cost values needed for this BB
1780 FullCost total; local
1784 total = CLG_(total_cost);
1785 Bc_total_b = total[ fullOffset(EG_BC) ];
1786 Bc_total_mp = total[ fullOffset(EG_BC)+1 ];
1787 Bi_total_b = total[ fullOffset(EG_BI) ];
1788 Bi_total_mp = total[ fullOffset(EG_BI)+1 ];
1892 FullCost total; local
1919 total = CLG_(total_cost);
1920 l1 = ULong_width( total[fullOffse
[all...]
H A Dsim.c839 unsigned int c; // store the total here
1539 FullCost total = CLG_(total_cost), D_total = 0; local
1555 commify(total[fullOffset(EG_IR) +1], l1, buf1);
1558 commify(total[fullOffset(EG_IR) +2], l1, buf1);
1563 if (0 == total[fullOffset(EG_IR)])
1564 total[fullOffset(EG_IR)] = 1;
1566 percentify(total[fullOffset(EG_IR)+1] * 100 * p /
1567 total[fullOffset(EG_IR)], p, l1+1, buf1);
1570 percentify(total[fullOffset(EG_IR)+2] * 100 * p /
1571 total[fullOffse
[all...]
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c1280 /* Trivial fn: return the total amount of space in anonymous mappings,
1286 ULong total = 0; local
1289 total += (ULong)nsegments[i].end
1293 return total;
/external/valgrind/main/drd/tests/
H A Domp_prime.c38 int total = 0; local
89 DRD_TRACE_VAR(total);
96 primes[total] = i;
97 total++;
103 n, total);
104 for (i = 0; i < total; i++)
/external/valgrind/main/helgrind/tests/
H A Dtc17_sembar.c37 unsigned total; member in struct:__anon32861
52 bar->total = count;
74 bar->total = count;
86 if (bar->arrived == bar->total)
/external/valgrind/main/include/vki/
H A Dvki-linux-drm.h206 int total; /**< Buffer size */ member in struct:vki_drm_buf_pub
/external/tinycompress/
H A Dcompress.c356 int written, total = 0, ret; local
378 return total;
408 total += written;
410 return total;
418 int num_read, total = 0, ret; local
438 return total;
468 total += num_read;
471 return total;
/external/tremolo/Tremolo/
H A Dvorbisfile.c68 (seeking/scrubbing) or desire to know the total length/time of a
935 /* returns: total raw (compressed) length of content if i==-1
954 /* returns: total PCM length (samples) of content if i==-1 PCM length
973 /* returns: total milliseconds of content if i==-1
1156 ogg_int64_t total=ov_pcm_total(vf,-1); local
1162 if(pos<0 || pos>total)return OV_EINVAL;
1166 total-=vf->pcmlengths[link*2+1];
1167 if(pos>=total)break;
1192 ogg_int64_t target=pos-total+begintime;
1295 vf->pcm_offset+=total;
[all...]
/external/tcpdump/
H A Dprint-smb.c1097 int total, i; local
1156 total = ancount + nscount + arcount;
1158 if (qdcount > 100 || total > 100) {
1174 if (total) {
1176 for (i = 0; i < total; i++) {
/external/stlport/test/eh/
H A Dtest_map.cpp93 size_t total = 0; local
94 EH_DISTANCE( m.begin(), m.end(), total );
95 assert( m.size() == total );

Completed in 450 milliseconds

1234567891011>>