Searched refs:bytes (Results 1 - 25 of 239) sorted by relevance

12345678910

/osnet-11/usr/src/lib/libdisasm/common/
H A Dlibdisasm.c43 dis_zalloc(size_t bytes) argument
45 return (mdb_zalloc(bytes, UM_SLEEP));
49 dis_free(void *ptr, size_t bytes) argument
51 mdb_free(ptr, bytes);
55 dis_zalloc(size_t bytes) argument
57 return (calloc(1, bytes));
62 dis_free(void *ptr, size_t bytes) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dbytes_heavy.pl1 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() }
H A Dbytes.pm1 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
[all...]
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Dreadbytes.d3 * readbytes.d - read bytes by process name. DTrace OneLiner.
10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
H A Dwritebytes.d3 * writebytes.d - write bytes by process name. DTrace OneLiner.
10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
H A Drwbbypid.d3 * rwbbypid.d - read/write bytes by PID.
6 * This script tracks the bytes read and written at the syscall level
8 * successful number of bytes read or written.
18 * BYTES total bytes
49 @bytes[pid, execname, "R"] = sum(arg0);
54 @bytes[pid, execname, "W"] = sum(arg0);
60 printa("%6d %-24s %4s %@16d\n", @bytes);
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Proc/
H A Dreadbytes.d3 * readbytes.d - read bytes by process name. DTrace OneLiner.
10 sysinfo:::readch { @bytes[execname] = sum(arg0); }
H A Dwritebytes.d3 * writebytes.d - write bytes by process name. DTrace OneLiner.
10 sysinfo:::writech { @bytes[execname] = sum(arg0); }
H A Drwbbypid.d3 * rwbbypid.d - read/write bytes by PID.
6 * This script tracks the bytes read and written at the syscall level
8 * successful number of bytes read or written.
18 * BYTES total bytes
49 @bytes[pid, execname, "R"] = sum(arg0);
54 @bytes[pid, execname, "W"] = sum(arg0);
60 printa("%6d %-24s %4s %@16d\n", @bytes);
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dreadv.c27 int bytes = read(fd, vp->iov_base, vp->iov_len); local
29 if (bytes < 0)
31 count += bytes;
32 if (bytes != vp->iov_len)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/MakeMaker/
H A Dbytes.pm1 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 i
[all...]
/osnet-11/usr/src/cmd/sendmail/db/include/
H A Dos.h25 size_t bytes; /* Bytes read/written. */ member in struct:__io
/osnet-11/usr/src/lib/libcryptoutil/common/
H A Dtohexstr.c34 * IN bytes
41 tohexstr(uchar_t *bytes, size_t blen, char *hexstr, size_t hexlen) argument
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) argument
73 *bytes = NULL;
120 *bytes = b;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/
H A Dmake_random_key.c45 unsigned char *bytes; local
66 if ((bytes = (unsigned char *) malloc(keybytes)) == NULL)
69 free(bytes);
73 random_data.data = (char *) bytes;
95 memset(bytes, 0, keybytes);
96 free(bytes);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dutf8.t29 # make sure setting bytes decodes properly
30 my $bytes = Encode::encode(utf8 => $data);
31 ok !Encode::is_utf8($bytes), "converted UTF-8 to bytes";
32 $q->param(data => $bytes);
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DOpaque.java55 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));
/osnet-11/usr/src/lib/libc/sparcv9/crt/
H A D__align_cpy_8.s31 * 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)
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
78 bz,pn %xcc, .wrdbl2 ! Only 8 bytes nee
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/Unicode/
H A DUTF7.pm33 my $bytes = '';
36 $bytes .= $1;
39 $bytes .= "+-";
43 $bytes .= "+$base64-";
50 return $bytes;
54 my ($obj, $bytes, $chk) = @_;
55 my $len = length($bytes);
57 while (pos($bytes) < $len) {
58 if ($bytes =~ /\G([^+]+)/ogc) {
60 }elsif($bytes
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dlength.t29 use bytes;
42 use bytes;
63 use bytes;
84 use bytes;
105 use bytes;
131 use bytes;
H A Dutf8decode.t10 use bytes;
12 printf "# under use bytes ord(v256) = 0x%02x\n", $ordwide;
32 # We use the \x notation instead of raw binary bytes for \x00-\x1f\x7f-\xff
61 3.1 Unexpected continuation bytes
79 3.3.2 n "\xe0\x80" - 2 e0:80 - 2 bytes, need 3
80 3.3.3 n "\xf0\x80\x80" - 3 f0:80:80 - 3 bytes, need 4
81 3.3.4 n "\xf8\x80\x80\x80" - 4 f8:80:80:80 - 4 bytes, need 5
82 3.3.5 n "\xfc\x80\x80\x80\x80" - 5 fc:80:80:80:80 - 5 bytes, need 6
84 3.3.7 n "\xef\xbf" - 2 ef:bf - 2 bytes, need 3
85 3.3.8 n "\xf7\xbf\xbf" - 3 f7:bf:bf - 3 bytes, nee
[all...]
/osnet-11/usr/src/lib/libslp/clib/
H A Dslp_jni_support.c90 jbyteArray bytes = NULL; local
94 * Need a local reference for (1) FindClass(), (2) the bytes and
133 bytes = (*env)->CallObjectMethod(env, jstr, method);
138 len = (*env)->GetArrayLength(env, bytes);
159 * Copy the encoded bytes into the
164 bytes,
171 if (bytes != NULL) {
172 (*env)->DeleteLocalRef(env, bytes);
/osnet-11/usr/src/lib/libc/sparcv9/gen/
H A Dmemset.s53 * For small stores (6 or fewer bytes), bytes will be stored one at a time.
55 * When setting 15 or more bytes, there will be at least 8 bytes aligned
56 * on an 8-byte boundary. So, leading bytes will be set, then as many
58 * bytes.
60 * For between 8 and 14 bytes (inclusive), leading odd bytes will be
61 * set, followed by 4-byte chunks, followed by trailing bytes.
66 * o2: number of bytes t
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/t/
H A Dgrow.t27 use bytes ();
30 my $len = bytes::length($octs);
32 ok(1, "decode $len bytes");
35 "encode $len bytes");
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A Dbytes.t16 use_ok('ExtUtils::MakeMaker::bytes');
19 skip "bytes.pm appeared in 5.6", 3 if $] < 5.006;
25 use ExtUtils::MakeMaker::bytes;
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dmemcmp.s31 / Compares n bytes: s1>s2: >0 s1==s2: 0 s1<s2: <0
67 movl 16(%esp), %edi / %edi = length in bytes
83 jmp .byte_loop / goto .byte_loop (checks in bytes)

Completed in 52 milliseconds

12345678910