HomeSort by: relevance | last modified time | path
    Searched refs:us (Results 1 - 25 of 426) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/arch/ews4800mips/stand/common/
delay.c 40 delay(int us)
47 if (us > 300)
48 us -= 300;
49 N = us * CPU_SPEED;
  /src/sys/arch/amiga/stand/loadkmap/us/
Makefile 3 HOSTPROG= us-kbdmap
4 FILES= us.map
  /src/sys/arch/atari/stand/keymaps/us/
Makefile 3 HOSTPROG=us-kbdmap
4 MAP=us.map
  /src/sys/arch/atari/stand/keymaps/
Makefile 3 SUBDIR= de fr uk us
  /src/sys/arch/cesfic/include/
param.h 82 #define delay(us) _delay((us) << 8)
83 #define DELAY(us) delay(us)
  /src/sys/arch/hp300/include/
param.h 69 #define delay(us) _delay((us) << 8)
70 #define DELAY(us) delay(us)
  /src/sys/arch/news68k/include/
param.h 70 #define delay(us) _delay((us) << 8)
71 #define DELAY(us) delay(us)
  /src/sys/arch/next68k/include/
param.h 70 #define delay(us) _delay((us) << 8)
71 #define DELAY(us) delay(us)
  /src/sys/arch/x68k/include/
param.h 77 #define delay(us) _delay(us)
78 #define DELAY(us) delay(us)
  /src/external/gpl3/gdb/dist/readline/readline/
posixselect.h 41 #define USEC_TO_TIMEVAL(us, tv) \
43 (tv).tv_sec = (us) / USEC_PER_SEC; \
44 (tv).tv_usec = (us) % USEC_PER_SEC; \
  /src/external/gpl3/gdb.old/dist/readline/readline/
posixselect.h 41 #define USEC_TO_TIMEVAL(us, tv) \
43 (tv).tv_sec = (us) / USEC_PER_SEC; \
44 (tv).tv_usec = (us) % USEC_PER_SEC; \
  /src/external/mit/xorg/etc/etc.hpc/
Makefile.inc 5 etc.hpc/xorg.conf.640x240-us \
7 etc.hpc/xorg.conf.640x480-us \
9 etc.hpc/xorg.conf.800x600-us
  /src/sys/arch/i386/stand/efiboot/
efidelay.c 32 delay(int us)
39 status = uefi_call_wrapper(BS->Stall, 1, us);
46 panic("couldn't delay %d us: %s(%" PRIxMAX ")\n", us, uerrmsg,
  /src/external/apache2/llvm/dist/libcxx/include/__support/ibm/
gettod_zos.h 36 uint64_t us = (Value.Hi >> 4); local
39 us = us - 2208988800000000;
44 DivPair1 = us;
  /src/share/examples/refuse/ian/libfetch/
file.c 45 fetchXGetFile(struct url *u, struct url_stat *us, const char *flags)
49 if (us && fetchStatFile(u, us, flags) == -1)
93 _fetch_stat_file(const char *fn, struct url_stat *us)
97 us->size = -1;
98 us->atime = us->mtime = 0;
103 us->size = sb.st_size;
104 us->atime = sb.st_atime;
105 us->mtime = sb.st_mtime
121 struct url_stat us; local
    [all...]
  /src/sys/arch/epoc32/epoc32/
clock.c 41 delay(unsigned int us)
44 soc_delay(us);
  /src/external/bsd/ppp/dist/pppd/
cbcp.c 103 static void cbcp_recvreq (cbcp_state *us, u_char *pckt, int len);
104 static void cbcp_resp (cbcp_state *us);
105 static void cbcp_up (cbcp_state *us);
106 static void cbcp_recvack (cbcp_state *us, u_char *pckt, int len);
107 static void cbcp_send (cbcp_state *us, int code, u_char *buf, int len);
127 cbcp_state *us; local
129 us = &cbcp[iface];
130 memset(us, 0, sizeof(cbcp_state));
131 us->us_unit = iface;
132 us->us_type |= (1 << CB_CONF_NO)
139 cbcp_state *us = &cbcp[iface]; local
162 cbcp_state *us = &cbcp[unit]; local
    [all...]
  /src/external/lgpl3/gmp/dist/mpz/
rootrem.c 39 mp_size_t us, un, rootn, remn; local
42 us = SIZ(u);
45 if (UNLIKELY (us < 0 && (nth & 1) == 0))
53 if (us == 0)
61 un = ABS (us);
91 SIZ(root) = us >= 0 ? rootn : -rootn;
98 SIZ(rem) = us >= 0 ? remn : -remn;
root.c 39 mp_size_t us, un, rootn, remn; local
42 us = SIZ(u);
45 if (UNLIKELY (us < 0 && (nth & 1) == 0))
53 if (us == 0)
60 un = ABS (us);
85 SIZ(root) = us >= 0 ? rootn : -rootn;
  /src/external/mpl/bind/dist/tests/bench/
siphash.c 28 #define KILOHASHES(count, us) ((us) == 0 ? 0.0 : ((count) * 1000.0 / (us)))
42 uint64_t us; local
57 us = isc_time_microdiff(&finish, &start);
58 printf("%f us wide-lower len %3zu, %7.0f kh/s (%llx)\n",
59 (double)us / 1000000.0, len, KILOHASHES(count, us),
67 uint64_t us; local
81 us = isc_time_microdiff(&finish, &start)
90 uint64_t us; local
114 uint64_t us; local
139 uint64_t us; local
163 uint64_t us; local
    [all...]
  /src/sys/arch/evbcf/include/
param.h 75 #define delay(us) _delay((us)<<10)
  /src/sys/arch/luna68k/include/
param.h 66 #define delay(us) _delay((us)<<8)
  /src/sys/arch/mvme68k/include/
param.h 75 #define delay(us) _delay((us)<<10)
  /src/external/bsd/fetch/dist/libfetch/
file.c 78 fetchXGetFile(struct url *u, struct url_stat *us, const char *flags)
86 if (if_modified_since && us == NULL)
87 us = &local_us;
101 if (us && fetch_stat_file(fd, us) == -1) {
108 u->last_modified >= us->mtime) {
190 fetch_stat_file(int fd, struct url_stat *us)
194 us->size = -1;
195 us->atime = us->mtime = 0
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
funcargs.c 35 unsigned short us = 6; variable
36 unsigned short *usp = &us;
112 void call1a (unsigned char uc, unsigned short us, unsigned int ui, unsigned long ul)
114 uc = 5; us = 6; ui = 7; ul = 8;
117 void call1b (unsigned short us, unsigned int ui, unsigned long ul, unsigned char uc)
119 uc = 5; us = 6; ui = 7; ul = 8;
122 void call1c (unsigned int ui, unsigned long ul, unsigned char uc, unsigned short us)
124 uc = 5; us = 6; ui = 7; ul = 8;
127 void call1d (unsigned long ul, unsigned char uc, unsigned short us, unsigned int ui)
129 uc = 5; us = 6; ui = 7; ul = 8
    [all...]

Completed in 72 milliseconds

1 2 3 4 5 6 7 8 91011>>