Searched refs:nano (Results 1 - 16 of 16) sorted by relevance

/macosx-10.9.5/IOGraphics-471.92.1/IOGraphicsFamily/IOKit/graphics/
H A DIOGraphicsPrivate.h37 UInt64 nano; \
39 absolutetime_to_nanoseconds(now, &nano); \
40 IOLog("%08d [%s]::", (uint32_t) (nano / 1000000ULL), name); \
43 kprintf("%08d [%s]::", (uint32_t) (nano / 1000000ULL), name); \
59 UInt64 nano; \
61 absolutetime_to_nanoseconds( now, &nano ); \
62 IOLog("%08d [%s]::", (uint32_t) (nano / 1000000ULL), name); \
65 kprintf("%08d [%s]::", (uint32_t) (nano / 1000000ULL), name); \
80 UInt64 nano; \
82 absolutetime_to_nanoseconds( now, &nano ); \
[all...]
/macosx-10.9.5/vim-53/runtime/ftplugin/
H A Dnanorc.vim2 " Language: nanorc(5) - GNU nano configuration file
/macosx-10.9.5/syslog-217.1.4/aslcommon/
H A Dasl_memory.h40 uint32_t nano; member in struct:__anon12651
H A Dasl_mini_memory.h43 uint32_t nano; member in struct:__anon12654
H A Dasl_memory.c409 r->nano = (uint32_t)-1;
424 if (val != NULL) r->nano = atoi(val);
600 if (r->nano != (uint32_t)-1)
602 snprintf(tmp, sizeof(tmp), "%u", r->nano);
811 out->nano = atoll(val);
1108 if ((qtype & ASL_QUERY_MATCH_NANO) && (q->nano != r->nano)) return 0;
H A Dasl_mini_memory.c409 r->nano = (uint32_t)-1;
424 if (val != NULL) r->nano = atoi(val);
616 if (r->nano != (uint32_t)-1)
618 snprintf(tmp, sizeof(tmp), "%u", r->nano);
788 out->nano = atoll(val);
983 if ((qtype & ASL_QUERY_MATCH_NANO) && (q->nano != r->nano)) return 0;
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/
H A DIOHIKeyboard.cpp268 UInt64 nano; local
280 nano = (number) ? number->unsigned64BitValue() : *((UInt64 *) (data->getBytesNoCopy()));
282 if( nano < EV_MINKEYREPEAT)
283 nano = EV_MINKEYREPEAT;
284 nanoseconds_to_absolutetime(nano, &_keyRepeat);
293 nano = (number) ? number->unsigned64BitValue() : *((UInt64 *) (data->getBytesNoCopy()));
295 if( nano < EV_MINKEYREPEAT)
296 nano = EV_MINKEYREPEAT;
297 nanoseconds_to_absolutetime(nano, &_initialKeyRepeat);
H A DIOHIDSystem.cpp131 UInt64 nano; local
132 absolutetime_to_nanoseconds(*ts, &nano);
133 return( nano >> 24 );
138 UInt64 nano = ((UInt64) tick) << 24; local
139 nanoseconds_to_absolutetime(nano, ts);
1529 UInt64 nano; local
1542 nano = EV_DCLICKTIME;
1544 nano, 64 );
6224 UInt64 nano; local
6230 nano
6563 UInt64 nano = number->unsigned64BitValue(); local
6616 UInt64 nano = EV_DEFAULTKEYREPEAT; local
6630 UInt64 nano = EV_DCLICKTIME; local
[all...]
/macosx-10.9.5/syslog-217.1.4/libsystem_asl.tproj/src/
H A Dasl_msg.c1415 _asl_time_string(const char *infmt, const char *str, const char *nano) argument
1464 if (nano != NULL) nsec = atoi(nano);
1610 const char *key, *val, *nano; local
1625 nano = NULL;
1626 asl_msg_lookup(msg, ASL_KEY_TIME_NSEC, &nano, NULL);
1642 if (val != NULL) vtime = _asl_time_string(tfmt, val, nano);
2216 const char *mval, *nano; local
2242 nano = NULL;
2243 asl_msg_lookup(msg, ASL_KEY_TIME_NSEC, &nano, NUL
2306 const char *vhost, *vpid, *vsender, *vmessage, *vlevel, *vrefproc, *vrefpid, *v, *key, *val, *nano; local
[all...]
H A Dasl_file.c64 uint32_t nano; member in struct:__anon12666
665 r.nano = 0;
684 if (val != NULL) r.nano = atoi(val);
888 _asl_put_32(r.nano, p);
1191 r.nano = asl_file_fetch_helper_32(s, &p, out, ASL_KEY_TIME_NSEC, 0, 0);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/units/
H A Dunits.tcl529 nano 1e-9
549 n nano
/macosx-10.9.5/ruby-104/ruby/
H A Dtime.c4494 * %9N nano second (9 digits)
4673 VALUE subsecx, nano, subnano, v; local
4690 nano = mulquo(subsecx, INT2FIX(1000000000), INT2FIX(TIME_SCALE));
4691 divmodv(nano, INT2FIX(1), &v, &subnano);
4696 nano = add(LONG2FIX(nsec), subnano);
4719 if (!rb_equal(nano, INT2FIX(0))) {
4720 if (RB_TYPE_P(nano, T_RATIONAL)) {
4721 rb_ivar_set(str, id_nano_num, RRATIONAL(nano)->num);
4722 rb_ivar_set(str, id_nano_den, RRATIONAL(nano)->den);
4725 rb_ivar_set(str, id_nano_num, nano);
4852 VALUE nano = quo(num_exact(nano_num), num_exact(nano_den)); local
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dnanorc.vim2 " Language: nanorc(5) - GNU nano configuration file
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOService.cpp2955 UInt64 nano; local
2969 absolutetime_to_nanoseconds(endTime, &nano);
2970 if (nano > 500000000ULL)
2971 IOLog("%s::start took %ld ms\n", service->getName(), (long)(UInt32)(nano / 1000000ULL));
3294 uint64_t nano; local
3305 absolutetime_to_nanoseconds(*(AbsoluteTime *)&accumBusy, &nano);
3307 return (nano);
H A DIOPMrootDomain.cpp740 UInt64 nano = 0; local
746 absolutetime_to_nanoseconds(endTime, &nano);
749 return (UInt32)(nano / 1000000ULL);
7663 UInt64 nano; local
7673 nano = 0;
7677 absolutetime_to_nanoseconds(endTime, &nano);
7679 if (nano > 3000000000ULL)
/macosx-10.9.5/CPANInternal-140/DateTime/lib/
H A DDateTime.pm1247 my $nano = $self->{rd_nanosecs} / MAX_NANOSECONDS;
1249 return $epoch + $nano;

Completed in 328 milliseconds