| /onnv/onnv-gate/usr/src/cmd/bnu/ |
| statlog.c | 43 statlog( direction, bytes, millisecs, breakmsg) 45 unsigned long bytes; 52 /* bytes1000 = bytes * 1000; */ 59 if (bytes < 1<<22) 60 bytes1000 = (bytes*1000/millisecs); 62 bytes1000 = ((bytes/millisecs)*1000); 64 (void) sprintf(text, "%s %lu / %lu.%.3lu secs, %lu bytes/sec %s", 65 direction, bytes, millisecs/1000, millisecs%1000, 92 putfilesize(bytes) 93 unsigned long bytes; [all...] |
| /onnv/onnv-gate/usr/src/lib/libdisasm/common/ |
| libdisasm.c | 43 dis_zalloc(size_t bytes) 45 return (mdb_zalloc(bytes, UM_SLEEP)); 49 dis_free(void *ptr, size_t bytes) 51 mdb_free(ptr, bytes); 55 dis_zalloc(size_t bytes) 57 return (calloc(1, bytes)); 62 dis_free(void *ptr, size_t bytes)
|
| /onnv/onnv-gate/usr/src/lib/libresolv2/common/bsd/ |
| readv.c | 27 int bytes = read(fd, vp->iov_base, vp->iov_len); local 29 if (bytes < 0) 31 count += bytes; 32 if (bytes != vp->iov_len)
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| bytes_heavy.pl | 1 package bytes; package 4 BEGIN { bytes::import() } 9 BEGIN { bytes::import() } 17 BEGIN { bytes::import() } 22 BEGIN { bytes::import() } 27 BEGIN { bytes::import() } 34 BEGIN { bytes::import() }
|
| bytes.pm | 1 package bytes; package 5 $bytes::hint_bits = 0x00000008; 8 $^H |= $bytes::hint_bits; 12 $^H &= ~$bytes::hint_bits; 32 bytes - Perl pragma to force byte semantics rather than character semantics 36 use bytes; 37 ... chr(...); # or bytes::chr 38 ... index(...); # or bytes::index 39 ... length(...); # or bytes::length 40 ... ord(...); # or bytes::or [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/MakeMaker/ |
| bytes.pm | 1 package ExtUtils::MakeMaker::bytes; 6 my $Have_Bytes = eval q{require bytes; 1;}; 12 unshift @_, 'bytes'; 14 goto &bytes::import; 22 ExtUtils::MakeMaker::bytes - Version agnostic bytes.pm 26 use just like bytes.pm 30 bytes.pm was introduced with 5.6. This means any code which has 'use 31 bytes' in it won't even compile on 5.5.X. Since bytes is a lexica [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/ |
| IPAddress.java | 44 private byte [] bytes = new byte[] { 0, 0, 0, 0 }; field in class:IPAddress 80 bytes = a.getAddress(); 95 bytes[b++] = (byte)shortVal; 115 bytes = a.getAddress(); 123 bytes = new byte[4]; 126 bytes[i] = (byte)((addr >> (8 * (3 - i))) & 0xff); 137 b.append((int)bytes[i] & 0xff); 150 i |= ((int)bytes[j] & 0xff) << (8 * (3 - j)); 169 * Provide the individual bytes of the address a la InetAddress 173 return bytes; [all...] |
| /onnv/onnv-gate/usr/src/cmd/svc/startd/ |
| proc.c | 45 ssize_t bytes; local 52 bytes = read(fd, &psinfo, sizeof (psinfo)); 53 if (bytes == sizeof (psinfo))
|
| /onnv/onnv-gate/usr/src/psm/stand/boot/sparc/common/ |
| sun4x_standalloc.c | 131 vpage_from_freelist(size_t bytes) 137 for (i = 0; i < N_FREELIST && free_size[i] < bytes; i++) 141 dprintf("boot: failed to allocate %lu bytes from scratch " 142 "memory\n", bytes); 147 free_addr[i] += bytes; 148 free_size[i] -= bytes; 149 dprintf("reuse freed temp scratch: bytes = %lu at %p\n", bytes, 165 size_t bytes; local 172 bytes = numpages * pagesize [all...] |
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| memlist_impl.h | 45 extern void memlist_free_block(caddr_t base, size_t bytes); 54 extern int memlist_add_span(uint64_t address, uint64_t bytes, 56 extern int memlist_delete_span(uint64_t address, uint64_t bytes,
|
| /onnv/onnv-gate/usr/src/cmd/sendmail/db/include/ |
| os.h | 25 size_t bytes; /* Bytes read/written. */ member in struct:__io
|
| /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/ |
| mpaux.c | 36 u_int bytes = host_key_bytes + session_key_bytes; local 37 u_char *buf = xmalloc(bytes); 43 MD5_Update(&md, buf, bytes); 46 memset(buf, 0, bytes);
|
| /onnv/onnv-gate/usr/src/cmd/filebench/workloads/ |
| filemicro_createrand.f | 30 # Stops after 1GB ($bytes) has been appended/written. 33 set $bytes=1g 47 flowop finishonbytes name=finish,value=$bytes 53 usage " set \$bytes=<value> defaults to $bytes"
|
| filemicro_rread.f | 28 # Stops after 128MB ($bytes) has been read. 31 set $bytes=128m 45 flowop finishonbytes name=finish,value=$bytes 51 usage " set \$bytes=<value> defaults to $bytes"
|
| filemicro_rwrite.f | 28 # Stops when 128MB ($bytes) has been written. 31 set $bytes=128m 46 flowop finishonbytes name=finish,value=$bytes 52 usage " set \$bytes=<value> defaults to $bytes"
|
| /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/ |
| make_random_key.c | 45 unsigned char *bytes; local 64 if ((bytes = (unsigned char *) malloc(keybytes)) == NULL) 67 free(bytes); 71 random_data.data = (char *) bytes; 93 memset(bytes, 0, keybytes); 94 free(bytes);
|
| /onnv/onnv-gate/usr/src/lib/libcryptoutil/common/ |
| tohexstr.c | 34 * IN bytes 41 tohexstr(uchar_t *bytes, size_t blen, char *hexstr, size_t hexlen) 49 hexstr[2 * i] = hexlist[(bytes[i] >> 4) & 0xf]; 50 hexstr[2 * i + 1] = hexlist[bytes[i] & 0xf]; 67 hexstr_to_bytes(char *hexstr, size_t hexlen, uchar_t **bytes, size_t *blen) 73 *bytes = NULL; 120 *bytes = b;
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/ |
| getdents.c | 48 int getdents(fd, buf, bytes) 51 int bytes; 53 return(bc_getdents(fd, buf, bytes)); 57 int bc_getdents(fd, buf, bytes) 60 int bytes; 74 nbytes = bytes; /* buffer can only be as large as user expects */ 91 (int)(buf + bytes)) &&
|
| /onnv/onnv-gate/usr/src/lib/libc/sparcv9/crt/ |
| __align_cpy_8.s | 31 * Copy 8-byte aligned source to 8-byte aligned target in multiples of 8 bytes. 36 * o2 number of bytes to copy (must be a multiple of 8) 48 * Bytes to be copied are non-overlapping or _exactly_ overlapping. 49 * The number of bytes to be copied is a multiple of 8. 51 * less than a few hundred bytes. Legal values are 0 to MAX_SIZE_T. 54 * Reasonable speed for a generic v9. Going for 32 bytes at a time 55 * rather than 16 bytes at a time did not result in a time saving for 56 * the number of bytes expected to be copied. No timing runs using other 59 * Even when multiples of 16 bytes were used, the savings by going for 32 bytes [all...] |
| /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
| Opaque.java | 55 byte[] bytes; field in class:Opaque 64 bytes = nb; 157 byte[] cbyte = ((Opaque)o).bytes; 161 if (cbyte.length != bytes.length) { 171 if (cbyte[i] != bytes[i]) { 182 int i, n = bytes.length; 194 str = Integer.toHexString(((int)bytes[i] & 0xFF));
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/ |
| bn_rand.c | 121 int ret=0,bit,bytes,mask; local 130 bytes=(bits+7)/8; 134 buf=(unsigned char *)OPENSSL_malloc(bytes); 147 if (RAND_pseudo_bytes(buf, bytes) == -1) 152 if (RAND_bytes(buf, bytes) <= 0) 164 for (i = 0; i < bytes; i++) 198 buf[bytes-1]|=1; 199 if (!BN_bin2bn(buf,bytes,rnd)) goto err; 204 OPENSSL_cleanse(buf,bytes);
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/rand/ |
| rand_egd.c | 66 * RAND_query_egd_bytes(path, buf, bytes) 67 * will actually query "bytes" bytes of entropy form the egd-socket located 70 * The number of bytes is not limited by the maximum chunk size of EGD, 71 * which is 255 bytes. If more than 255 bytes are wanted, several chunks 72 * of entropy bytes are requested. The connection is left open until the 76 * num the number of bytes read from the EGD socket. This number is either 77 * the number of bytes requested or smaller, if the EGD pool is 82 * RAND_egd_bytes(path, bytes) will query "bytes" bytes and have the [all...] |
| /onnv/onnv-gate/usr/src/stand/lib/sa/ |
| stdio.c | 110 int bytes; local 116 for (bytes = 0; bytes < (n - 1); ++bytes) { 117 cnt = read(stream->_file, &s[bytes], 1); 119 if (bytes != 0) { 120 s[bytes] = '\0'; 128 if (bytes != 0) { 129 s[bytes] = '\0'; 135 if (s[bytes] == '\n') 251 ssize_t bytes, totbytes = 0; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/backup/lib/ |
| memutils.c | 39 xmalloc(bytes) 40 size_t bytes; 44 cp = malloc(bytes);
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| length.t | 29 use bytes; 42 use bytes; 63 use bytes; 84 use bytes; 105 use bytes; 131 use bytes;
|