Home
last modified time | relevance | path

Searched refs:end (Results 176 – 200 of 1234) sorted by relevance

12345678910>>...50

/illumos-gate/usr/src/tools/smatch/src/
H A Dexpression.c253 char *end; in get_number_value() local
260 value = parse_num(str, &end); in get_number_value()
261 if (end == str) in get_number_value()
266 char c = *end++; in get_number_value()
277 if (*end == c) { in get_number_value()
279 end++; in get_number_value()
350 if (str == end) in get_number_value()
353 if (*end && end[1]) in get_number_value()
356 if (*end == 'f' || *end == 'F') in get_number_value()
358 else if (*end == 'l' || *end == 'L') in get_number_value()
[all …]
/illumos-gate/usr/src/ucblib/libcurses/
H A Dclrtobot.c33 char *sp, *end, *maxx; in wclrtobot() local
40 end = &win->_y[y][win->_maxx]; in wclrtobot()
41 for (sp = &win->_y[y][startx]; sp < end; sp++) in wclrtobot()
H A Derase.c33 char *sp, *end, *start, *maxx; in werase() local
42 end = &start[win->_maxx]; in werase()
43 for (sp = start; sp < end; sp++) in werase()
H A Dclrtoeol.c32 char *sp, *end; in wclrtoeol() local
39 end = &win->_y[y][win->_maxx]; in wclrtoeol()
42 for (sp = maxx; sp < end; sp++) in wclrtoeol()
H A Ddeleteln.c35 char *end; in wdeleteln() local
52 for (end = &temp[win->_maxx]; temp < end; ) in wdeleteln()
H A Dinsertln.c35 char *end; in winsertln() local
53 for (end = &temp[win->_maxx]; temp < end; ) in winsertln()
/illumos-gate/usr/src/uts/common/io/nge/
H A Dnge_tx.c129 const uint64_t end = srp->desc.nslots * txd_size; in nge_tx_desc_sync() local
136 if (start + num <= end) in nge_tx_desc_sync()
431 boolean_t end; in nge_send_mapped() local
538 end = B_TRUE; in nge_send_mapped()
547 cookie[i].dmac_size, 0, end, tfint); in nge_send_mapped()
549 end = B_FALSE; in nge_send_mapped()
555 flags, end, tfint); in nge_send_mapped()
762 if (end) in nge_hot_txd_fill()
763 hw_sbd_p->control_status.control_sum_bits.end = NGE_SET; in nge_hot_txd_fill()
800 if (end) in nge_sum_txd_fill()
[all …]
/illumos-gate/usr/src/lib/libipmp/common/
H A Dipmp_query.c229 struct timeval end; in ipmp_getgrouplist() local
296 struct timeval end; in ipmp_getgroupinfo() local
321 retval = ipmp_readgroupinfo_lists(statep, *grinfopp, &end); in ipmp_getgroupinfo()
393 struct timeval end; in ipmp_getifinfo() local
404 retval = ipmp_sendquery(statep, IPMP_IFINFO, name, NULL, &end); in ipmp_getifinfo()
416 retval = ipmp_readifinfo_lists(statep, *ifinfopp, &end); in ipmp_getifinfo()
446 struct timeval end; in ipmp_getaddrinfo() local
1091 struct timeval end; in ipmp_snap_take() local
1099 retval = ipmp_sendquery(statep, IPMP_SNAP, NULL, NULL, &end); in ipmp_snap_take()
1147 retval = ipmp_readifinfo_lists(statep, infop, &end); in ipmp_snap_take()
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
H A Dtst.cleanpath.d53 end = i;
58 /i < end/
65 /i == end/
/illumos-gate/usr/src/uts/intel/io/viona/
H A Dviona_rx.c149 boolean_t *end) in viona_copy_mblk() argument
201 *end = (mp == NULL); in viona_copy_mblk()
215 boolean_t end = B_FALSE; in viona_recv_plain() local
247 copied += viona_copy_mblk(mp, copied, buf, len, &end); in viona_recv_plain()
251 for (int i = 1; i < n && !end; i++) { in viona_recv_plain()
255 copied += viona_copy_mblk(mp, copied, buf, len, &end); in viona_recv_plain()
315 boolean_t end = B_FALSE; in viona_recv_merged() local
355 copy_len = viona_copy_mblk(mp, copied, buf, len, &end); in viona_recv_merged()
362 while (i < n && !end) { in viona_recv_merged()
380 if (!end) { in viona_recv_merged()
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/checksum/sha2/
H A Dsha2_test.c222 struct timeval start, end; \ in main()
229 (void) gettimeofday(&end, NULL); \ in main()
230 delta = (end.tv_sec * 1000000llu + end.tv_usec) - \ in main()
/illumos-gate/usr/src/test/zfs-tests/tests/functional/checksum/skein/
H A Dskein_test.c298 struct timeval start, end; \ in main()
307 (void) gettimeofday(&end, NULL); \ in main()
308 delta = (end.tv_sec * 1000000llu + end.tv_usec) - \ in main()
/illumos-gate/usr/src/lib/libmail/inc/
H A Ds_string.h42 char *end; /* end of allocated space+1 */ member
57 #define s_putc(s, c) (((s)->ptr < (s)->end) ? \
62 #define s_space(s) ((s)->end - (s)->base)
63 #define s_terminate(s) (((s)->ptr < (s)->end) ? \
/illumos-gate/usr/src/lib/sun_fc/common/
H A DHandle.cc80 mapend = openHandles.end(); in Handle()
130 mapend = openHandles.end();
179 for (CI port = portHandles.begin(); port != portHandles.end(); in ~Handle()
209 if (openHandles.find(id) == openHandles.end()) { in findHandle()
269 for (CI port = portHandles.begin(); port != portHandles.end(); in refresh()
348 if (portHandles.find(wwn) == portHandles.end()) { in getHandlePort()
/illumos-gate/usr/src/lib/fm/topo/maps/SMCI,SSG-2028R-ACR24L/
H A DSSG-2028R-ACR24L-usb.usbtopo41 end-port
54 end-port
69 end-port
84 end-port
98 end-port
/illumos-gate/usr/src/cmd/srchtxt/
H A Dsrchtxt.c90 char *end; in main() local
152 end = msgfile + strlen(msgfile) + 1; in main()
153 if (*msgfile == ',' || *(end - 2) == ',') in main()
167 if (end != msgfile) in main()
175 if (end == msgfile) in main()
/illumos-gate/usr/src/cmd/fs.d/udfs/fsdb/
H A Dfsdb.c396 end = i + in print_desc()
400 end = i + in print_desc()
404 end = i + in print_desc()
422 end = i + in print_desc()
1187 goto end; in fill_pattern()
1194 goto end; in fill_pattern()
1207 goto end; in fill_pattern()
1209 end: in fill_pattern()
1271 goto end; in dump_disk()
1278 goto end; in dump_disk()
[all …]
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c50 wchar_t end; member
169 add_ctype_range(wchar_t end) in add_ctype_range() argument
174 if (end < last_ctype) { in add_ctype_range()
176 last_ctype, end); in add_ctype_range()
179 for (cur = last_ctype + 1; cur <= end; cur++) { in add_ctype_range()
186 last_ctype = end; in add_ctype_range()
225 add_width_range(int start, int end, int width) in add_width_range() argument
227 for (; start <= end; start++) { in add_width_range()
/illumos-gate/usr/src/boot/forth/
H A Dpnp.4th58 \ end of pnp support
148 : premature-end? ( addr -- addr flag )
164 skip-space premature-end?
166 \ Search for end of filename
167 skip-to-space premature-end?
170 skip-space premature-end?
172 skip-to-space premature-end?
176 skip-space premature-end?
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmvcur.c61 #define zero_seq(seq) ((seq)->end = (seq)->vec, (seq)->cost = 0)
65 int *end; /* end of vector */ member
82 while (vptr != seq2->end)
83 *(seq1->end++) = *(vptr++);
100 *(seq->end++) = op;
101 *(seq->end++) = p1;
102 *(seq->end++) = p2;
341 for (ptr = seq->vec; ptr < seq->end; ) {
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmvcur.c65 #define zero_seq(seq) ((seq)->end = (seq)->vec, (seq)->cost = 0)
69 int *end; /* end of vector */ member
85 while (vptr != seq2->end) in add_seq()
86 *(seq1->end++) = *(vptr++); in add_seq()
101 *(seq->end++) = op; in add_op()
102 *(seq->end++) = p1; in add_op()
103 *(seq->end++) = p2; in add_op()
337 for (ptr = seq->vec; ptr < seq->end; ) { in out_seq()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Dmmap5 tst lib_mmap note{ standard mmap interface that works }end execute{
119 }end
121 tst lib_mmap64 -D_LARGEFILE64_SOURCE note{ mmap64 interface and implementation work }end execute{
182 }end
184 tst mmap_anon note{ use mmap MAP_ANON to get raw memory }end execute{
201 }end
203 tst mmap_devzero note{ use mmap on /dev/zero to get raw memory }end execute{
220 }end
222 tst note{ mmap is worth using }end output{
324 }end
[all …]
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasLoadLibrary.c50 hrtime_t end = 0; in Sun_sasLoadLibrary() local
73 end = gethrtime(); in Sun_sasLoadLibrary()
74 duration = end - start; in Sun_sasLoadLibrary()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/string/
H A Dfmtre.c50 int end; in fmtre() local
54 end = 1; in fmtre()
129 end = 0; in fmtre()
222 if (end) in fmtre()
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dcopy.c39 int addr, end; in sqliteCopy() local
66 end = sqliteVdbeMakeLabel(v); in sqliteCopy()
67 addr = sqliteVdbeAddOp(v, OP_FileRead, pTab->nCol, end); in sqliteCopy()
96 sqliteVdbeResolveLabel(v, end); in sqliteCopy()

12345678910>>...50