Home
last modified time | relevance | path

Searched refs:times (Results 1 – 25 of 98) sorted by relevance

1234

/linux-2.4.37.9/Documentation/sound/
Drme96xx330 …441 -selectcolor red -text "44.1 kHz" -width 10 -anchor nw -variable srate -value 44100 -font times
331 …r.480 -selectcolor red -text "48 kHz" -width 10 -anchor nw -variable srate -value 48000 -font times
332 …882 -selectcolor red -text "88.2 kHz" -width 10 -anchor nw -variable srate -value 88200 -font times
333 ….960 -selectcolor red -text "96 kHz" -width 10 -anchor nw -variable srate -value 96000 -font times
341 …atus.lock.adat1 -selectcolor red -text "ADAT1" -anchor nw -width 10 -variable adatlock1 -font times
342 …atus.lock.adat2 -selectcolor red -text "ADAT2" -anchor nw -width 10 -variable adatlock2 -font times
343 …atus.lock.adat3 -selectcolor red -text "ADAT3" -anchor nw -width 10 -variable adatlock3 -font times
351 …atus.sync.adat1 -selectcolor red -text "ADAT1" -anchor nw -width 10 -variable adatsync1 -font times
352 …atus.sync.adat2 -selectcolor red -text "ADAT2" -anchor nw -width 10 -variable adatsync2 -font times
353 …atus.sync.adat3 -selectcolor red -text "ADAT3" -anchor nw -width 10 -variable adatsync3 -font times
[all …]
/linux-2.4.37.9/kernel/
Dsys.c811 if (copy_to_user(tbuf, &current->times, sizeof(struct tms))) in sys_times()
1176 r.ru_utime.tv_sec = CT_TO_SECS(p->times.tms_utime); in getrusage()
1177 r.ru_utime.tv_usec = CT_TO_USECS(p->times.tms_utime); in getrusage()
1178 r.ru_stime.tv_sec = CT_TO_SECS(p->times.tms_stime); in getrusage()
1179 r.ru_stime.tv_usec = CT_TO_USECS(p->times.tms_stime); in getrusage()
1185 r.ru_utime.tv_sec = CT_TO_SECS(p->times.tms_cutime); in getrusage()
1186 r.ru_utime.tv_usec = CT_TO_USECS(p->times.tms_cutime); in getrusage()
1187 r.ru_stime.tv_sec = CT_TO_SECS(p->times.tms_cstime); in getrusage()
1188 r.ru_stime.tv_usec = CT_TO_USECS(p->times.tms_cstime); in getrusage()
1194 r.ru_utime.tv_sec = CT_TO_SECS(p->times.tms_utime + p->times.tms_cutime); in getrusage()
[all …]
Dexit.c544 current->times.tms_cutime += p->times.tms_utime + p->times.tms_cutime; in sys_wait4()
545 current->times.tms_cstime += p->times.tms_stime + p->times.tms_cstime; in sys_wait4()
Dacct.c300 ac.ac_utime = encode_comp_t(current->times.tms_utime); in do_acct_process()
301 ac.ac_stime = encode_comp_t(current->times.tms_stime); in do_acct_process()
Dfork.c734 p->times.tms_utime = p->times.tms_stime = 0; in do_fork()
735 p->times.tms_cutime = p->times.tms_cstime = 0; in do_fork()
Dtimer.c542 psecs = (p->times.tms_utime += user); in do_process_times()
543 psecs += (p->times.tms_stime += system); in do_process_times()
/linux-2.4.37.9/arch/alpha/kernel/
Dosf_sys.c1150 r.ru_utime.tv_sec = CT_TO_SECS(current->times.tms_utime); in osf_getrusage()
1151 r.ru_utime.tv_usec = CT_TO_USECS(current->times.tms_utime); in osf_getrusage()
1152 r.ru_stime.tv_sec = CT_TO_SECS(current->times.tms_stime); in osf_getrusage()
1153 r.ru_stime.tv_usec = CT_TO_USECS(current->times.tms_stime); in osf_getrusage()
1159 r.ru_utime.tv_sec = CT_TO_SECS(current->times.tms_cutime); in osf_getrusage()
1160 r.ru_utime.tv_usec = CT_TO_USECS(current->times.tms_cutime); in osf_getrusage()
1161 r.ru_stime.tv_sec = CT_TO_SECS(current->times.tms_cstime); in osf_getrusage()
1162 r.ru_stime.tv_usec = CT_TO_USECS(current->times.tms_cstime); in osf_getrusage()
1168 r.ru_utime.tv_sec = CT_TO_SECS(current->times.tms_utime + in osf_getrusage()
1169 current->times.tms_cutime); in osf_getrusage()
[all …]
/linux-2.4.37.9/fs/
Dopen.c260 asmlinkage long sys_utime(char * filename, struct utimbuf * times) in sys_utime() argument
278 if (times) { in sys_utime()
282 error = get_user(newattrs.ia_atime, &times->actime); in sys_utime()
284 error = get_user(newattrs.ia_mtime, &times->modtime); in sys_utime()
330 struct timeval times[2]; in sys_utimes() local
335 if (copy_from_user(&times, utimes, sizeof(times))) in sys_utimes()
337 newattrs.ia_atime = times[0].tv_sec; in sys_utimes()
338 newattrs.ia_mtime = times[1].tv_sec; in sys_utimes()
Dbinfmt_elf.c1262 prstatus.pr_utime.tv_sec = CT_TO_SECS(current->times.tms_utime); in elf_core_dump()
1263 prstatus.pr_utime.tv_usec = CT_TO_USECS(current->times.tms_utime); in elf_core_dump()
1264 prstatus.pr_stime.tv_sec = CT_TO_SECS(current->times.tms_stime); in elf_core_dump()
1265 prstatus.pr_stime.tv_usec = CT_TO_USECS(current->times.tms_stime); in elf_core_dump()
1266 prstatus.pr_cutime.tv_sec = CT_TO_SECS(current->times.tms_cutime); in elf_core_dump()
1267 prstatus.pr_cutime.tv_usec = CT_TO_USECS(current->times.tms_cutime); in elf_core_dump()
1268 prstatus.pr_cstime.tv_sec = CT_TO_SECS(current->times.tms_cstime); in elf_core_dump()
1269 prstatus.pr_cstime.tv_usec = CT_TO_USECS(current->times.tms_cstime); in elf_core_dump()
/linux-2.4.37.9/arch/mips/kernel/
Dirixsig.c693 __put_user(p->times.tms_utime, &info->stuff.procinfo.procdata.child.utime); in irix_waitsys()
694 __put_user(p->times.tms_stime, &info->stuff.procinfo.procdata.child.stime); in irix_waitsys()
699 current->times.tms_cutime += p->times.tms_utime + p->times.tms_cutime; in irix_waitsys()
700 current->times.tms_cstime += p->times.tms_stime + p->times.tms_cstime; in irix_waitsys()
709 __put_user(p->times.tms_utime, in irix_waitsys()
711 __put_user(p->times.tms_stime, in irix_waitsys()
Dirixelf.c1146 prstatus.pr_utime.tv_sec = CT_TO_SECS(current->times.tms_utime); in irix_core_dump()
1147 prstatus.pr_utime.tv_usec = CT_TO_USECS(current->times.tms_utime); in irix_core_dump()
1148 prstatus.pr_stime.tv_sec = CT_TO_SECS(current->times.tms_stime); in irix_core_dump()
1149 prstatus.pr_stime.tv_usec = CT_TO_USECS(current->times.tms_stime); in irix_core_dump()
1150 prstatus.pr_cutime.tv_sec = CT_TO_SECS(current->times.tms_cutime); in irix_core_dump()
1151 prstatus.pr_cutime.tv_usec = CT_TO_USECS(current->times.tms_cutime); in irix_core_dump()
1152 prstatus.pr_cstime.tv_sec = CT_TO_SECS(current->times.tms_cstime); in irix_core_dump()
1153 prstatus.pr_cstime.tv_usec = CT_TO_USECS(current->times.tms_cstime); in irix_core_dump()
/linux-2.4.37.9/fs/proc/
Darray.c379 task->times.tms_utime, in proc_pid_stat()
380 task->times.tms_stime, in proc_pid_stat()
381 task->times.tms_cutime, in proc_pid_stat()
382 task->times.tms_cstime, in proc_pid_stat()
632 task->times.tms_utime, in proc_pid_cpu()
633 task->times.tms_stime); in proc_pid_cpu()
Dproc_misc.c128 idle = init_tasks[0]->times.tms_utime + init_tasks[0]->times.tms_stime; in uptime_read_proc()
/linux-2.4.37.9/drivers/i2c/
Di2c-proc.c561 int buflen, mag, times; in i2c_write_reals() local
587 times = 1; in i2c_write_reals()
588 for (times = 1; mag-- > 0; times *= 10); in i2c_write_reals()
598 abs(results[nr]) / times, in i2c_write_reals()
599 abs(results[nr]) % times); in i2c_write_reals()
/linux-2.4.37.9/mm/
Doom_kill.c79 cpu_time = (p->times.tms_utime + p->times.tms_stime) >> (SHIFT_HZ + 3); in badness()
/linux-2.4.37.9/net/ipv4/
Dicmp.c107 __u32 times[3]; member
764 icmp_param.data.times[1] = htonl((tv.tv_sec % 86400) * 1000 + tv.tv_usec / 1000); in icmp_timestamp()
765 icmp_param.data.times[2] = icmp_param.data.times[1]; in icmp_timestamp()
766 if (skb_copy_bits(skb, 0, &icmp_param.data.times[0], 4)) in icmp_timestamp()
/linux-2.4.37.9/Documentation/vm/
Dnuma6 What is NUMA? It is an architecture where the memory access times
9 Each region of memory to which access times are the same from any
/linux-2.4.37.9/fs/isofs/
Drock.c320 inode->i_ctime = iso_date(rr->u.TF.times[cnt++].time, 0); in parse_rock_ridge_inode_internal()
322 inode->i_mtime = iso_date(rr->u.TF.times[cnt++].time, 0); in parse_rock_ridge_inode_internal()
324 inode->i_atime = iso_date(rr->u.TF.times[cnt++].time, 0); in parse_rock_ridge_inode_internal()
326 inode->i_ctime = iso_date(rr->u.TF.times[cnt++].time, 0); in parse_rock_ridge_inode_internal()
Drock.h72 struct stamp times[0]; /* Variable number of these beasts */ member
/linux-2.4.37.9/Documentation/
Dlaptop-mode.txt33 is up to date. That allows longer dirty data and journal expire times.
35 It follows that you have to set long expire times to get long spin downs.
Dtty.txt26 In ancient times this always worked. In modern times the function will
/linux-2.4.37.9/arch/i386/math-emu/
DREADME63 it has been invented many times before I discovered it, but I have not
171 The times include load/store instructions. All times are in microseconds
196 Linux due to the look-ahead code. Also given are the times for the
313 accuracy in number of times per million, thus the second of these
315 found at a rate of 133 times per one million measurements for fsin.
349 The numbers in the body of the table give the approx number of times a
/linux-2.4.37.9/arch/i386/kernel/
Dapm.c863 last_stime = current->times.tms_stime; in apm_cpu_idle()
867 idle_percentage = current->times.tms_stime - last_stime; in apm_cpu_idle()
874 last_stime = current->times.tms_stime; in apm_cpu_idle()
/linux-2.4.37.9/Documentation/networking/
DPLIP.txt76 the IRQ mode, because the driver has to check the parallel port many times
88 When in IRQ-less mode, the PLIP driver polls the parallel port HZ times
/linux-2.4.37.9/arch/sparc64/solaris/
Dsystbl.S74 .word CHAIN(times) /* times p 43 */

1234