| /src/sys/arch/powerpc/booke/ |
| e500_timer.c | 101 uint64_t latency = now - (ci->ci_lastintr + cpu->cpu_ticks_per_clock_intr); local 103 uint64_t orig_latency = latency; 106 latency = 0; 108 nticks = 1 + latency / cpu->cpu_ticks_per_clock_intr; 109 latency %= cpu->cpu_ticks_per_clock_intr; 111 for (nticks = 1; latency >= cpu->cpu_ticks_per_clock_intr; nticks++) { 112 latency -= cpu->cpu_ticks_per_clock_intr; 125 printf("%s: nticks=%u lastintr=%#"PRIx64"(%#"PRIx64") now=%#"PRIx64" latency=%#"PRIx64" orig=%#"PRIx64"\n", __func__, 126 nticks, ci->ci_lastintr, now - latency, now, latency, orig_latency) [all...] |
| /src/sys/dev/cardbus/ |
| adv_cardbus.c | 112 u_int8_t latency = 0x20; local 121 latency = 0; 126 latency = 0; 188 * Make sure the latency timer is set to some reasonable 192 if (PCI_LATTIMER(reg) < latency) { 194 reg |= (latency << PCI_LATTIMER_SHIFT);
|
| njata_cardbus.c | 132 uint8_t latency = 0x20; local 197 * Make sure the latency timer is set to some reasonable 201 if (PCI_LATTIMER(reg) < latency) { 203 reg |= (latency << PCI_LATTIMER_SHIFT);
|
| njs_cardbus.c | 128 u_int8_t latency = 0x20; local 190 * Make sure the latency timer is set to some reasonable 194 if (PCI_LATTIMER(reg) < latency) { 196 reg |= (latency << PCI_LATTIMER_SHIFT);
|
| /src/external/gpl3/binutils/dist/gprofng/libcollector/ |
| hwprofile.h | 44 uint32_t ea_lgrp; /* latency group of ea_paddr */ 45 uint32_t pc_lgrp; /* latency group of pc_paddr */ 48 uint64_t latency; /* latency in cycles (sampling only) */ member in struct:MHwcntr_packet
|
| /src/external/gpl3/binutils.old/dist/gprofng/libcollector/ |
| hwprofile.h | 44 uint32_t ea_lgrp; /* latency group of ea_paddr */ 45 uint32_t pc_lgrp; /* latency group of pc_paddr */ 48 uint64_t latency; /* latency in cycles (sampling only) */ member in struct:MHwcntr_packet
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_cc_test.c | 41 * bandwidth and latency. Sending a packet into the network causes it to consume 99 uint64_t latency; /* ms */ member in struct:net_sim 109 uint64_t capacity, uint64_t latency) 115 s->latency = latency; 161 /* This packet will arrive successfully after |latency| time. */ 163 ossl_ms2time(s->latency)); 166 ossl_ms2time(s->latency)); 173 * |latency|. 176 ossl_ms2time(s->latency)); [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| ddg.h | 91 /* Latency of the dependency. */ 92 int latency; member in struct:ddg_edge
|
| expmed.h | 51 The "latency" field holds the minimum possible latency of the 55 any leaf to the root. Hence latency(a op b) is defined as zero for 56 leaves and rtx_cost(op) + max(latency(a), latency(b)) otherwise. */ 60 short latency; /* The latency of the multiplication sequence. */ member in struct:mult_cost 67 || ((X)->cost == (Y) && (X)->latency < (Y))) 72 lower "cost". If "cost"s are tied, the lower latency is cheaper. */ 75 && (X)->latency < (Y)->latency) [all...] |
| ddg.cc | 168 /* Computes the dependence parameters (latency, distance etc.), creates 175 int latency, distance = 0; 223 latency = dep_cost (link); 224 e = create_ddg_edge (src_node, dest_node, t, dt, latency, distance); 658 dep_c, e->latency, e->distance, INSN_UID (e->dest->insn)); 713 fprintf (file, "label: \"%d_%d\"}\n", e->latency, e->distance); 754 e->latency = l; 802 length += backarc->latency; 1032 n->max_dist[e->dest->cuid] = e->latency; 174 int latency, distance = 0; local
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| ddg.h | 91 /* Latency of the dependency. */ 92 int latency; member in struct:ddg_edge
|
| expmed.h | 51 The "latency" field holds the minimum possible latency of the 55 any leaf to the root. Hence latency(a op b) is defined as zero for 56 leaves and rtx_cost(op) + max(latency(a), latency(b)) otherwise. */ 60 short latency; /* The latency of the multiplication sequence. */ member in struct:mult_cost 67 || ((X)->cost == (Y) && (X)->latency < (Y))) 72 lower "cost". If "cost"s are tied, the lower latency is cheaper. */ 75 && (X)->latency < (Y)->latency) [all...] |
| ddg.cc | 168 /* Computes the dependence parameters (latency, distance etc.), creates 175 int latency, distance = 0; 223 latency = dep_cost (link); 224 e = create_ddg_edge (src_node, dest_node, t, dt, latency, distance); 658 dep_c, e->latency, e->distance, INSN_UID (e->dest->insn)); 713 fprintf (file, "label: \"%d_%d\"}\n", e->latency, e->distance); 754 e->latency = l; 802 length += backarc->latency; 1032 n->max_dist[e->dest->cuid] = e->latency; 174 int latency, distance = 0; local
|
| /src/sys/dev/pci/bktr/ |
| bktr_os.c | 333 u_int latency; local 436 * PCI latency timer. 32 is a good value for 4 bus mastering slots, if 442 latency = pci_read_config(dev, PCI_LATENCY_TIMER, 4); 443 latency = (latency >> 8) & 0xff; 445 if (latency) 446 printf("brooktree%d: PCI bus latency is", unit); 448 printf("brooktree%d: PCI bus latency was 0 changing to", 451 if (!latency) { 452 latency = BROOKTREE_DEF_LATENCY_VALUE 940 u_int latency; local 1395 u_int latency; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/include/ |
| dm_pp_interface.h | 107 * Memory clock DPMS with this latency or below is allowed, DPMS with 108 * higher latency not allowed. 168 uint32_t latency[MAX_NUM_CLOCKS]; member in struct:amd_pp_clocks
|
| /src/external/gpl3/gdb/dist/sim/frv/ |
| cache.h | 117 int latency; member in struct:__anon19344 172 unsigned memory_latency; /* Latency of main memory in cycles. */
|
| /src/external/gpl3/gdb.old/dist/sim/frv/ |
| cache.h | 117 int latency; member in struct:__anon22083 172 unsigned memory_latency; /* Latency of main memory in cycles. */
|
| /src/external/mit/libuv/dist/src/unix/ |
| fsevents.c | 333 CFAbsoluteTime latency; local 340 latency = 0.05; 344 * (i.e. each event is happening after time interval less than `latency`, 348 * `latency`). 349 * Specifying this flag will invoke callback after `latency` time passed 367 latency,
|
| /src/games/adventure/ |
| init.c | 71 int saveday, savet, maxscore, latency; variable
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce120/ |
| amdgpu_dce120_resource.c | 901 unsigned int latency; local 946 latency = 45; 950 mem_clks.data[i].latency_in_us = latency; 952 latency -= 5;
|
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/ |
| amdgpu_vega20_ppt.c | 2097 uint32_t i, latency; local 2101 latency = smu->display_config->dce_tolerable_mclk_in_active_latency; 2155 if (smu_dpm_ctx->mclk_latency_table->entries[i].latency <= latency) {
|
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
| amdgpu_vega12_hwmgr.c | 1766 data->mclk_latency_table.entries[i].latency = 2182 uint32_t i, latency; local 2187 latency = hwmgr->display_config->dce_tolerable_mclk_in_active_latency; 2245 if (data->mclk_latency_table.entries[i].latency <= latency) {
|
| amdgpu_vega20_hwmgr.c | 2810 data->mclk_latency_table.entries[i].latency = 3646 uint32_t i, latency; local 3651 latency = hwmgr->display_config->dce_tolerable_mclk_in_active_latency; 3709 if (data->mclk_latency_table.entries[i].latency <= latency) {
|
| smu10_hwmgr.h | 181 uint32_t latency; member in struct:smu10_mclk_latency_entries
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_engine_types.h | 127 /* A simple estimator for the round-trip latency of an engine */ 344 struct ewma__engine_latency latency; member in struct:intel_engine_cs 356 * bottom-half, we reduce the latency of the first waiter by avoiding
|