Searched refs:end (Results 301 - 325 of 929) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DuDNS.h108 extern void uDNS_ReceiveMsg(mDNS *const m, DNSMessage *const msg, const mDNSu8 *const end,
137 extern uDNS_LLQType uDNS_recvLLQResponse(mDNS *const m, const DNSMessage *const msg, const mDNSu8 *const end, const mDNSAddr *const srcaddr, const mDNSIPPort srcport, DNSQuestion **matchQuestion);
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm_upgrade.c644 if (line == entry->end) {
661 if (line == entry->end) {
670 if (line == entry->end) {
687 if (line == entry->end) {
746 if (line == entry->end) {
779 if (line == entry->end) {
848 if (line == entry->end) {
898 if (line == entry->end) {
/illumos-gate/usr/src/common/ficl/
H A Dutility.c193 * If the pointer reaches "end" first, stop there. Pass NULL to
197 ficlStringSkipSpace(char *cp, char *end) argument
201 while ((cp != end) && isspace((unsigned char)*cp))
/illumos-gate/usr/src/boot/sys/boot/i386/pxeldr/
H A Dpxeldr.S143 movl end+AOUT_ENTRY, %edi # %edi is the destination
144 movl $(end+AOUT_HEADER), %esi # %esi is
147 movl end+AOUT_TEXT, %ecx # %ecx = length of the text
164 movl end+AOUT_DATA, %ecx # size of the data segment
167 movl end+AOUT_BSS, %ecx # size of the bss
173 movl end+AOUT_ENTRY, %esi # %esi -> relocated loader
212 movl end+AOUT_ENTRY, %eax # load the entry point
213 stosl # add it to the end of the
263 # %ds:(%esi) -> end
301 end
[all...]
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_util.c73 char *end = name + match->rm_eo; local
74 char tmp = *end;
75 *end = '\0';
77 *end = tmp;
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dmd5.c228 char *end = strstr (salt, "$"); local
229 if (end && end - salt < 8)
230 saltlen = end - salt;
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DStatisticList.java143 * including samples which satisfy the start and end criteria.
146 * @param end end time or null if unspecified.
151 Date end) throws NoSuchElementException
154 return (getSnapshotForInterval(iterator(), start, end));
159 * including samples which satisfy the start and end criteria.
164 * @param end end time or null if unspecified.
169 Date start, Date end)
172 return (f.getSnapshotForInterval(it, start, end));
150 getSnapshotForInterval(Date start, Date end) argument
168 getSnapshotForInterval(Iterator it, Date start, Date end) argument
[all...]
H A DSystemMonitor.java238 Date end = new Date();
289 start, end));
296 lastSampleTime = end;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_rport.c257 char *end; local
263 composit = strtoul(buffer, &end, 0);
264 data += end - buffer;
267 datalen -= end - buffer + 1;
/illumos-gate/usr/src/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c64 hrtime_t now, last = 0, end; local
/illumos-gate/usr/src/cmd/cmd-crypto/kmfcfg/
H A Dutil.c89 goto end;
95 goto end;
121 goto end;
139 end:
/illumos-gate/usr/src/cmd/sgs/librtld/common/
H A Drelocate.c450 Addr off, bgn, end; local
478 (rel->r_offset > end)) {
481 * lint sees `bgn' and `end' as potentially referenced
494 end = bgn + shdr->sh_size;
497 (rel->r_offset <= end))
/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_alloc.c193 * prom_printf("end %x %x %x\n", error, *start_blkno, *size);
563 goto end;
597 goto end;
637 goto end;
671 goto end;
675 end:
741 uint32_t block, begin, end, blkno, count, map_end_blk, dummy; local
774 end = begin + ((beginblk + blkcount) / (udf_vfsp->udf_lbsize << 3));
777 for (block = begin; block <= end; block++) {
802 * if (begin != end) {
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/scsi_vhci/fops/
H A Dasym_sun.c121 char inqbuf[0xff], *ptr, *end; local
161 end = inqbuf + 4 + inqbuf[3];
162 while (((ptr[1] & 0x0f) != 0xf) && (ptr < end))
164 if (ptr >= end) {
/illumos-gate/usr/src/uts/common/sys/sata/adapters/nv_sata/
H A Dnv_sata.h407 hrtime_t start, end; \
408 start = end = gethrtime(); \
409 while ((end - start) < wait_ns) \
410 end = gethrtime(); \
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dfindlib.h57 char* end; member in struct:__anon2637
/illumos-gate/usr/src/uts/intel/io/intel_nhm/
H A Dnhm_init.c72 nhm_dimm_t **end; local
75 end = &nhm_dimms[MAX_MEMORY_CONTROLLERS *
77 for (dimmpp = nhm_dimms; dimmpp < end; dimmpp++) {
82 for (tpp = dimmpp + 1; tpp < end; tpp++) {
/illumos-gate/usr/src/test/zfs-tests/tests/functional/checksum/sha2/
H A Dsha2_test.c222 struct timeval start, end; \
229 (void) gettimeofday(&end, NULL); \
230 delta = (end.tv_sec * 1000000llu + end.tv_usec) - \
/illumos-gate/usr/src/cmd/mandoc/
H A Droff.h102 #define MDOC_ENDED (1 << 1) /* Gone past body end mark. */
116 enum mdoc_endbody end; /* BODY */ member in struct:roff_node
H A Dterm.h97 void (*end)(struct termp *); member in struct:termp
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_rwx_001_pos.ksh50 typeset -i trival_count=3 head=0 mid end
52 ((end = trival_count - 1))
55 nums="$head $mid $end"
/illumos-gate/usr/src/lib/nsswitch/ldap/common/
H A Dgetpwnam.c81 char gid_nobody[NOBODY_STR_LEN], *end; local
112 if (strtoul(uidn_v[0], &end, 10) > MAXUID)
114 if (strtoul(gidn_v[0], &end, 10) > MAXUID)
/illumos-gate/usr/src/lib/libscf/common/
H A Dscf_type.c140 * we've reached the end of the string -- make sure it is short enough
242 char *end; local
245 len = strtol(p, &end, 10);
246 if (p == end || len < 0 || len > max_len)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dnlspath_checks.c298 goto end;
367 goto end;
421 goto end;
471 end:
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/tftp/
H A Dtftpsubs.c332 * terminating NUL is found for the current field before end.
335 next_field(const char *s, const char *end) argument
337 if (s < end) {
338 s = memchr(s, 0, end - s);

Completed in 94 milliseconds

<<11121314151617181920>>