Searched defs:noctets (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libkmf/ber_der/common/ |
H A D | decode.c | 108 int noctets, diff; local 140 noctets = (lc & 0x7f); 141 if (noctets > sizeof (ber_uint_t)) 143 diff = sizeof (ber_int_t) - noctets; 144 if (kmfber_read(ber, (char *)&netlen + diff, noctets) 145 != noctets)
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/ber/ |
H A D | decode.c | 97 int noctets, diff; local 128 noctets = (lc & 0x7f); 129 if ( noctets > sizeof(ber_uint_t) ) 131 diff = sizeof(ber_int_t) - noctets; 132 if ( ber_read( ber, (char *) &netlen + diff, noctets ) 133 != noctets )
|
H A D | io.c | 600 int noctets, diff; local 647 noctets = (lc & 0x7f); 648 if ( noctets > sizeof(ber_uint_t) ) 650 diff = sizeof(ber_uint_t) - noctets; 651 if ( BerRead( sb, (char *) &netlen + diff, noctets ) != 652 noctets ) { 1106 int noctets, diff; local 1153 noctets = (lc & 0x7f); 1154 if ( noctets > sizeof(ber_uint_t) ) 1156 diff = sizeof(ber_uint_t) - noctets; [all...] |
Completed in 67 milliseconds