HomeSort by relevance Sort by last modified time
    Searched defs:len_len (Results 1 - 2 of 2) sorted by null

  /external/syslinux/gpxe/src/crypto/
asn1.c 51 unsigned int len_len; local
74 len_len = *( ( uint8_t * ) cursor->data );
75 if ( len_len & 0x80 ) {
76 len_len = ( len_len & 0x7f );
80 len_len = 1;
82 if ( cursor->len < len_len ) {
84 "%zd)\n", cursor, len_len, cursor->len );
90 for ( len = 0 ; len_len ; len_len-- )
    [all...]
  /external/boringssl/src/crypto/bytestring/
cbb.c 146 size_t len_len) {
147 if (len_len == 0) {
152 if (!cbb_buffer_add(base, &buf, len_len)) {
156 for (size_t i = len_len - 1; i < len_len; i--) {
225 uint8_t len_len; local
234 len_len = 5;
237 len_len = 4;
240 len_len = 3;
243 len_len = 2
    [all...]

Completed in 110 milliseconds