HomeSort by relevance Sort by last modified time
    Searched defs:bytes (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /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/perl/5.8.4/distrib/lib/
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...]
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() }
  /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/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/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/uts/sparc/os/
door_support.c 42 char bytes[MAX(MINFRAME, MINFRAME32)]; local
61 bzero(bytes, count);
62 if (copyout(bytes, newsp, count) != 0)
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/
Encoder.pm 58 sub bytes { subroutine
92 q(0+) => sub { use bytes (); bytes::length($_[0]->{data}) },
114 encoder($base64)->bytes('base64')->latin1;
118 encoder("\x{abcd}\x{ef}g")->utf8 == 6; # true. bytes::length($data)
191 =item $e-E<gt>bytes([$encoding])
197 The name I<bytes> was deliberately picked to avoid namespace tainting
232 encoder($base64)->bytes('base64')->latin1;
240 Numify returns the number of bytes in the instance data.
  /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/sun_fc/common/
Sun_fcAdapterCreateWWN.cc 43 ssize_t bytes; local
46 bytes = read(fd, ptr, resid);
47 ptr += bytes;
48 resid -= bytes;
  /onnv/onnv-gate/usr/src/uts/common/brand/lx/syscall/
lx_modify_ldt.c 86 int bytes; local
91 bytes = (pp->p_ldtlimit + 1) * sizeof (user_desc_t);
92 if (bytes > count)
93 bytes = count;
95 if (copyout(pp->p_ldt, uptr, bytes))
98 return (bytes);
  /onnv/onnv-gate/usr/src/cmd/cmd-crypto/kmfcfg/
create.c 162 uchar_t *bytes = NULL; local
167 &bytes, &bytelen);
168 if (ret != KMF_OK || bytes == NULL) {
177 if (bytes != NULL)
178 free(bytes);
273 uchar_t *bytes = NULL; local
278 &bytes, &bytelen);
279 if (ret != KMF_OK || bytes == NULL) {
289 if (bytes != NULL)
290 free(bytes);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
OffsetOrderedList.cxx 54 blocks_.back()->bytes[blockUsed_] = b;
103 const unsigned char *bytes = blocks_[i]->bytes; local
109 if (bytes[j] != 255) {
115 curOff -= bytes[j];
123 bytes = blocks_[i]->bytes;
OffsetOrderedList.h 22 unsigned char bytes[size]; member in struct:SP_NAMESPACE::OffsetOrderedListBlock
40 // bytes used in current block
  /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/common/openssl/crypto/rand/
rand.h 84 int (*bytes)(unsigned char *buf, int num); member in struct:rand_meth_st
110 int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes);
112 int RAND_egd_bytes(const char *path,int bytes);
  /onnv/onnv-gate/usr/src/lib/libc/port/stdio/
fwrite.c 96 ssize_t bytes; local
108 bytes = iop->_ptr - iop->_base;
111 while ((n = write(fileno(iop), data, (size_t)bytes))
112 != bytes) {
119 bytes -= n;
126 * written is in bytes until the return.
  /onnv/onnv-gate/usr/src/lib/libslp/clib/
slp_jni_support.c 90 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);
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/jfs/
jfs.c 44 char bytes[512]; member in union:__anon204
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/xfs/
xfs.c 45 char bytes [512]; member in union:__anon221
  /onnv/onnv-gate/usr/src/cmd/bnu/
xio.c 148 unsigned long bytes; local
151 bytes = 0L;
154 bytes += len;
155 putfilesize(bytes);
183 unsigned long bytes; local
186 bytes = 0L;
193 bytes += len;
194 putfilesize(bytes);
211 * i -> # of bytes read
  /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/
msgs.c 66 int bytes; local
113 bytes = 1;
117 bytes = -1;
127 bytes = mread(md, Message, MSGMAX);
130 switch (bytes) {
  /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/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/lib/libtnf/
access.c 127 size_t size, bytes; local
148 bytes = _GET_BLOCK_BYTES_VALID(tnf, bhdr);
150 blim = bval + bytes;

Completed in 180 milliseconds

1 2 3 4 5 6 7 8