| /src/external/mit/libuv/dist/docs/code/progress/ |
| main.c | 10 double percentage; variable 16 percentage = downloaded*100.0/size; 17 async.data = (void*) &percentage; 32 double percentage = *((double*) handle->data); local 33 fprintf(stderr, "Downloaded %.2f%%\n", percentage);
|
| /src/sys/net/npf/ |
| npf_ext_rndblock.c | 62 unsigned int percentage; member in struct:__anon7060 80 meta->percentage = dnvlist_get_number(params, "percentage", 0); 114 * Drop the packets according to the given module or percentage. 127 if (rndblock->percentage) { 129 if (w <= rndblock->percentage) {
|
| /src/sbin/fsck/ |
| progress.c | 87 * percentage in the range [progress_lowlim .. progress_highlim]. 94 int len, percentage; local 115 percentage = progress_lowlim + 117 percentage = MAX(percentage, 0); 118 percentage = MIN(percentage, 100); 120 if (percentage == lastpercentage) 122 lastpercentage = percentage; 130 i = barlength * percentage / 100 [all...] |
| /src/external/gpl3/gcc/dist/contrib/ |
| analyze_brprob.py | 78 def percentage(a, b): function 198 percentage(self.branches(), branches_max), 201 percentage(self.fits(), self.count()), 203 percentage(self.count(), count_max)), end = '') 312 help = 'Ignore edges that have percentage coverage >= coverage-threshold')
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| analyze_brprob.py | 76 def percentage(a, b): function 196 percentage(self.branches(), branches_max), 199 percentage(self.fits(), self.count()), 201 percentage(self.count(), count_max)), end = '') 310 help = 'Ignore edges that have percentage coverage >= coverage-threshold')
|
| /src/external/mit/expat/dist/tests/ |
| minicheck.c | 239 double percentage = ((double)passed) / runner->nchecks; local 240 int display = (int)(percentage * 100);
|
| /src/external/bsd/less/dist/ |
| os.c | 416 * Return the ratio of two POSITIONS, as a percentage. 419 public int percentage(POSITION num, POSITION den) function 425 * Return the specified percentage of a POSITION.
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/ |
| clock_source.h | 38 uint32_t percentage; /*> In unit of 0.01% or 0.001%*/ member in struct:spread_spectrum_data 76 /* DP Reference clock SS percentage 79 /* DP Reference clock SS percentage divider */
|
| /src/external/public-domain/xz/dist/src/xz/ |
| message.c | 59 /// Expected size of the input stream is needed to show completion percentage 283 /// Make the string indicating completion percentage. 290 // no idea of the completion percentage. 295 double percentage = (double)(in_pos) / (double)(expected_in_size) local 300 snprintf(buf, sizeof(buf), "%.1f %%", percentage); 661 // Percentage is printed only if we didn't finish yet. 663 // Don't print the percentage when it isn't known 665 const char *percentage = progress_percentage(in_pos); local 666 if (percentage[0] != '-') 667 fprintf(stderr, "%s, ", percentage); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/include/ |
| bios_parser_types.h | 288 uint32_t percentage; member in struct:bp_spread_spectrum_parameters
|
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
| amdgpu_smu8_hwmgr.c | 697 unsigned long percentage; local 726 percentage = 75; 727 /*Sclk - calculate sclk value based on percentage and find FLOOR sclk from VddcDependencyOnSCLK table */ 729 percentage) / 100;
|
| amdgpu_smu7_hwmgr.c | 2737 uint32_t percentage; local 2747 percentage = 100 * golden_dpm_table->sclk_table.dpm_levels[golden_dpm_table->sclk_table.count - 1].value / 2751 percentage = 70; 2759 tmp_sclk = tmp_mclk * percentage / 100;
|
| /src/usr.bin/make/ |
| dir.c | 1622 percentage(int num, int den) function 1636 percentage(hits, hits + bigmisses + nearmisses));
|
| /src/usr.sbin/cpuctl/arch/ |
| i386.c | 1459 tmx86_get_longrun_status(u_int *frequency, u_int *voltage, u_int *percentage) 1466 *percentage = descs[2]; 1473 u_int frequency, voltage, percentage; local 1510 &voltage, &percentage); 1512 frequency, voltage, percentage);
|
| /src/usr.sbin/envstat/ |
| envstat.c | 86 bool percentage; member in struct:envsys_sensor 734 /* get percentage flag */ 735 obj1 = prop_dictionary_get(obj, "want-percentage"); 737 sensor->percentage = prop_bool_true(obj1); 1119 /* Print percentage of max_value */ 1138 if (sensor->percentage) { 1149 if (sensor->percentage) { 1298 /* Print percentage of max_value */ 1320 if (sensor->percentage) { 1331 if (sensor->percentage) { [all...] |
| /src/external/gpl2/texinfo/dist/info/ |
| window.c | 1107 int percentage; 1112 percentage = 100 * (pt / lc); 1114 sprintf (location_indicator, "%2d%%", percentage); 1191 /* Make WINDOW start displaying at PERCENT percentage of its node. */ 1106 int percentage; local
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
| amdgpu_atombios.c | 792 u16 percentage = 0, rate = 0; local 803 percentage = le16_to_cpu(igp_info->info_6.usDVISSPercentage); 807 percentage = le16_to_cpu(igp_info->info_6.usHDMISSPercentage); 811 percentage = le16_to_cpu(igp_info->info_6.usLvdsSSPercentage); 819 percentage = le16_to_cpu(igp_info->info_7.usDVISSPercentage); 823 percentage = le16_to_cpu(igp_info->info_7.usHDMISSPercentage); 827 percentage = le16_to_cpu(igp_info->info_7.usLvdsSSPercentage); 835 percentage = le16_to_cpu(igp_info->info_8.usDVISSPercentage); 839 percentage = le16_to_cpu(igp_info->info_8.usHDMISSPercentage); 843 percentage = le16_to_cpu(igp_info->info_8.usLvdsSSPercentage) [all...] |
| amdgpu_mode.h | 370 uint16_t percentage; member in struct:amdgpu_atom_ss
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_atombios.c | 1409 ss->percentage = 1434 u16 percentage = 0, rate = 0; local 1445 percentage = le16_to_cpu(igp_info->info_6.usDVISSPercentage); 1449 percentage = le16_to_cpu(igp_info->info_6.usHDMISSPercentage); 1453 percentage = le16_to_cpu(igp_info->info_6.usLvdsSSPercentage); 1461 percentage = le16_to_cpu(igp_info->info_7.usDVISSPercentage); 1465 percentage = le16_to_cpu(igp_info->info_7.usHDMISSPercentage); 1469 percentage = le16_to_cpu(igp_info->info_7.usLvdsSSPercentage); 1477 percentage = le16_to_cpu(igp_info->info_8.usDVISSPercentage); 1481 percentage = le16_to_cpu(igp_info->info_8.usHDMISSPercentage) [all...] |
| radeon_mode.h | 311 uint16_t percentage; member in struct:radeon_atom_ss
|