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

1 2 3 4 5 6 7 8 91011>>

  /netvirt/usr/src/cmd/perl/5.6.1/distrib/lib/
bytes_heavy.pl 3 sub length ($) { subroutine
5 return CORE::length($_[0]);
  /netvirt/usr/src/cmd/pwd/
pwd.c 49 int length; local
51 length = strlen(name);
52 name[length] = '\n';
53 (void) write(1, name, length + 1);
  /netvirt/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
set_realm.c 37 size_t length; local
43 length = strlen(realm);
44 newrealm = malloc(length+1); /* Include room for the null */
51 krb5_princ_realm(context, principal)->length = length;
  /netvirt/usr/src/cmd/audio/include/
AudioStream.h 47 Double length; // length of data, in secs member in class:AudioStream
57 // Set data length
59 Double len); // new length, in secs
70 // Set data length
72 Double len); // new length, in secs
75 virtual size_t GetByteCount() const; // Get length, in bytes
80 virtual Double GetLength() const; // Get length, in secs
  /netvirt/usr/src/cmd/perl/5.8.4/distrib/lib/
bytes_heavy.pl 3 sub length ($) { subroutine
5 return CORE::length($_[0]);
  /netvirt/usr/src/cmd/sgs/gprof/common/
calls.c 64 sztype length; local
87 length = 4;
90 instructp += length) {
  /netvirt/usr/src/common/openssl/crypto/des/
str2key.c 65 int i,length; local
69 length=strlen(str);
71 for (i=0; i<length; i++)
74 for (i=0; i<length; i++)
97 DES_cbc_cksum((const unsigned char*)str,key,length,&ks,key);
105 int i,length; local
110 length=strlen(str);
112 if (length <= 8)
114 for (i=0; i<length; i++)
121 for (i=0; i<length; i++
    [all...]
  /netvirt/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
asn1_get.h 42 unsigned int length; member in struct:__anon2317
65 tag number, and length are returned in *construction,
77 associated length is returned in *retlen. */
  /netvirt/usr/src/lib/gss_mechs/mech_krb5/mech/
export_name.c 38 size_t length; local
51 exported_name->length = 0;
70 length = strlen(str);
71 exported_name->length = 10 + length + gss_mech_krb5->length;
72 exported_name->value = malloc(exported_name->length);
83 *cp++ = (gss_mech_krb5->length+2) >> 8;
84 *cp++ = (gss_mech_krb5->length+2) & 0xFF;
86 *cp++ = (gss_mech_krb5->length) & 0xFF
    [all...]
  /netvirt/usr/src/lib/libcurses/screen/
mbtowc.c 44 int length, c; local
61 if ((length = eucw2) == 0)
66 if ((length = eucw3) == 0)
77 length = eucw1 - 1;
81 if (length + 1 > n || length < 0)
83 while (length--) {
  /netvirt/usr/src/lib/libgss/
g_exp_sec_context.c 52 OM_uint32 length; local
85 length = token.length + 4 + ctx->mech_type->length;
86 interprocess_token->length = length;
87 interprocess_token->value = malloc(length);
93 length = ctx->mech_type->length;
94 buf[3] = (unsigned char) (length & 0xFF)
    [all...]
g_imp_sec_context.c 49 OM_uint32 length = 0; local
79 if (interprocess_token->length >= sizeof (OM_uint32)) {
81 length = (OM_uint32)*p++;
82 length = (OM_uint32)(length << 8) + *p++;
83 length = (OM_uint32)(length << 8) + *p++;
84 length = (OM_uint32)(length << 8) + *p++;
87 if (length == 0 |
    [all...]
  /netvirt/usr/src/psm/promif/ieee1275/sun4/
prom_idprom.c 48 int length; local
50 length = prom_getproplen(prom_rootnode(), OBP_IDPROM);
51 if (length == -1) {
56 if (length > size) {
  /netvirt/usr/src/ucbcmd/plot/libplot/dumb/
subr.c 30 int length, i; local
38 length = abs(x1 - x0);
39 if (abs(y1 -y0) > length)
40 length = abs(y1 - y0);
42 if (length == 0)
45 deltaX = (double) (x1 - x0)/(double) length;
46 deltaY = (double) (y1 - y0)/(double) length;
51 for (i=0; i < length; ++i) {
  /netvirt/usr/src/common/openssl/crypto/x509v3/
v3_skey.c 76 return hex_to_string(oct->data, oct->length);
83 long length; local
90 if(!(oct->data = string_to_hex(str, &length))) {
95 oct->length = length;
132 EVP_Digest(pk->data, pk->length, pkey_dig, &diglen, EVP_sha1(), NULL);
  /netvirt/usr/src/psm/promif/ieee1275/common/
prom_boot.c 35 int length; local
46 length = prom_getproplen(node, name);
47 if ((length == -1) || (length == 0))
49 if (length > OBP_MAXPATHLEN)
50 length = OBP_MAXPATHLEN - 1; /* Null terminator */
51 (void) prom_bounded_getprop(node, name, bootargs, length);
67 int length; local
77 length = prom_getproplen(node, name);
78 if ((length == -1) || (length == 0)
    [all...]
  /netvirt/usr/src/cmd/cmd-inet/usr.bin/talk/
ctl.c 70 socklen_t length; local
85 length = (socklen_t) sizeof (my_addr);
87 if (getsockname(sockt, (struct sockaddr *)&my_addr, &length) == -1) {
97 socklen_t length; local
113 length = (socklen_t) sizeof (ctl_addr);
114 if (getsockname(ctl_sockt, (struct sockaddr *)&ctl_addr, &length)
  /netvirt/usr/src/cmd/fmli/sys/
terror.c 81 register int length; local
93 length = strlen(messbuf);
95 strncat(messbuf, ": ", PATHSIZ - 1 - length);
96 length += 2;
97 strncat(messbuf, Errlist[errno], PATHSIZ - 1 - length);
  /netvirt/usr/src/cmd/format/
menu_cache.c 130 int length; local
155 length = MODESENSE_PAGE_LEN(page8);
165 header.mode_header.length = 0;
169 (caddr_t)page8, length, &header);
191 int length; local
216 length = MODESENSE_PAGE_LEN(page8);
226 header.mode_header.length = 0;
230 (caddr_t)page8, length, &header);
281 int length; local
306 length = MODESENSE_PAGE_LEN(page8)
342 int length; local
    [all...]
  /netvirt/usr/src/cmd/keyserv/
keyserv_cache.h 42 u_short length; /* Length in bytes */ member in struct:dhkey
43 u_char key[1]; /* Binary data; allocated to correct length */
51 /* Convert key length in bits to bytes */
54 /* Bytes to allocate for struct dhkey holding key of specified length (bits) */
58 (dhkey_ptr)->length)
  /netvirt/usr/src/cmd/man/src/util/nsgmls.src/include/
SubstTable.cxx 44 size_t length = table_.size(); local
45 for (size_t i = 0; i < length; i++)
  /netvirt/usr/src/cmd/sh/
string.c 90 int length(as) function
  /netvirt/usr/src/common/openssl/crypto/asn1/
evp_asn1.c 106 in.length=32;
109 os.length=len;
135 /* we return the actual length..., num may be missing, in which
145 long length; local
153 length=M_ASN1_STRING_length(a->value.sequence);
157 c.max=p+length;
x_x509.c 169 X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp, long length)
175 ret = d2i_X509(a, pp, length);
178 /* update length */
179 length -= *pp - q;
180 if(!length) return ret;
181 if(!d2i_X509_CERT_AUX(&ret->aux, pp, length)) goto err;
190 int length; local
191 length = i2d_X509(a, pp);
192 if(a) length += i2d_X509_CERT_AUX(a->aux, pp);
193 return length;
    [all...]
  /netvirt/usr/src/common/openssl/crypto/buffer/
buffer.h 79 int length; /* current number of bytes */ member in struct:buf_mem_st

Completed in 3159 milliseconds

1 2 3 4 5 6 7 8 91011>>