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

  /external/dropbear/libtomcrypt/src/pk/asn1/der/object_identifier/
der_encode_object_identifier.c 30 unsigned long i, x, y, z, t, mask, wordbuf; local
48 wordbuf = words[0] * 40 + words[1];
50 t = der_object_identifier_bits(wordbuf);
51 z += t/7 + ((t%7) ? 1 : 0) + (wordbuf == 0 ? 1 : 0);
53 wordbuf = words[y + 1];
74 wordbuf = words[0] * 40 + words[1];
77 t = wordbuf & 0xFFFFFFFF;
99 wordbuf = words[i + 1];
der_length_object_identifier.c 42 unsigned long y, z, t, wordbuf; local
60 wordbuf = words[0] * 40 + words[1];
62 t = der_object_identifier_bits(wordbuf);
63 z += t/7 + ((t%7) ? 1 : 0) + (wordbuf == 0 ? 1 : 0);
66 wordbuf = words[y+1];

Completed in 707 milliseconds