Searched refs:percentage (Results 1 - 25 of 31) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/macintosh/
H A Dapm_emu.c30 int percentage = -1; local
52 if (percentage < 0)
53 percentage = 0;
56 percentage += (pmu_batteries[i].charge * 100) /
77 percentage /= real_count;
81 } else if (percentage <= APM_CRITICAL) {
84 } else if (percentage <= APM_LOW) {
93 info->battery_life = percentage;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/boards/mach-hp6xx/
H A Dhp6xx_apm.c19 /* percentage values */
34 int battery, backup, charging, percentage; local
41 percentage = 100 * (battery - HP680_BATTERY_MIN) /
45 info->battery_life = percentage;
64 } else if (percentage <= APM_CRITICAL) {
67 } else if (percentage <= APM_LOW) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DMuleColour.h70 const CMuleColour& Blend(byte percentage, ColourComponent flags = (ColourComponent)(COLOUR_R | COLOUR_G | COLOUR_B) ) argument
72 unsigned int red = (unsigned int)(Red() * ((flags & COLOUR_R) ? ((float)percentage/(float)100) : (float)1));
73 unsigned int green = (unsigned int)(Green() * ((flags & COLOUR_G) ? ((float)percentage/(float)100) : (float)1));
74 unsigned int blue = (unsigned int)(Blue() * ((flags & COLOUR_B) ? ((float)percentage/(float)100) : (float)1));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dmswindows.c378 /* Updates the console title with the percentage of the current file
383 int percentage;
388 percentage = (int) percentage_float;
390 /* Clamp percentage value. */
391 if (percentage < 0)
392 percentage = 0;
393 if (percentage > 100)
394 percentage = 100;
396 /* Only update the title when the percentage has changed. */
397 if (percentage
382 int percentage; local
[all...]
H A Dutils.h70 char percentage[8]; member in struct:status
H A Dprogress.c268 /* Prints the stats (percentage of completion, speed, ETA) for current
294 int percentage = 100.0 * bytes_displayed / dp->total_length;
295 logprintf (LOG_VERBOSE, "%3d%%", percentage);
321 Belperchinov-Shabanski's "wget-new-percentage" patch. */
877 "xx% " or "100%" - percentage - 4 chars
899 int percentage = 100.0 * size / bp->total_length;
900 assert (percentage <= 100);
901 sprintf (str, "%d", percentage);
902 update_status_file(str, 4, getpid());//http percentage
903 if (percentage < 10
293 int percentage = 100.0 * bytes_displayed / dp->total_length; local
897 int percentage = 100.0 * size / bp->total_length; local
[all...]
H A Dutils.c442 int percentage=0;
457 percentage=(atoll(temp))*100/(atoll(task_status.filesize));
458 sprintf(per, "%d", percentage);
492 strcpy(task_status.percentage, "---");
494 strcpy(task_status.percentage, str);
511 task_status.percentage,
527 fprintf(fp, "finish_percent=%s\n", task_status.percentage);
440 int percentage=0; local
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-pxa/include/mach/
H A Dsharpsl_pm.h60 int percentage; member in struct:battery_thresh
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-sa1100/include/mach/
H A Dsimpad.h80 unsigned char percentage; /* percentage loaded */ member in struct:simpad_battery
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/expat-2.0.1/tests/
H A Dminicheck.c151 double percentage = ((double) passed) / runner->nchecks; local
152 int display = (int) (percentage * 100);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dm_tables.cpp373 int percentage = 0; local
401 percentage += m_ColsInfo[c].width;
406 if (percentage >= 100)
413 m_MaxTotalWidth = m_MaxTotalWidth * 100 / (100 - percentage);
492 int percentage = 0; local
495 percentage += m_ColsInfo[i].width;
497 if (percentage >= 100)
500 newWidth = newWidth * 100 / (100 - percentage);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/expat-2.0.1/tests/
H A Dminicheck.c151 double percentage = ((double) passed) / runner->nchecks; local
152 int display = (int) (percentage * 100);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/locale/
H A DMakefile49 # print out the percentage of the translated strings
64 .PHONY: allpo allmo force-update percentage FORCE
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/xz/
H A Dmessage.c63 /// Expected size of the input stream is needed to show completion percentage
301 /// Make the string indicating completion percentage.
308 // no idea of the completion percentage.
313 double percentage = (double)(in_pos) / (double)(expected_in_size) local
318 snprintf(buf, sizeof(buf), "%.1f %%", percentage);
682 // Don't print the percentage when it isn't known
684 const char *percentage = progress_percentage(in_pos); local
685 if (percentage[0] != '-')
686 fprintf(stderr, "%s, ", percentage);
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/xz/
H A Dmessage.c63 /// Expected size of the input stream is needed to show completion percentage
301 /// Make the string indicating completion percentage.
308 // no idea of the completion percentage.
313 double percentage = (double)(in_pos) / (double)(expected_in_size) local
318 snprintf(buf, sizeof(buf), "%.1f %%", percentage);
682 // Don't print the percentage when it isn't known
684 const char *percentage = progress_percentage(in_pos); local
685 if (percentage[0] != '-')
686 fprintf(stderr, "%s, ", percentage);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/miscutils/
H A Dless.c385 int percentage; local
400 percentage = calc_percent();
401 printf("%i%%"NORMAL, percentage);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dilayout.tex51 \twocolitem{wxPercentOf}{The edge or dimension should be a percentage of another edge or dimension.}
110 Constrains this edge or dimension to be to a percentage of the given window, with an
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Datombios_crtc.c415 uint16_t percentage = 0; local
428 percentage = dig->ss->percentage;
446 args.v1.usSpreadSpectrumPercentage = cpu_to_le16(percentage);
454 args.legacy.usSpreadSpectrumPercentage = cpu_to_le16(percentage);
H A Dradeon_mode.h337 uint16_t percentage; member in struct:radeon_atom_ss
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dapm_32.c63 * idle[-_]threshold=<n> System idle percentage above which to
67 * which the idle percentage is
142 * idle percentage above which bios idle calls are done
815 * source. The bat value returned give an estimate as a percentage
1397 int percentage = -1; local
1406 percentage = cx & 0xff;
1446 6) Remaining battery life (percentage of charge):
1462 percentage,
2203 "System idle percentage above which to make APM BIOS idle calls");
2206 "Period (in sec/100) over which to caculate the idle percentage");
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dget_maintainer.pl544 --git-min-percent => minimum percentage of commits required (default: $email_git_min_percent)
591 not the percentage of the entire file authored. # of commits is
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/contrib/delphi/
H A DZLib.pas72 CompressionRate returns the on-the-fly percentage by which the original
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/delphi/
H A DZLib.pas72 CompressionRate returns the on-the-fly percentage by which the original
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/contrib/delphi/
H A DZLib.pas72 CompressionRate returns the on-the-fly percentage by which the original
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/contrib/delphi/
H A DZLib.pas72 CompressionRate returns the on-the-fly percentage by which the original

Completed in 392 milliseconds

12