/src/sys/arch/arm/ixp12x0/ |
ixp12x0_clk.c | 312 int csec; local in function:delay 320 csec = usecs / 10000; 323 usecs = (TIMER_FREQUENCY / 100) * csec
|
ixp12x0_clk.c | 312 int csec; local in function:delay 320 csec = usecs / 10000; 323 usecs = (TIMER_FREQUENCY / 100) * csec
|
/src/sys/arch/arm/sa11x0/ |
sa11x0_ost.c | 311 int csec, usec; local in function:delay 313 csec = usecs / 10000; 316 usecs = (TIMER_FREQUENCY / 100) * csec
|
sa11x0_ost.c | 311 int csec, usec; local in function:delay 313 csec = usecs / 10000; 316 usecs = (TIMER_FREQUENCY / 100) * csec
|
/src/sbin/newfs_udf/ |
udf_core.c | 908 * The husec, usec and csec could be relaxed in type. 914 uint64_t husec, usec, csec; local in function:udf_timespec_to_timestamp 939 csec = husec / 100; /* only 0-99 in csec */ 940 husec -= csec * 100; /* only 0-99 in husec */ 942 /* in rare cases there is overflow in csec */ 943 csec = MIN(99, csec); 947 timestamp->centisec = csec;
|
udf_core.c | 908 * The husec, usec and csec could be relaxed in type. 914 uint64_t husec, usec, csec; local in function:udf_timespec_to_timestamp 939 csec = husec / 100; /* only 0-99 in csec */ 940 husec -= csec * 100; /* only 0-99 in husec */ 942 /* in rare cases there is overflow in csec */ 943 csec = MIN(99, csec); 947 timestamp->centisec = csec;
|
/src/sys/fs/udf/ |
udf_subr.c | 4335 uint32_t husec, usec, csec; local in function:udf_timespec_to_timestamp 4342 csec = husec / 100; /* only 0-99 in csec */ 4343 husec -= csec * 100; /* only 0-99 in husec */ 4353 timestamp->centisec = csec;
|
udf_subr.c | 4335 uint32_t husec, usec, csec; local in function:udf_timespec_to_timestamp 4342 csec = husec / 100; /* only 0-99 in csec */ 4343 husec -= csec * 100; /* only 0-99 in husec */ 4353 timestamp->centisec = csec;
|