/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/t/ |
H A D | HiRes.t | 71 # with (say) 10% slosh, "skip - system may have been busy?" if the test 77 sub skip { subroutine 93 skip 2..6; 112 skip 7..8; 123 skip 8; 141 skip 10; 150 skip 11; 160 skip 12..13; 181 skip 14 231 # from the alarm. If this happens, let's just skip [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/ |
H A D | libnet_t.pl | 25 sub skip { subroutine 32 print "ok $number # skip $reason\n";
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | magic.t | 30 sub skip { subroutine 71 skip('SIGINT not safe on this platform') for 1..4; 169 skip('$? + system are broken on MacPerl') for 1..2; 269 skip("%ENV manipulations fail or aren't safe on $^O") for 1..4; 273 skip("clearing \%ENV is not safe when running under valgrind"); 324 skip("\$0 check only on Linux and FreeBSD") for 0, 1; 348 skip('no caseless %ENV support') for 1..4; 352 skip ("miniperl can't rely on loading %Errno") for 1..2; 369 skip ("miniperl can't rely on loading %Errno");
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | Test.pm | 20 $TestLevel = 0; # how many extra stack frames to skip 28 @EXPORT = qw(&plan &ok &skip); 76 skip( 77 $^O eq 'MSWin' ? "Skip unless MSWin" : 0, # whether to skip 80 skip( 81 $^O eq 'MSWin' ? 0 : "Skip if MSWin", # whether to skip 102 and C<skip(...)>. By default, all three are exported by 127 This means all ok() and skip() calls. 441 =item C<skip(I<skip_if_true>, I<args...>)> 464 skip( 518 sub skip ($;$$$) { subroutine [all...] |
/osnet-11/usr/src/lib/libcmd/common/ |
H A D | head.c | 54 "[s:skip?Skip \askip\a characters or lines from each file before " 55 "copying.]#[skip]" 78 register off_t skip = 0; local 107 skip = opt_info.number; 140 if (skip > 0) 141 sfmove(fp, NiL, skip, delim);
|
H A D | wclib.c | 317 /* skip over word characters */ 340 int skip=0; local 412 if(skip && (c&7)) 414 if(!skip) 418 skip=1; 421 skip = (c&7); 422 adjust += skip; 436 if(skip==2 && (cp[-1]&0xc)==0 && (state=(cp[-1]&0x3))) 446 skip--; 462 if(skip) [all...] |
H A D | who.c | 151 #define skip(ut) (!*ut.ut_user||!*ut.ut_line||dead(ut)|!strcasecmp(ut.ut_user,"login")) macro 245 if(skip(ut))
|
/osnet-11/usr/src/grub/grub2/grub-core/commands/ |
H A D | hexdump.c | 31 {"skip", 's', 0, N_("Skip offset bytes from the beginning of file."), 0, 43 grub_disk_addr_t skip; local 50 skip = (state[0].set) ? grub_strtoull (state[0].arg, 0, 0) : 0; 54 hexdump (skip, (char *) (grub_addr_t) skip, length); 66 sector = (skip >> (GRUB_DISK_SECTOR_BITS + 2)) * 4; 67 ofs = skip & (GRUB_DISK_SECTOR_SIZE * 4 - 1); 79 hexdump (skip, buf, len); 82 skip += len; 97 file->offset = skip; [all...] |
/osnet-11/usr/src/lib/libsmbfs/common/ |
H A D | smbfs_signing.c | 79 uint8_t skip[2]; /* not used - just alignment */ member in struct:__anon2617::__anon2618 83 uint8_t skip[2]; /* not used - just alignment */ member in struct:__anon2617::__anon2619
|
/osnet-11/usr/src/lib/cfgadm_plugins/sbd/common/ |
H A D | ap_seq.c | 51 int skip; local 54 skip = a->opts.skip; 62 if (mask(c) & skip) 122 * skip the disconnect command since 126 a->opts.skip |= mask(CMD_DISCONNECT); 221 int skip; local 232 skip = a->opts.skip; 240 skip | [all...] |
/osnet-11/usr/src/lib/libast/common/disc/ |
H A D | sfdcprefix.c | 38 int skip; /* this line already prefixed */ member in struct:__anon1131 62 int skip; local 64 skip = 0; 73 skip = 1; 77 if (pfx->skip) 78 pfx->skip = 0; 85 pfx->skip = skip;
|
/osnet-11/usr/src/lib/libast/common/string/ |
H A D | tokscan.c | 177 char* skip = 0; local 195 skip = s; 337 if (skip) num = onum; 341 skip = s; 348 if ((*s++ != c) && !skip) 350 skip = s - 1; 358 if (nxt) *nxt = skip ? skip : s;
|
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/sun4vpi/common/ |
H A D | sun4vpi.c | 218 int skip; local 222 * make sure we are not supposed to skip the graph. 224 skip = pi_skip_node(mod, pi.mdp, components[idx]); 225 if (skip == 0) {
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/ |
H A D | test.pl | 57 # escape out '#' or it will interfere with '# skip' and such 275 # be compatible with Test::More::skip(). 276 sub skip { subroutine 280 print STDOUT "ok $test # skip: $why\n";
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/ |
H A D | More.pm | 26 skip todo todo_skip 81 skip $why, $how_many unless $have_some_feature; 120 facilities to skip tests, test future features and compare complicated 141 In some cases, you'll want to completely skip an entire testing script. 145 Your script will declare a skip with the reason why you skipped and 746 necessary to skip tests, or declare that they are supposed to fail 749 For more details on the mechanics of skip and todo tests see 761 skip $why, $how_many if $condition; 767 there are, $why and under what $condition to skip them. An example is 773 skip "HTM 798 sub skip { subroutine [all...] |
/osnet-11/usr/src/lib/libast/common/regex/ |
H A D | regrexec.c | 43 register size_t* skip; local 65 skip = e->re.bm.skip; 75 while ((index += skip[buf[index]]) < mid);
|
/osnet-11/usr/src/lib/libast/common/sfio/ |
H A D | sftable.c | 58 int v, n, skip, dollar, decimal, thousand; local 91 if(*form == '*' && type > 0) /* skip in scanning */ 92 { skip = 1; 97 { skip = 0; 310 if(skip)
|
/osnet-11/usr/src/lib/libresolv2/common/irs/ |
H A D | hesiod.c | 355 int i, j, n, skip; local 387 skip = dn_skipname(cp, eom); 388 if (skip < 0 || cp + skip + QFIXEDSZ > eom) { 392 cp += skip + QFIXEDSZ; 402 skip = dn_skipname(cp, eom); 403 if (skip < 0) { 407 cp += skip; 415 cp += INT16SZ + INT32SZ; /*%< skip the ttl, too */
|
/osnet-11/usr/src/lib/libldap5/sources/ldap/prldap/ |
H A D | ldappr-dns.c | 179 * address because of recursion. The caller is instructing libldap to skip 189 * skip will lead to unpredictable results. 197 prldap_x_install_dns_skipdb(LDAP *ld, const char *skip) argument 222 /* check for skip and count other backends */ 225 if (strcmp(name, skip) == 0) { 252 * Since skip name service not used for hosts, we do not need
|
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/ |
H A D | advfs.c | 129 unsigned int skip; local 131 skip = (1 + record_key->key_length + 1) & ~1; 133 (((uint8_t *) record_key) + skip)));
|
H A D | advfs_plus.c | 130 unsigned int skip; local 132 skip = ( 2 + PED_BE16_TO_CPU (record_key->key_length) 135 (((uint8_t *) record_key) + skip)));
|
H A D | reloc.c | 400 unsigned int skip; local 403 skip = (1 + catalog_key->key_length + 1) & ~1; 405 + skip );
|
H A D | reloc_plus.c | 520 unsigned int skip; local 526 skip = ( 2 + PED_BE16_TO_CPU (catalog_key->key_length) 529 (((uint8_t*)catalog_key) + skip); 753 unsigned int skip; local 757 skip = ( 2 + PED_BE16_TO_CPU (generic_key->key_length) 760 (((uint8_t*)generic_key) + skip);
|
/osnet-11/usr/src/lib/libdevalloc/common/ |
H A D | getdaent.c | 191 * gets individual fields separated by skip in ptr. 194 getdadmfield(char *ptr, char *skip) argument 206 pend = strpbrk(ptr, skip);
|
/osnet-11/usr/src/lib/libdhcpsvc/modules/util/ |
H A D | util.c | 200 * If separator is whitespace, then skip all consecutive 351 size_t skip; local 365 * compute how many bytes we need to skip over in the mmap()'d 368 skip = srcoff % PAGESIZE; 369 srcoff -= skip; 377 validsize = MIN(chunksize, nbytes - nwritten + skip); 378 if (pnwrite(dstfd, &buf[skip], validsize - skip, dstoff) 385 nwritten += validsize - skip; 386 dstoff += validsize - skip; [all...] |