| /onnv-gate/usr/src/lib/libgen/common/ |
| H A D | bgets.c | 52 static char *stop = NULL; variable 84 char *stop = _get_stop(&key); in bgets() local 86 if (!stop) in bgets() 87 stop = (char *)calloc(CHARS, sizeof (char)); in bgets() 91 (void) memset(stop, 0, CHARS); in bgets() 94 stop[(unsigned char)*cp] = 1; in bgets() 110 if (stop[c]) { in bgets()
|
| /onnv-gate/usr/src/cmd/mail/ |
| H A D | gethead.c | 74 int rc, size, start, stop, ix; in gethead() local 92 stop = current - 6; in gethead() 93 if (stop < -1) stop = -1; in gethead() 98 stop = -1; in gethead() 101 stop = current + 6; in gethead() 102 if (stop > nlet) stop = nlet; in gethead() 107 stop = nlet; in gethead() 110 for (ln = start; ln != stop; ln = flgr ? ln + 1 : ln - 1) { in gethead()
|
| /onnv-gate/usr/src/cmd/lp/filter/postscript/common/ |
| H A D | misc.c | 105 int start, stop; /* end points */ local 117 start = stop = str_convert(&str, 0); 120 stop = str_convert(&str, 9999); 122 if ( start > stop ) 123 error(FATAL, "illegal range %d-%d", start, stop); 126 olist[nolist++] = stop;
|
| /onnv-gate/usr/src/lib/libldap5/sources/ldap/util/ |
| H A D | line64.c | 206 char *p, *stop; in ldif_base64_decode() local 210 stop = strchr( src, '\0' ); in ldif_base64_decode() 212 for ( p = src, len = 0; p < stop; p += 4, len += 3 ) { in ldif_base64_decode() 327 unsigned char *p, *byte, *stop; in ldif_put_type_and_value_with_options() local 352 stop = (unsigned char *)val; in ldif_put_type_and_value_with_options() 355 stop = (unsigned char *) (val + vlen); in ldif_put_type_and_value_with_options() 369 for ( byte = (unsigned char *) val; byte < stop; in ldif_put_type_and_value_with_options() 433 unsigned char *byte, *stop; in ldif_base64_encode_internal() local 441 stop = src + srclen; in ldif_base64_encode_internal() 444 for ( byte = src; byte < stop - 2; byte += 3 ) { in ldif_base64_encode_internal() [all …]
|
| /onnv-gate/usr/src/uts/sun4v/sys/ |
| H A D | vio_common.h | 52 #define VIO_DRING_ACQUIRE(otd, mtype, handle, start, stop) \ argument 55 ldc_mem_dring_acquire((handle), (start), (stop))) 61 #define VIO_DRING_RELEASE(mtype, handle, start, stop) \ argument 64 ldc_mem_dring_release((handle), (start), (stop)))
|
| /onnv-gate/usr/src/lib/libldap4/util/ |
| H A D | line64.c | 62 char *p, *s, *d, *byte, *stop; in str_parse_line() local 120 stop = strchr( s, '\0' ); in str_parse_line() 122 for ( p = s, *vlen = 0; p < stop; p += 4, *vlen += 3 ) { in str_parse_line() 276 unsigned char *byte, *p, *stop; in put_type_and_value() local 294 stop = (unsigned char *) (val + vlen); in put_type_and_value() 298 for ( byte = (unsigned char *) val; byte < stop; in put_type_and_value() 318 for ( byte = (unsigned char *) val; byte < stop - 2; in put_type_and_value() 337 if ( byte < stop ) { in put_type_and_value() 338 for ( i = 0; byte + i < stop; i++ ) { in put_type_and_value()
|
| /onnv-gate/usr/src/lib/libmail/common/ |
| H A D | setup_exec.c | 45 int stop; in setup_exec() local 55 stop = FALSE; in setup_exec() 56 while (*q && (stop == FALSE)) { in setup_exec() 72 stop = TRUE; in setup_exec()
|
| /onnv-gate/usr/src/lib/libparted/common/libparted/fs/hfs/ |
| H A D | reloc.c | 53 unsigned int start, stop; in hfs_effect_move_extent() local 58 next_to_fblock = start = stop = 0; in hfs_effect_move_extent() 70 start = stop = *ptr_fblock < *ptr_to_fblock+size ? in hfs_effect_move_extent() 72 while (start && stop-start != size) { in hfs_effect_move_extent() 75 stop = start; in hfs_effect_move_extent() 77 ok = (stop-start == size); in hfs_effect_move_extent() 83 start = stop = *ptr_to_fblock+1; in hfs_effect_move_extent() 84 while (stop < PED_BE16_TO_CPU(priv_data->mdb->total_blocks) in hfs_effect_move_extent() 85 && stop-start != size) { in hfs_effect_move_extent() 86 if (TST_BLOC_OCCUPATION(priv_data->alloc_map,stop)) in hfs_effect_move_extent() [all …]
|
| H A D | reloc_plus.c | 57 unsigned int start, stop; in hfsplus_effect_move_extent() local 62 next_to_fblock = start = stop = 0; in hfsplus_effect_move_extent() 74 start = stop = *ptr_fblock < *ptr_to_fblock+size ? in hfsplus_effect_move_extent() 76 while (start && stop-start != size) { in hfsplus_effect_move_extent() 79 stop = start; in hfsplus_effect_move_extent() 81 ok = (stop-start == size); in hfsplus_effect_move_extent() 87 start = stop = *ptr_to_fblock+1; in hfsplus_effect_move_extent() 88 while (stop < PED_BE32_TO_CPU(priv_data->vh->total_blocks) in hfsplus_effect_move_extent() 89 && stop-start != size) { in hfsplus_effect_move_extent() 90 if (TST_BLOC_OCCUPATION(priv_data->alloc_map,stop)) in hfsplus_effect_move_extent() [all …]
|
| /onnv-gate/usr/src/cmd/oamuser/user/ |
| H A D | uid.c | 48 static uid_t getrangeboundid(uid_t start, uid_t stop); 105 getrangeboundid(uid_t start, uid_t stop) in getrangeboundid() argument 108 uid_t high = (stop < MAXUID) ? stop : MAXUID; in getrangeboundid()
|
| /onnv-gate/usr/src/lib/libparted/common/lib/ |
| H A D | regex.c | 36 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \ argument 37 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop) 45 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \ argument 46 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
|
| /onnv-gate/usr/src/uts/common/os/ |
| H A D | bitmap.c | 172 bt_getlowbit(ulong_t *map, size_t start, size_t stop) in bt_getlowbit() argument 176 int limit = stop >> BT_ULSHIFT; in bt_getlowbit() 178 index_t partial_stop = stop & BT_ULMASK; in bt_getlowbit() 180 if (start > stop) { in bt_getlowbit()
|
| /onnv-gate/usr/src/cmd/ptools/pstop/ |
| H A D | pstop.c | 38 static int stop(char *); 63 rc += stop(*++argv); in main() 69 stop(char *arg) in stop() function
|
| /onnv-gate/usr/src/grub/grub-0.97/grub/ |
| H A D | asmstub.c | 256 stop (void) in stop() function 270 stop (); in grub_reboot() 276 stop (); in grub_halt() 284 stop (); in chain_stage1() 291 stop (); in chain_stage2() 299 stop (); in linux_boot() 307 stop (); in big_linux_boot() 315 stop (); in multi_boot() 699 stop (); in console_getkey() 1032 stop (); in serial_hw_fetch() [all …]
|
| /onnv-gate/usr/src/uts/sun4v/io/ |
| H A D | vnet_common.c | 187 uint8_t mtype, ldc_dring_handle_t handle, uint64_t start, uint64_t stop) in vnet_dring_entry_copy() argument 192 if ((rv = VIO_DRING_ACQUIRE(&otd, mtype, handle, start, stop)) != 0) in vnet_dring_entry_copy() 204 ldc_dring_handle_t handle, uint64_t start, uint64_t stop, uint8_t dstate) in vnet_dring_entry_set_dstate() argument 215 rv = VIO_DRING_RELEASE(mtype, handle, start, stop); in vnet_dring_entry_set_dstate()
|
| /onnv-gate/usr/src/grub/grub-0.97/stage2/ |
| H A D | stage1_5.c | 51 stop (); in cmain() 68 stop (); in cmain()
|
| /onnv-gate/usr/src/cmd/fm/eversholt/common/ |
| H A D | stats.c | 51 hrtime_t stop; member 206 sp->u.elapse.stop = gethrtime(); in stats_elapse_stop() 247 if (sp->u.elapse.start && sp->u.elapse.stop) { in stats_publish() 249 sp->u.elapse.stop - sp->u.elapse.start; in stats_publish()
|
| /onnv-gate/usr/src/lib/libc/amd64/unwind/ |
| H A D | unwind.c | 366 _Unwind_Stop_Fn stop, void *stop_parameter, in _Unwind_ForcedUnwind_Body() argument 382 res = (*stop)(1, phase, in _Unwind_ForcedUnwind_Body() 409 exception_object->private_1 = (uint64_t)stop; in _Unwind_ForcedUnwind_Body() 418 res = (*stop)(1, phase, in _Unwind_ForcedUnwind_Body() 439 _Unwind_Stop_Fn stop, void *stop_parameter) in _Unwind_ForcedUnwind() argument 446 return (_Unwind_ForcedUnwind_Body(exception_object, stop, in _Unwind_ForcedUnwind()
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| H A D | DB.pm | 106 my ($stop, $action); 107 if (($stop,$action) = split(/\0/,$DB::dbline{$DB::lineno})) { 108 if ($stop eq '1') { 112 $stop = 0 unless $stop; # avoid un_init warning 113 $evalarg = "\$DB::signal |= do { $stop; }"; &eval; 538 sub stop {} subroutine
|
| /onnv-gate/usr/src/cmd/sendmail/db/btree/ |
| H A D | bt_search.c | 72 __bam_search(dbc, key, flags, stop, recnop, exactp) in __bam_search() argument 76 int stop, *exactp; 131 ((LF_ISSET(S_PARENT) && (u_int8_t)(stop + 1) >= h->level) || 212 if (LF_ISSET(S_PARENT) && stop == h->level) { 230 (u_int8_t)(stop + 1) >= (u_int8_t)(h->level - 1)) ||
|
| H A D | bt_rsearch.c | 65 __bam_rsearch(dbc, recnop, flags, stop, exactp) in __bam_rsearch() argument 69 int stop, *exactp; 121 ((LF_ISSET(S_PARENT) && (u_int8_t)(stop + 1) >= h->level) || 235 if (LF_ISSET(S_PARENT) && stop == h->level) { 253 (u_int8_t)(stop + 1) >= (u_int8_t)(h->level - 1)) ||
|
| H A D | bt_delete.c | 506 goto stop; 508 goto stop; 512 goto stop; 521 goto stop; 523 goto stop; 576 stop: done = 1;
|
| /onnv-gate/usr/src/cmd/krb5/kadmin/gui/ |
| H A D | KdcGuiMain.java | 90 public void stop() { in stop() method in KdcGuiMain 91 helper.stop(); in stop()
|
| /onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/t/ |
| H A D | randtest.c | 123 static void stop(int sig) in stop() function 206 (void) signal(SIGINT, stop); in main() 207 (void) signal(SIGTERM, stop); in main() 208 (void) signal(SIGHUP, stop); in main()
|
| /onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/ |
| H A D | ftpcount.c | 103 int wday, start, stop, ltime, validday, loop, match; in parsetime() local 132 if (sscanf(whattime, "%d-%d", &start, &stop) == 2) { in parsetime() 134 if ((start < stop) && ((ltime >= start) && ltime < stop)) in parsetime() 136 if ((start > stop) && ((ltime >= start) || ltime < stop)) in parsetime()
|