Home
last modified time | relevance | path

Searched refs:end (Results 151 – 175 of 1234) sorted by relevance

12345678910>>...50

/illumos-gate/usr/src/lib/fm/topo/maps/SMCI,SSG-6049P-E1CR36L/
H A DSSG-6049P-E1CR36L-usb.usbtopo34 end-port
47 end-port
60 end-port
73 end-port
85 end-port
/illumos-gate/usr/src/common/ficl/softcore/
H A Dficl.fr36 : end-locals ( -- ) 0 0 (local) ; immediate
41 0 locals| addr2 length c-addr | end-locals
53 0 locals| b-length b-u b-addr a-u a-addr | end-locals
60 locals| b-u b-addr a-u a-addr | end-locals
74 \ end-of-file
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_byteswap.c52 caddr_t end; in zfs_ace_byteswap() local
60 end = (caddr_t)buf + size; in zfs_ace_byteswap()
63 while (ptr < end) { in zfs_ace_byteswap()
76 if (ptr + sizeof (zfs_ace_hdr_t) > end) { in zfs_ace_byteswap()
88 if (ptr + sizeof (ace_t) > end) { in zfs_ace_byteswap()
109 if (ptr + sizeof (zfs_ace_t) <= end) { in zfs_ace_byteswap()
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/
H A Dilbadm_nat.c133 boolean_t end; in ilbadm_show_info() local
145 end = B_FALSE; in ilbadm_show_info()
153 end = B_TRUE; in ilbadm_show_info()
179 rclib = ilb_show_nat(h, buf.nbuf, &num, &end); in ilbadm_show_info()
181 rclib = ilb_show_persist(h, buf.pbuf, &num, &end); in ilbadm_show_info()
197 } while (!end); in ilbadm_show_info()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/features/
H A Dpoll8 tst pipe_socketpair note{ use socketpair() for peekable pipe() }end execute{
68 }end
69 tst socketpair_devfd note{ /dev/fd/N handles socketpair() }end execute{
96 }end
97 tst socketpair_shutdown_mode note{ fchmod() after socketpair() shutdown() }end execute{
126 }end
157 }end
/illumos-gate/usr/src/uts/common/fs/
H A Dpathname.c304 char *end = start + pnp->pn_pathlen; in pn_fixslash() local
306 while (end > start && *(end - 1) == '/') in pn_fixslash()
307 end--; in pn_fixslash()
308 if (pnp->pn_pathlen == end - start) in pn_fixslash()
310 *end = '\0'; in pn_fixslash()
311 pnp->pn_pathlen = end - start; in pn_fixslash()
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/
H A Dlsd1.ok76 Last: H: atom("H", 0.12, 0.16, 0.06, 0.16, 0.12, 0.015) with .L.w at Last.end
103 Last: CH3: atom("CH\s-3\d3\u\s+3", 0.3, 0.16, 0.06, 0.16, 0.12, 0.015) with .L.w at Last.end
107 Last: H: atom("H", 0.12, 0.16, 0.06, 0.16, 0.12, 0.015) with .R.se at Last.end
111 Last: C: atom("C", 0.12, 0.16, 0.06, 0.16, 0.12, 0.015) with .C.s at Last.end
115 Last: O: atom("O", 0.12, 0.16, 0.06, 0.16, 0.12, 0.015) with .C.s at Last.end
119 Last: N: atom("N", 0.12, 0.16, 0.06, 0.16, 0.12, 0.015) with .L.w at Last.end
123 …5: atom("C\s-3\d2\u\s+3H\s-3\d5\u\s+3", 0.36, 0.16, 0.06, 0.16, 0.12, 0.015) with .L.sw at Last.end
127 …5: atom("C\s-3\d2\u\s+3H\s-3\d5\u\s+3", 0.36, 0.16, 0.06, 0.16, 0.12, 0.015) with .L.nw at Last.end
/illumos-gate/usr/src/ucblib/libcurses/
H A Ddelch.c33 char *end; in wdelch() local
35 end = &win->_y[win->_cury][win->_maxx - 1]; in wdelch()
38 while (temp1 < end) in wdelch()
H A Dinsch.c33 char *end; in winsch() local
35 end = &win->_y[win->_cury][win->_curx]; in winsch()
38 while (temp1 > end) in winsch()
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dpk11tokens.c178 char *end; in find_unescaped_colon() local
183 while ((end = strchr(str, ':')) != NULL) { in find_unescaped_colon()
184 if (end != str && *(end-1) != '\\') in find_unescaped_colon()
185 return (end); in find_unescaped_colon()
186 str = end + 1; /* could point to null-terminator */ in find_unescaped_colon()
188 if (end == NULL) in find_unescaped_colon()
189 end = strchr(str, '\0'); in find_unescaped_colon()
190 return (end); in find_unescaped_colon()
/illumos-gate/usr/src/cmd/mandoc/
H A Dcompat_ohash.c47 ohash_create_entry(struct ohash_info *i, const char *start, const char **end) in ohash_create_entry() argument
51 if (!*end) in ohash_create_entry()
52 *end = start + strlen(start); in ohash_create_entry()
53 p = (i->alloc)(i->key_offset + (*end - start) + 1, i->data); in ohash_create_entry()
55 memcpy(p+i->key_offset, start, *end-start); in ohash_create_entry()
56 p[i->key_offset + (*end - start)] = '\0'; in ohash_create_entry()
225 ohash_lookup_interval(struct ohash *h, const char *start, const char *end, in ohash_lookup_interval() argument
246 end - start) == 0 && in ohash_lookup_interval()
247 (h->t[i].p+h->info.key_offset)[end-start] == '\0') { in ohash_lookup_interval()
/illumos-gate/usr/src/boot/i386/libi386/
H A Dlinux.c125 goto end; in linux_loadkernel()
131 goto end; in linux_loadkernel()
141 goto end; in linux_loadkernel()
147 goto end; in linux_loadkernel()
164 goto end; in linux_loadkernel()
198 goto end; in linux_loadkernel()
210 goto end; in linux_loadkernel()
225 goto end; in linux_loadkernel()
270 end: in linux_loadkernel()
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dterminfo.c55 ti_unescape_memory (const char *in, const char *end) in ti_unescape_memory() argument
145 while (in <= end); in ti_unescape_memory()
160 ti_escape_memory (const char *in, const char *end) in ti_escape_memory() argument
203 while (in < end); in ti_escape_memory()
/illumos-gate/usr/src/cmd/ypcmd/
H A Dgetlist.c75 listofnames *end; local
94 end = nname;
96 end->nextname = nname;
97 end = nname;
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dprivlib.c511 goto end; in __init_daemon_priv()
515 goto end; in __init_daemon_priv()
523 goto end; in __init_daemon_priv()
528 goto end; in __init_daemon_priv()
538 goto end; in __init_daemon_priv()
544 end: in __init_daemon_priv()
630 goto end; in __init_suid_priv()
635 goto end; in __init_suid_priv()
642 goto end; in __init_suid_priv()
646 goto end; in __init_suid_priv()
[all …]
/illumos-gate/usr/src/uts/i86pc/dboot/
H A Ddboot_startkern.c645 ml->addr = end; in exclude_from_pci()
650 else if (ml->addr < end && end < ml->addr + ml->size) { in exclude_from_pci()
652 ml->addr = end; in exclude_from_pci()
839 uint64_t end; in build_pcimemlists() local
860 start, end); in build_pcimemlists()
867 if (end <= start) in build_pcimemlists()
1472 uint64_t end; in dboot_process_mmap() local
1509 max_mem = end; in dboot_process_mmap()
1882 uint64_t end; in do_mem_alloc() local
1956 uint64_t end; in build_page_tables() local
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/checksum/edonr/
H A Dedonr_test.c180 struct timeval start, end; \ in main()
187 (void) gettimeofday(&end, NULL); \ in main()
188 delta = (end.tv_sec * 1000000llu + end.tv_usec) - \ in main()
/illumos-gate/usr/src/test/util-tests/tests/libnvpair_json/
H A Dprint_json.c101 char *end = NULL; in parse_int() local
104 t = strtoll(in, &end, 10); in parse_int()
105 if (errno != 0 || end == in || *end != '\0') { in parse_int()
130 char *end = NULL; in parse_uint() local
133 t = strtoull(in, &end, 10); in parse_uint()
134 if (errno != 0 || end == in || *end != '\0') { in parse_uint()
159 char *end = NULL; in parse_double() local
162 t = strtod(in, &end); in parse_double()
163 if (errno != 0 || end == in || *end != '\0') { in parse_double()
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dtsort.c546 r_initfirst(Sort * sort, int end) in r_initfirst() argument
552 for (ifst = lifst; ifst <= end; ifst++) { in r_initfirst()
590 f_initfirst(Sort *sort, int end) in f_initfirst() argument
596 for (ifst = lifst; ifst <= end; ifst++) { in f_initfirst()
606 if (ifst == end) in f_initfirst()
620 sort->s_lmpa[end--] = tlmp; in f_initfirst()
791 int bgn = 0, end = sort.s_lndx - 1; in tsort() local
793 while (bgn < end) { in tsort()
794 Rt_map *tlmp = sort.s_lmpa[end]; in tsort()
796 sort.s_lmpa[end] = sort.s_lmpa[bgn]; in tsort()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Dwchar9 }end
21 }end
23 if tst note{ <wchar.h> requires native <stdio.h> }end nocompile{
29 }end
30 if tst note{ <stdio.h> defines __va_list for <wchar.h> }end compile{
38 }end && {
158 }end
/illumos-gate/usr/src/cmd/mdb/intel/modules/i40e/
H A Di40e.c132 uint64_t begin = UINT64_MAX, end = UINT64_MAX; in i40e_tx_ring_dcmd() local
166 end = mdb_strtoull(opt_e); in i40e_tx_ring_dcmd()
169 end = trq.itrq_tx_ring_size - 1; in i40e_tx_ring_dcmd()
175 if (argc > 0 && (end < begin || begin >= trq.itrq_tx_ring_size || in i40e_tx_ring_dcmd()
176 end >= trq.itrq_tx_ring_size)) { in i40e_tx_ring_dcmd()
222 for (uint64_t i = begin; i <= end; i++) { in i40e_tx_ring_dcmd()
/illumos-gate/usr/src/lib/libsocket/inet/
H A Dinet6_opt.c214 uint8_t *end; in inet6_opt_next() local
223 end = (uint8_t *)extbuf + extlen; in inet6_opt_next()
237 if (p + 2 + *(p + 1) >= end) in inet6_opt_next()
245 if ((p + 2 >= end) || (p + 2 + *(p + 1) > end)) { in inet6_opt_next()
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dfdsync.c52 int end; /* fd of last lock in the list */ member
133 p->end = (((fd + CELLTBLSZ) / CELLTBLSZ) * CELLTBLSZ) - 1; in create_block()
137 if (fd < l->end) in create_block()
160 if (fd <= p->end) in search()
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_error.c67 struct nwam_error_info *cur, *end; in nwam_strerror() local
70 end = cur + NWAM_NUM_ERRORS; in nwam_strerror()
72 for (; cur < end; cur++) { in nwam_strerror()
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dcheck_byte_count-ice.c15 check_byte_count-ice.c:20:0: error: Expected } at end of function
16 check_byte_count-ice.c:20:0: error: got end-of-input
18 * check-error-end

12345678910>>...50