Searched refs:total (Results 1 - 25 of 930) 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/contrib/delphi/
H A DZLib.pas26 total_in: Longint; // total nb of input bytes read so far
30 total_out: Longint; // total nb of bytes output so far
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDeflater.cs60 int total = count;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
H A DInflater.cs60 int total = count;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm427 ;;; much of the total running time. Replacing it with a more
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm366 ;;; much of the total running time. Replacing it with a more
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas31 total_in: LongInt; (* total nb of input bytes read so far *)
35 total_out: LongInt; (* total nb of bytes output so far *)
/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.c111 strm->total_in = strm->total_out = state->total = 0;
585 When returning, a "goto inf_leave" is used to update the total counters,
1179 state->total += out;
1201 if (hold != (state->total & 0xffffffffUL)) {
1225 Return from inflate(), updating the total counts and the check value.
1242 state->total += out;
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.c131 inst->total[0] = TOTAL_10MS_Q;
132 inst->total[1] = TOTAL_20MS_Q;
133 inst->total[2] = TOTAL_30MS_Q;
148 inst->total[0] = TOTAL_10MS_LBR;
149 inst->total[1] = TOTAL_20MS_LBR;
150 inst->total[2] = TOTAL_30MS_LBR;
165 inst->total[0] = TOTAL_10MS_AGG;
166 inst->total[1] = TOTAL_20MS_AGG;
167 inst->total[2] = TOTAL_30MS_AGG;
182 inst->total[
[all...]
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...]

Completed in 263 milliseconds

1234567891011>>