HomeSort by relevance Sort by last modified time
    Searched refs:octets (Results 1 - 19 of 19) sorted by null

  /onnv/onnv-gate/usr/src/common/iscsi/
base64.c 120 int octets, endseen, numbase64chars; local
144 * if we've gathered 4 base64 octets
148 octets = outdec64(tmp_out, chr, 4);
151 if (*out_len + octets > binary_buf_len)
154 (void) memcpy(binary + *out_len, tmp_out, octets);
155 *out_len += octets;
159 * handle any remaining base64 octets at end
162 octets = outdec64(tmp_out, chr, numbase64chars);
164 if (*out_len + octets > binary_buf_len)
167 (void) memcpy(binary + *out_len, tmp_out, octets);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/lib/
dd_opt.h 62 uchar_t **octets; member in union:dhcp_option::__anon235::__anon236::__anon237
dd_opt.c 83 free(opt->u.ret.data.octets[i]);
85 free(opt->u.ret.data.octets);
145 opt->u.ret.data.octets = calloc(count,
147 if (opt->u.ret.data.octets == NULL) {
  /onnv/onnv-gate/usr/src/lib/libnsl/nss/
inet_pton.c 85 int saw_digit, octets, ch; local
89 octets = 0;
101 if (++octets > 4)
106 if (octets == 4)
113 if (octets < 4)
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/inet/
inet_pton.c 86 int saw_digit, octets, ch; local
90 octets = 0;
104 if (++octets > 4)
109 if (octets == 4)
116 if (octets < 4)
  /onnv/onnv-gate/usr/src/cmd/bnu/
uudecode.c 292 int n, octets, warned, endseen, numbase64chars; local
325 octets = n;
328 while (octets > 0) {
330 (unsigned char *)ibp, octets))
344 octets -= 3;
349 if (octets <= 0) {
367 * if we've gathered 4 base64 octets
383 octets = outdec64(optr, chr, 4);
384 optr += octets;
389 * handle any remaining base64 octets at en
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/
Encode.pm 149 my $octets = $enc->encode($string,$check);
151 return $octets;
156 my ($name,$octets,$check) = @_;
157 return undef unless defined $octets;
164 my $string = $enc->decode($octets,$check);
165 $_[1] = $octets if $check;
271 my ($obj,$octets,$chk) = @_;
272 my $str = Encode::decode_utf8($octets);
281 my $octets = Encode::encode_utf8($string);
283 return $octets;
    [all...]
encoding.pm 170 #<-char-><-char-> # 4 octets
212 is three octets when interpreted as Latin-1.
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/
Encoding.pm 109 =item -E<gt>decode($octets [,$check])
111 MUST return the string that I<$octets> represents.
117 If I<$check> is true, it SHOULD modify I<$octets> in place to remove
124 been converted and modify $octets in-place to remove the converted
143 =item -E<gt>cat_decode($destination, $octets, $offset, $terminator [,$check])
145 MUST decode I<$octets> with I<$offset> and concatenate it to I<$destination>.
147 I<$offset> will be modified to the last $octets position at end of decode.
  /onnv/onnv-gate/usr/src/lib/print/libpapi-lpd/common/
lpd-query.c 158 int octets = 0; local
198 octets = atoi(s);
261 octets += (size * copies);
265 "job-k-octets", octets/1024);
267 "job-octets", octets);
  /onnv/onnv-gate/usr/src/lib/libgss/
g_glue.c 59 unsigned int octets; local
81 octets = *p++ & 0x7f;
82 *bytes += octets;
85 if (octets > buf_len - 1)
92 for (length = 0; octets; octets--) {
149 /* First byte contains the number of octets */
  /onnv/onnv-gate/usr/src/lib/print/libprint/common/
sunPrinter.at.conf.txt 56 attribute printer-job-k-octets-supported 1.3.18.0.2.4.1111 bin single
sunPrinter.oc.conf.txt 55 printer-job-k-octets-supported,
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
PerlIO.pm 146 be "octets" i.e. characters in range 0..255 only. Likewise
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/MIME/Base64/
Base64.pm 40 arbitrary sequences of octets in a form that need not be humanly
  /onnv/onnv-gate/usr/src/uts/intel/io/acpica/
osl.c 1416 union { char octets[4]; int retval; } myu; member in union:__anon6
1418 myu.octets[0] = ((np[0] & 0x1F) << 2) + ((np[1] >> 3) & 0x03);
1419 myu.octets[1] = ((np[1] & 0x07) << 5) + (np[2] & 0x1F);
1420 myu.octets[2] = (hexdig(np[3]) << 4) + hexdig(np[4]);
1421 myu.octets[3] = (hexdig(np[5]) << 4) + hexdig(np[6]);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Socket/
Socket.pm 76 or a v-string representing the four octets of the IPv4 address in
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
POP3.pm 470 in octets.
474 be their size in octets.
496 elements and the size of the mbox in octets.
  /onnv/onnv-gate/usr/src/cmd/ldap/ns_ldap/
idsconfig.sh     [all...]

Completed in 2051 milliseconds