Searched refs:start (Results 326 - 350 of 1002) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/cmd/ptools/pstack/
H A Dpstack.c533 uintptr_t start; local
552 start = sym.st_value;
575 start = pc;
583 (void) printf((start != pc) ? ") + %lx\n" : ")\n", (long)(pc - start));
616 uintptr_t start; local
623 start = sym.st_value;
625 start = tip->startfunc;
627 if (start != tip->startfunc) /* doesn't happen? */
628 (void) printf("+%lx", (long)(tip->startfunc - start));
[all...]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dlgrp.c37 print_range(int start, int end, int separator) argument
43 if (start == end) {
46 mdb_printf(format, start);
47 count = mdb_snprintf(&tmp, 1, format, start);
50 mdb_printf(format, start, end);
51 count = mdb_snprintf(&tmp, 1, format, start, end);
63 int start; local
72 start = i * BT_NBIPUL + j;
78 count += print_range(start, end, sep);
85 count += print_range(start, en
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/db/
H A Ddb_appinit.c303 /* If leading slash, start over. */ \
305 p = start; \
340 char *p, *start; local
480 __os_malloc(len + sizeof(DB_TRAIL) + 10, NULL, &start)) != 0) {
487 p = start;
503 if (data_entry != -1 && __os_exists(start, NULL) != 0) {
504 __os_freestr(start);
511 (ret = __db_tmp_open(dbenv, tmp_oflags, start, fdp)) != 0) {
512 __os_freestr(start);
517 __os_freestr(start);
[all...]
/illumos-gate/usr/src/uts/common/crypto/io/
H A Dswrand.c471 int i, j, k, start; local
501 start = 0;
506 if (start + HASHBUFSIZE <= RNDPOOLSIZE)
507 HashUpdate(&hashctx, &pool[start], HASHBUFSIZE);
509 HashUpdate(&hashctx, &pool[start],
510 RNDPOOLSIZE - start);
512 HASHBUFSIZE - RNDPOOLSIZE + start);
517 k = (start + HASHSIZE) & (RNDPOOLSIZE - 1);
524 start = (start
[all...]
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmetarpcopen.c218 * 15-20 seconds for it to start responding again.
251 struct timeval start; local
264 if (gettimeofday(&start, NULL) == -1) {
270 curtime = start;
271 while ((curtime.tv_sec - start.tv_sec) < tout) {
273 timeout.tv_sec = tout - (curtime.tv_sec - start.tv_sec);
/illumos-gate/usr/src/lib/pam_modules/authtok_check/
H A Drules.c453 int start; local
456 start = Char2Int(*(++ptr));
458 if (start < 0 || length < 0) {
463 area2[start + i]; i++) {
464 area[i] = area2[start + i];
/illumos-gate/usr/src/cmd/ttymon/
H A Dsttydefs.c61 * next label is set to 4800 so we can start searching ttydefs.
205 * - i.e. arg cannot start with '-' and
412 * start - starting line number
418 copy_file(fp, tfp, start, finish)
421 register int start;
428 * always start from the beginning because line numbers are absolute
437 if (start != 1) {
438 for (i = 1; i < start; i++)
448 for (i = start; i <= finish; i++) {
/illumos-gate/usr/src/uts/common/rpc/
H A Dclnt_gen.c232 int start; local
300 start = (*last_used == MIN_PRIV ? MAX_PRIV : *last_used - 1);
301 loop_twice = (start < MAX_PRIV ? TRUE : FALSE);
304 for (i = start;
342 start = MAX_PRIV;
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c49 wchar_t start; member in struct:width_node
225 add_width_range(int start, int end, int width) argument
227 for (; start <= end; start++) {
228 add_width(start, width);
/illumos-gate/usr/src/uts/i86pc/io/
H A Dimmu_dvma.c159 * performed. Since 0 is a special case, just start at the 2nd
933 uint64_t start; local
960 start = IMMU_PAGESIZE;
962 start = mp->ml_address;
966 dcookies[0].dck_paddr = start;
969 (void) dvma_map(domain, start, npages, dcookies,
973 " - 0x%" PRIx64 "]", start, start + mp->ml_size);
981 start = mp->ml_address;
984 dcookies[0].dck_paddr = start;
1025 uint64_t start; local
1949 uint64_t dvma, start; local
2833 uint64_t start; local
[all...]
/illumos-gate/usr/src/lib/cfgadm_plugins/usb/common/
H A Dcfga_configfile.c120 register char *start = (char *)0; local
124 start = tchar;
136 if (*start == '\\') {
137 switch (*(start + 1)) {
142 start += 2;
148 start += 2;
154 start += 2;
158 *cp++ = *start++;
162 *cp++ = *start++;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dm_cc.c130 wchar_t *start; local
135 for (start = wcs; *wis != '\0' && 0 < n; ++wis, ++wcs, --n) {
142 return (int) (wcs - start);
290 const char *start; local
293 for (start = mbs, have_one = i = 0; *mbs != '\0'; mbs += nbytes, ++i) {
329 return (int) (mbs - start);
344 const wchar_t *start; local
346 for (start = wcs, have_one = i = 0; *wcs != '\0'; ++wcs, ++i) {
370 return (int) (wcs - start);
469 * Return the start o
[all...]
/illumos-gate/usr/src/cmd/dlmgmtd/
H A Ddlmgmt_util.c669 uint_t start, ppa; local
689 start = lpp->lp_nextppa++;
691 while (lpp->lp_nextppa != start) {
723 datalink_id_t start; local
728 start = dlmgmt_nextlinkid;
748 } while (dlmgmt_nextlinkid != start);
770 uint_t start; local
772 start = dlmgmt_nextconfid++;
774 while (dlmgmt_nextconfid != start) {
/illumos-gate/usr/src/cmd/sdiff/
H A Dsdiff.c447 putline(FILE *file, char *start, int num) argument
453 cp = start;
481 cmd(char *start) argument
487 if (*start == '>' || *start == '<' || *start == '-' || *start == '.')
490 cp = (unsigned char *)start;
491 cps = start;
/illumos-gate/usr/src/uts/sun4/os/
H A Dmachdep.c531 uint64_t start; local
551 start = t->t_intr_start;
552 interval = CLOCK_TICK_COUNTER() - start;
553 } while (atomic_cas_64(&t->t_intr_start, start, 0) != start);
765 hrtime_t now, start; local
781 start = cpu->cpu_mstate_start;
789 if (gen != 0 && gen == cpu->cpu_mstate_gen && now > start)
790 times[state] += now - start;
/illumos-gate/usr/src/uts/i86pc/os/
H A Dstartup.c362 caddr_t s_text; /* start of kernel text segment */
364 caddr_t s_data; /* start of kernel data segment */
366 caddr_t modtext; /* start of loadable module text reserved */
368 caddr_t moddata; /* start of loadable module data reserved */
499 * valloc_base: start of the kernel's memory management/tracking data
503 * core_base: start of the kernel's "core" heap area on 64-bit systems.
509 * ekernelheap: end of kernelheap and start of segmap.
511 * kernelheap: start of kernel heap. On 32-bit systems, this starts right
515 * segmap_start: start of segmap. The length of segmap can be modified
683 * Set up and enable SMAP now before we start othe
2494 uint64_t start, size; local
3145 memlist_add( uint64_t start, uint64_t len, struct memlist *new, struct memlist **memlistp) argument
3302 size_t start; local
3329 size_t start; local
3357 size_t start; local
[all...]
/illumos-gate/usr/src/cmd/boot/installboot/i386/
H A Dinstallboot.c65 * installboot will record the start LBA and size of stage2 code in MBR code.
70 * which is 512k bytes from partition start and size is 3.5MB.
73 * Solaris2 MBR partition start, within boot slice, boot slice size is
444 device->target.start + device->target.offset;
447 device->stage.start + device->stage.offset;
472 *ptr = device->target.start;
507 abs = device->target.start + device->target.offset;
512 abs = device->stage.start + device->stage.offset;
552 if (device->stage.start != 0 &&
566 device->stage.id, device->stage.start);
[all...]
/illumos-gate/usr/src/lib/libbsm/
H A Dauditxml.pm406 my $start = shift;
435 'start' => $start,
450 return $pkg->{'start'};
573 if ($callbackSource eq 'start') {
774 my $start = $obj->getAttr('start');
779 $start = 0 unless $start;
785 $msg_list{$id} = new messageList($obj, $id, $header, $start,
[all...]
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dstrncpy.s113 ! remaining src bytes and then start padding with null bytes
121 andn %i1, %g1, %i1 ! if byte == 0, start padding with null bytes
127 andn %i1, %g1, %i1 ! if byte == 0, start padding with null bytes
133 andn %i1, %g1, %i1 ! if byte == 0, start padding with null bytes
209 andn %i1, %g1, %i1 ! if byte == 0, start padding with null
217 andn %i1, %g1, %i1 ! if byte == 0, start padding with null
225 andn %i1, %g1, %i1 ! if byte == 0, start padding with null
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_arange.c513 true if it is not NULL. It also stores the start
514 address of the range in *start, the length of the
523 Dwarf_Addr * start,
532 if (start != NULL)
533 *start = arange->ar_address;
559 Dwarf_Addr * start,
575 if (start != NULL)
576 *start = arange->ar_address;
522 dwarf_get_arange_info(Dwarf_Arange arange, Dwarf_Addr * start, Dwarf_Unsigned * length, Dwarf_Off * cu_die_offset, Dwarf_Error * error) argument
556 dwarf_get_arange_info_b(Dwarf_Arange arange, Dwarf_Unsigned* segment, Dwarf_Unsigned* segment_entry_size, Dwarf_Addr * start, Dwarf_Unsigned* length, Dwarf_Off * cu_die_offset, Dwarf_Error * error) argument
/illumos-gate/usr/src/uts/sun4u/sunfire/io/
H A Dsysctrl_quiesce.c262 sysctrl_resume_devices(dev_info_t *start, sysc_cfga_pkt_t *pkt) argument
267 ASSERT(start == NULL || ddi_get_parent(start) == NULL ||
268 DEVI_BUSY_OWNED(ddi_get_parent(start)));
271 while (last != start) {
272 dip = start;
/illumos-gate/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DDNSSD.java671 // functions to stop their own operation and start others. For example, a resolveListener callback
672 // may well stop the resolve and then start a QueryRecord call to monitor the TXT record.
675 // some other thread could stop the operation and start a new one using same file descriptor, and
706 new Thread(this).start();
722 new Thread(this).start();
774 new Thread(this).start();
808 new Thread(this).start();
838 new Thread(this).start();
853 new Thread(this).start();
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_mcdi.c245 size_t start; local
260 start = sfxge_mcdi_do_log(buffer, header, header_size,
262 start = sfxge_mcdi_do_log(buffer, data, data_size, pfxsize, start);
263 if (start != pfxsize) {
264 buffer[start] = '\0';
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dspace_map.c284 uint64_t start; local
287 start = (rs->rs_start - sm->sm_start) >> sm->sm_shift;
306 *entry++ = SM_OFFSET_ENCODE(start) |
310 start += run_len;
354 uint64_t start, uint64_t size, uint8_t shift, kmutex_t *lp)
365 sm->sm_start = start;
353 space_map_open(space_map_t **smp, objset_t *os, uint64_t object, uint64_t start, uint64_t size, uint8_t shift, kmutex_t *lp) argument
/illumos-gate/usr/src/cmd/ptools/plgrp/
H A Dplgrp.c207 "\t\t<start lgroup ID>-<end lgroup ID>\n"
491 lgrp_id_t start; local
498 start = end = lgrps[0];
516 if (end == start) { /* same value */
517 (void) printf("%d,", (int)start);
518 } else if (end > start + 1) { /* range */
519 (void) printf("%d-%d,", (int)start, (int)end);
521 (void) printf("%d,%d,", (int)start, (int)end);
528 start = end = lgrpid;
535 if (end == start) {
[all...]

Completed in 98 milliseconds

<<11121314151617181920>>