| /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| H A D | 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) in call1a() argument 114 uc = 5; us = 6; ui = 7; ul = 8; in call1a() 117 void call1b (unsigned short us, unsigned int ui, unsigned long ul, unsigned char uc) in call1b() argument 119 uc = 5; us = 6; ui = 7; ul = 8; in call1b() 122 void call1c (unsigned int ui, unsigned long ul, unsigned char uc, unsigned short us) in call1c() argument 124 uc = 5; us = 6; ui = 7; ul = 8; in call1c() 127 void call1d (unsigned long ul, unsigned char uc, unsigned short us, unsigned int ui) in call1d() argument 129 uc = 5; us = 6; ui = 7; ul = 8; in call1d() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| H A D | 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) in call1a() argument 114 uc = 5; us = 6; ui = 7; ul = 8; in call1a() 117 void call1b (unsigned short us, unsigned int ui, unsigned long ul, unsigned char uc) in call1b() argument 119 uc = 5; us = 6; ui = 7; ul = 8; in call1b() 122 void call1c (unsigned int ui, unsigned long ul, unsigned char uc, unsigned short us) in call1c() argument 124 uc = 5; us = 6; ui = 7; ul = 8; in call1c() 127 void call1d (unsigned long ul, unsigned char uc, unsigned short us, unsigned int ui) in call1d() argument 129 uc = 5; us = 6; ui = 7; ul = 8; in call1d() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/tests/data/ |
| H A D | lang-out.ldif | 7 name;lang-en-us: Billy Ray 8 name;lang-en-us: Billy Bob 9 cn;lang-en-us: Billy Ray 11 sn;lang-en-gb;lang-en-us: Billy Ray 17 name;lang-en-us: Billy Ray 18 name;lang-en-us: Billy Bob 19 cn;lang-en-us: Billy Ray 21 sn;lang-en-gb;lang-en-us: Billy Ray 25 name;lang-en-us: Billy Ray 26 name;lang-en-us: Billy Bob [all …]
|
| H A D | referrals.out | 13 ref: ldap://hostA/o=abc,c=us HostA 21 ref: ldap://hostC/o=xyz,c=us HostC 43 ref: ldap://hostA/o=abc,c=us HostA 67 ref: ldap://hostA/uid=xxx,o=abc,c=us??sub 100 ref: ldap://hostA/o=abc,c=us??base 104 ref: ldap://hostC/o=xyz,c=us??base 131 ref: ldap://hostA/o=abc,c=us??sub 135 ref: ldap://hostC/o=xyz,c=us??sub 156 ref: ldap://hostA/o=abc,c=us??base 172 ref: ldap://hostA/o=abc,c=us??one [all …]
|
| /netbsd-src/share/examples/refuse/ian/libfetch/ |
| H A D | file.c | 45 fetchXGetFile(struct url *u, struct url_stat *us, const char *flags) in fetchXGetFile() argument 49 if (us && fetchStatFile(u, us, flags) == -1) in fetchXGetFile() 93 _fetch_stat_file(const char *fn, struct url_stat *us) in _fetch_stat_file() argument 97 us->size = -1; in _fetch_stat_file() 98 us->atime = us->mtime = 0; in _fetch_stat_file() 103 us->size = sb.st_size; in _fetch_stat_file() 104 us->atime = sb.st_atime; in _fetch_stat_file() 105 us->mtime = sb.st_mtime; in _fetch_stat_file() 111 fetchStatFile(struct url *u, struct url_stat *us, const char *flags __unused) in fetchStatFile() argument 113 return (_fetch_stat_file(u->doc, us)); in fetchStatFile() [all …]
|
| H A D | fetch.c | 77 fetchXGet(struct url *URL, struct url_stat *us, const char *flags) in fetchXGet() argument 79 if (us != NULL) { in fetchXGet() 80 us->size = -1; in fetchXGet() 81 us->atime = us->mtime = 0; in fetchXGet() 84 return (fetchXGetFile(URL, us, flags)); in fetchXGet() 86 return (fetchXGetFTP(URL, us, flags)); in fetchXGet() 88 return (fetchXGetHTTP(URL, us, flags)); in fetchXGet() 90 return (fetchXGetHTTP(URL, us, flags)); in fetchXGet() 129 fetchStat(struct url *URL, struct url_stat *us, const char *flags) in fetchStat() argument 131 if (us != NULL) { in fetchStat() [all …]
|
| /netbsd-src/external/bsd/fetch/dist/libfetch/ |
| H A D | file.c | 78 fetchXGetFile(struct url *u, struct url_stat *us, const char *flags) in fetchXGetFile() argument 86 if (if_modified_since && us == NULL) in fetchXGetFile() 87 us = &local_us; in fetchXGetFile() 101 if (us && fetch_stat_file(fd, us) == -1) { in fetchXGetFile() 108 u->last_modified >= us->mtime) { in fetchXGetFile() 190 fetch_stat_file(int fd, struct url_stat *us) in fetch_stat_file() argument 194 us->size = -1; in fetch_stat_file() 195 us->atime = us->mtime = 0; in fetch_stat_file() 200 us->size = sb.st_size; in fetch_stat_file() 201 us->atime = sb.st_atime; in fetch_stat_file() [all …]
|
| H A D | fetch.c | 81 fetchXGet(struct url *URL, struct url_stat *us, const char *flags) in fetchXGet() argument 84 if (us != NULL) { in fetchXGet() 85 us->size = -1; in fetchXGet() 86 us->atime = us->mtime = 0; in fetchXGet() 89 return (fetchXGetFile(URL, us, flags)); in fetchXGet() 91 return (fetchXGetFTP(URL, us, flags)); in fetchXGet() 93 return (fetchXGetHTTP(URL, us, flags)); in fetchXGet() 95 return (fetchXGetHTTP(URL, us, flags)); in fetchXGet() 135 fetchStat(struct url *URL, struct url_stat *us, const char *flags) in fetchStat() argument 138 if (us != NULL) { in fetchStat() [all …]
|
| /netbsd-src/external/bsd/liblzf/dist/ |
| H A D | lzf.c | 176 ssize_t us, cs, len; in compress_fd() local 182 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0) in compress_fd() 184 cs = lzf_compress (&buf1[MAX_HDR_SIZE], us, &buf2[MAX_HDR_SIZE], us > 4 ? us - 4 : us); in compress_fd() 193 header[5] = us >> 8; in compress_fd() 194 header[6] = us & 0xff; in compress_fd() 203 header[3] = us >> 8; in compress_fd() 204 header[4] = us & 0xff; in compress_fd() 205 len = us + TYPE0_HDR_SIZE; in compress_fd() 223 ssize_t rc, cs, us, bytes, over = 0; in uncompress_fd() local 251 us = (header[3] << 8) | header[4]; in uncompress_fd() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/contrib/minizip/ |
| H A D | unzip.c | 588 unz64_s us; in unzOpenInternal() local 606 us.z_filefunc.zseek32_file = NULL; in unzOpenInternal() 607 us.z_filefunc.ztell32_file = NULL; in unzOpenInternal() 609 fill_fopen64_filefunc(&us.z_filefunc.zfile_func64); in unzOpenInternal() 611 us.z_filefunc = *pzlib_filefunc64_32_def; in unzOpenInternal() 612 us.is64bitOpenFunction = is64bitOpenFunction; in unzOpenInternal() 616 us.filestream = ZOPEN64(us.z_filefunc, in unzOpenInternal() 620 if (us.filestream==NULL) in unzOpenInternal() 623 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream); in unzOpenInternal() 629 us.isZip64 = 1; in unzOpenInternal() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/minizip/ |
| H A D | unzip.c | 588 unz64_s us; in unzOpenInternal() local 606 us.z_filefunc.zseek32_file = NULL; in unzOpenInternal() 607 us.z_filefunc.ztell32_file = NULL; in unzOpenInternal() 609 fill_fopen64_filefunc(&us.z_filefunc.zfile_func64); in unzOpenInternal() 611 us.z_filefunc = *pzlib_filefunc64_32_def; in unzOpenInternal() 612 us.is64bitOpenFunction = is64bitOpenFunction; in unzOpenInternal() 616 us.filestream = ZOPEN64(us.z_filefunc, in unzOpenInternal() 620 if (us.filestream==NULL) in unzOpenInternal() 623 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream); in unzOpenInternal() 629 us.isZip64 = 1; in unzOpenInternal() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/zlib/contrib/minizip/ |
| H A D | unzip.c | 588 unz64_s us; in unzOpenInternal() local 606 us.z_filefunc.zseek32_file = NULL; in unzOpenInternal() 607 us.z_filefunc.ztell32_file = NULL; in unzOpenInternal() 609 fill_fopen64_filefunc(&us.z_filefunc.zfile_func64); in unzOpenInternal() 611 us.z_filefunc = *pzlib_filefunc64_32_def; in unzOpenInternal() 612 us.is64bitOpenFunction = is64bitOpenFunction; in unzOpenInternal() 616 us.filestream = ZOPEN64(us.z_filefunc, in unzOpenInternal() 620 if (us.filestream==NULL) in unzOpenInternal() 623 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream); in unzOpenInternal() 629 us.isZip64 = 1; in unzOpenInternal() [all …]
|
| /netbsd-src/sys/external/isc/atheros_hal/dist/ar5210/ |
| H A D | ar5210_misc.c | 419 ar5210SetSifsTime(struct ath_hal *ah, u_int us) in ar5210SetSifsTime() argument 423 if (us > ath_hal_mac_usec(ah, 0x7ff)) { in ar5210SetSifsTime() 425 __func__, us); in ar5210SetSifsTime() 431 ath_hal_mac_clks(ah, us)); in ar5210SetSifsTime() 432 ahp->ah_sifstime = us; in ar5210SetSifsTime() 445 ar5210SetSlotTime(struct ath_hal *ah, u_int us) in ar5210SetSlotTime() argument 449 if (us < HAL_SLOT_TIME_9 || us > ath_hal_mac_usec(ah, 0xffff)) { in ar5210SetSlotTime() 451 __func__, us); in ar5210SetSlotTime() 456 OS_REG_WRITE(ah, AR_SLOT_TIME, ath_hal_mac_clks(ah, us)); in ar5210SetSlotTime() 457 ahp->ah_slottime = us; in ar5210SetSlotTime() [all …]
|
| /netbsd-src/sys/external/isc/atheros_hal/dist/ar5211/ |
| H A D | ar5211_misc.c | 423 ar5211SetSifsTime(struct ath_hal *ah, u_int us) in ar5211SetSifsTime() argument 427 if (us > ath_hal_mac_usec(ah, 0xffff)) { in ar5211SetSifsTime() 429 __func__, us); in ar5211SetSifsTime() 434 OS_REG_WRITE(ah, AR_D_GBL_IFS_SIFS, ath_hal_mac_clks(ah, us)); in ar5211SetSifsTime() 435 ahp->ah_slottime = us; in ar5211SetSifsTime() 448 ar5211SetSlotTime(struct ath_hal *ah, u_int us) in ar5211SetSlotTime() argument 452 if (us < HAL_SLOT_TIME_9 || us > ath_hal_mac_usec(ah, 0xffff)) { in ar5211SetSlotTime() 454 __func__, us); in ar5211SetSlotTime() 455 ahp->ah_slottime = us; /* restore default handling */ in ar5211SetSlotTime() 459 OS_REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath_hal_mac_clks(ah, us)); in ar5211SetSlotTime() [all …]
|
| /netbsd-src/sys/kern/ |
| H A D | core_netbsd.c | 119 CORENAME(coredump_writesegs_netbsd)(struct uvm_coredump_state *us) in CORENAME() 121 struct coredump_state *cs = us->cookie; in CORENAME() 125 if (us->flags & UVM_COREDUMP_STACK) in CORENAME() 134 cseg.c_addr = us->start; in CORENAME() 136 if (us->start == us->realend) in CORENAME() 140 cseg.c_size = us->end - us->start; in CORENAME() 148 (void *)(vaddr_t)us->start, cseg.c_size), ENOSYS, error); in CORENAME()
|
| /netbsd-src/external/lgpl3/gmp/dist/mpz/ |
| H A D | rootrem.c | 39 mp_size_t us, un, rootn, remn; in mpz_rootrem() local 42 us = SIZ(u); in mpz_rootrem() 45 if (UNLIKELY (us < 0 && (nth & 1) == 0)) in mpz_rootrem() 53 if (us == 0) in mpz_rootrem() 61 un = ABS (us); in mpz_rootrem() 91 SIZ(root) = us >= 0 ? rootn : -rootn; in mpz_rootrem() 98 SIZ(rem) = us >= 0 ? remn : -remn; in mpz_rootrem()
|
| H A D | root.c | 39 mp_size_t us, un, rootn, remn; in mpz_root() local 42 us = SIZ(u); in mpz_root() 45 if (UNLIKELY (us < 0 && (nth & 1) == 0)) in mpz_root() 53 if (us == 0) in mpz_root() 60 un = ABS (us); in mpz_root() 85 SIZ(root) = us >= 0 ? rootn : -rootn; in mpz_root()
|
| /netbsd-src/sys/dev/onewire/ |
| H A D | onewire_bitbang.c | 165 int s, rv, us; in onewire_bb_read_bit() local 172 for (us = 62; us >= 60 - 45; us -= 5) { in onewire_bb_read_bit() 180 if (us > 0) { in onewire_bb_read_bit() 181 delay(us); in onewire_bb_read_bit()
|
| /netbsd-src/sys/arch/x68k/stand/libsa/ |
| H A D | clock.c | 81 delay(int us) in delay() argument 86 if (us < 1) in delay() 99 for (; us > 5000; us -= 5000) { in delay() 106 end = 200 - (us / 50); in delay()
|
| /netbsd-src/games/gomoku/ |
| H A D | makemove.c | 99 makemove(player_color us, spot_index mv) in makemove() argument 112 sp->s_occ = us; in makemove() 137 if (sp->s_occ == us) in makemove() 163 player_color them = us != BLACK ? BLACK : WHITE; in makemove() 165 union comboval *cp = &fsp->s_fval[us][r]; in makemove() 181 struct combostr *cbp1 = sortframes[us]; in makemove() 183 sortframes[us] = cbp->c_next = cbp->c_prev = cbp; in makemove() 186 &board[cbp1->c_vertex].s_fval[us][cbp1->c_dir]; in makemove() 189 sortframes[us] = cbp; in makemove() 193 cp1 = &board[cbp1->c_vertex].s_fval[us][cbp1->c_dir]; in makemove() [all …]
|
| /netbsd-src/tests/usr.bin/xlint/lint1/ |
| H A D | msg_259_c90.c | 69 signed short ss, unsigned short us, in small_integer_types() argument 77 plain_char(us); in small_integer_types() 87 signed_char(us); in small_integer_types() 97 unsigned_char(us); in small_integer_types() 107 signed_short(us); in small_integer_types() 117 unsigned_short(us); in small_integer_types()
|
| /netbsd-src/sys/arch/ews4800mips/stand/common/ |
| H A D | delay.c | 40 delay(int us) in delay() argument 47 if (us > 300) in delay() 48 us -= 300; in delay() 49 N = us * CPU_SPEED; in delay()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgfortran/io/ |
| H A D | intrinsics.c | 194 gfc_unit *us; in flush_i4() local 201 us = find_unit (*unit); in flush_i4() 202 if (us != NULL) in flush_i4() 204 sflush (us->s); in flush_i4() 205 unlock_unit (us); in flush_i4() 217 gfc_unit *us; in flush_i8() local 224 us = find_unit (*unit); in flush_i8() 225 if (us != NULL) in flush_i8() 227 sflush (us->s); in flush_i8() 228 unlock_unit (us); in flush_i8()
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/io/ |
| H A D | intrinsics.c | 194 gfc_unit *us; in flush_i4() local 201 us = find_unit (*unit); in flush_i4() 202 if (us != NULL) in flush_i4() 204 sflush (us->s); in flush_i4() 205 unlock_unit (us); in flush_i4() 217 gfc_unit *us; in flush_i8() local 224 us = find_unit (*unit); in flush_i8() 225 if (us != NULL) in flush_i8() 227 sflush (us->s); in flush_i8() 228 unlock_unit (us); in flush_i8()
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
| H A D | sh_wasted_example.txt | 13 Script duration: 3101631 us 16 FILE NAME TIME(us) 20 FILE NAME TIME(us) 34 Script duration: 3032616 us 37 FILE NAME TIME(us) 41 FILE NAME TIME(us)
|