Home
last modified time | relevance | path

Searched refs:n (Results 3126 – 3150 of 4395) sorted by relevance

1...<<121122123124125126127128129130>>...176

/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dconstexpr-init.c26 static int n[] = {a, 1}; // KO variable
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drcp.c1792 register int n, count = block; in zwrite() local
1795 if ((n = write(fd, buf, count)) < 0) in zwrite()
1797 buf += n; in zwrite()
1798 } while ((count -= n) > 0); in zwrite()
1826 notzero(char *p, int n) in notzero() argument
1830 while ((int)p & 3 && --n >= 0) in notzero()
1833 while ((n -= 4 * sizeof (int)) >= 0) { in notzero()
1846 n += 4 * sizeof (int); in notzero()
1848 while (--n >= 0) in notzero()
/illumos-gate/usr/src/cmd/syseventd/modules/sysevent_conf_mod/
H A Dsysevent_conf_mod.c230 sc_malloc(size_t n) in sc_malloc() argument
234 p = malloc(n); in sc_malloc()
243 sc_realloc(void *p, size_t current, size_t n) in sc_realloc() argument
245 p = realloc(p, n); in sc_realloc()
255 sc_free(void *p, size_t n) in sc_free() argument
1959 int n; in queue_flush_thr() local
1978 for (n = 0; n < 60; n++) { in queue_flush_thr()
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dclnt_vc.c1769 struct nb_reg_node *n; in allocate_chunk() local
1776 n = chk; in allocate_chunk()
1778 n[i].next = &(n[i+1]); in allocate_chunk()
1780 n[CHUNK_SIZE-1].next = (struct nb_reg_node *)&nb_free; in allocate_chunk()
1825 struct nb_reg_node *n = node->next; in unregister_nb() local
1826 node->next = n->next; in unregister_nb()
1828 n->ct = NULL; in unregister_nb()
1829 LIST_ADD(nb_free, n); in unregister_nb()
/illumos-gate/usr/src/lib/libdisasm/common/
H A Dlibdisasm.h81 extern uint64_t dis_previnstr(dis_handle_t *, uint64_t, int n);
/illumos-gate/usr/src/cmd/acpi/iasl/
H A Ddtparser.l170 NewLine [\n]
/illumos-gate/usr/src/uts/i86pc/os/
H A Dlgrpplat.c2308 int n; in lgrp_plat_node_sort() local
2363 n = node_cnt; in lgrp_plat_node_sort()
2366 n--; in lgrp_plat_node_sort()
2367 for (i = 0; i < n; i++) { in lgrp_plat_node_sort()
2378 for (j = i + 1; j <= n; j++) { in lgrp_plat_node_sort()
2570 int n; in lgrp_plat_process_cpu_apicids() local
2584 n = boot_prop_len / sizeof (*cpu_apicid_array); in lgrp_plat_process_cpu_apicids()
2585 if (n == 1 && !plat_dr_support_cpu()) in lgrp_plat_process_cpu_apicids()
2602 if (plat_dr_support_cpu() && n >= boot_ncpus) { in lgrp_plat_process_cpu_apicids()
2605 return (n); in lgrp_plat_process_cpu_apicids()
[all …]
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_diff.c324 int n; in ctf_diff_struct() local
374 for (n = LCTF_INFO_VLEN(ifp, itp->ctt_info); n != 0; n--) { in ctf_diff_struct()
560 int n; in ctf_diff_enum() local
577 for (n = LCTF_INFO_VLEN(ifp, itp->ctt_info); n != 0; in ctf_diff_enum()
578 n--, iep++, oep++) { in ctf_diff_enum()
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dos-ip.c251 int n, error; local
280 if ((n = connect(sockfd, saptr, salen)) < 0)
282 if ((n != SOCKET_ERROR) && (WSAGetLastError() != WSAEWOULDBLOCK)) {
295 if (n == 0)
337 if ((n = select(sockfd +1, &rset, &wset, &eset,
357 if (n == SOCKET_ERROR) {
368 if ((n = select(sockfd +1, &rset, &wset, NULL,
374 if (n < 0) {
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vsincos.S67 ! i0 n
468 ld [%fp+nk0],%i5 ! n
478 mov %o0,%o4 ! if (n & 1) swap ps, pc
517 add %i5,1,%o4 ! n = (n >> 1) | (((n + 1) ^ l) & 2)
724 fnegd %f8,%f4 ! if (n & 1) c = -c
747 fnegd %f6,%f4 ! if (n & 2) s = -s
/illumos-gate/usr/src/uts/common/io/virtio/
H A Dvirtio_main.c1544 uint_t n = 0; in virtio_interrupts_setup() local
1548 if (ddi_intr_add_handler(vio->vio_interrupts[n], in virtio_interrupts_setup()
1557 vio->vio_cfgchange_handler_index = n; in virtio_interrupts_setup()
1558 n++; in virtio_interrupts_setup()
1567 if (ddi_intr_add_handler(vio->vio_interrupts[n], in virtio_interrupts_setup()
1571 n, viq->viq_name); in virtio_interrupts_setup()
1575 viq->viq_handler_index = n; in virtio_interrupts_setup()
1577 n++; in virtio_interrupts_setup()
/illumos-gate/usr/src/cmd/lockstat/
H A Dlockstat.c460 mergesort(int (*cmp)(lsrec_t *, lsrec_t *), lsrec_t **a, lsrec_t **b, int n) in mergesort() argument
462 int m = n / 2; in mergesort()
467 if (n - m > 1) in mergesort()
468 mergesort(cmp, a + m, b + m, n - m); in mergesort()
471 for (j = m - 1; j < n - 1; j++) in mergesort()
472 b[n + m - j - 2] = a[j + 1]; in mergesort()
479 coalesce(int (*cmp)(lsrec_t *, lsrec_t *), lsrec_t **lock, int n) in coalesce() argument
486 for (i = 1; i < n; i++) { in coalesce()
/illumos-gate/usr/src/uts/sparc/v9/ml/
H A Dddi_v9_asm.S233 #define DDI_REP_GET(n,s) \ argument
237 movnz %xcc, n, %o4; \
244 add %o1, n, %o1; \
326 #define DDI_REP_PUT(n,s) \ argument
330 movnz %xcc, n, %o4; \
334 add %o1, n, %o1; \
/illumos-gate/usr/src/uts/sun4v/io/
H A Dvnet_dds.c782 int n; in vdds_new_nexus_node() local
833 for (n = 0; n < nranges; n++) { in vdds_new_nexus_node()
835 rangesp[n].child_hi = 0; in vdds_new_nexus_node()
836 rangesp[n].child_lo = 0; in vdds_new_nexus_node()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/cpc/
H A Dtst.allcpus.ksh68 /n++ > 10/
/illumos-gate/usr/src/common/acl/
H A Dacl_common.h57 void ksort(caddr_t v, int n, int s, int (*f)());
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dinitscr.c68 int i, n, begy; in initscr() local
/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Derrmsg.h106 extern void *zmalloc(int severity, size_t n);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/misc/
H A Dtst.roch.d86 /n++ == 10/
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig.c84 config_node_cache(struct cfgdata *cdata, struct config *n) in config_node_cache() argument
86 if (n->s != stable("cpu")) in config_node_cache()
89 (void *)n->num, (void *)n, NULL); in config_node_cache()
/illumos-gate/usr/src/lib/libpkg/common/
H A Dpkgserv.c302 pkgcmd_t n; in pkgopenserver_i() local
303 n.cmd = PKG_NOP; in pkgopenserver_i()
307 pkgcmd(server, &n, sizeof (n), NULL, NULL, NULL)) { in pkgopenserver_i()
/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y504 notnull(Node *n)
506 switch (n->nobj) {
509 return n;
511 return op2(NE, n, nullnode);
/illumos-gate/usr/src/cmd/krb5/kadmin/kdcmgr/
H A Dkdcmgr.sh72 yn=`printf "$(gettext "y/n")"`
74 n=`printf "$(gettext "n")"`
82 $n|$no) answer=no;;
/illumos-gate/usr/src/uts/common/sys/nxge/
H A Dnxge_phy_hw.h191 #define MRVL_88X2011_LED(n, v) ((v)<<((n)*4)) argument
192 #define MRVL_88X2011_LED_STAT(n, v) ((v)>>((n)*4)) argument
/illumos-gate/usr/src/uts/sun4/io/
H A Drootnex.c846 register int n, *ptr; in rootnex_ctlops() local
945 n = *ptr; in rootnex_ctlops()
946 if (n >= pdp->par_nreg) { in rootnex_ctlops()
949 *size = (off_t)pdp->par_reg[n].regspec_size; in rootnex_ctlops()

1...<<121122123124125126127128129130>>...176