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

  /external/dropbear/libtomcrypt/src/pk/asn1/der/object_identifier/
der_length_object_identifier.c 35 @param nwords The number of OID words
40 int der_length_object_identifier(unsigned long *words, unsigned long nwords, unsigned long *outlen)
49 if (nwords < 2) {
61 for (y = 1; y < nwords; y++) {
64 if (y < nwords - 1) {
der_encode_object_identifier.c 22 @param nwords The number of words in the OID
27 int der_encode_object_identifier(unsigned long *words, unsigned long nwords,
38 if ((err = der_length_object_identifier(words, nwords, &x)) != CRYPT_OK) {
49 for (y = 1; y < nwords; y++) {
52 if (y < nwords - 1) {
75 for (i = 1; i < nwords; i++) {
98 if (i < nwords - 1) {
  /system/core/libmincrypt/tools/
DumpPublicKey.java 63 int nwords = N.bitLength() / 32; // # of 32 bit integers in modulus local
66 result.append(nwords);
79 for (int i = 0; i < nwords; ++i) {
83 if (i != nwords - 1) {
93 for (int i = 0; i < nwords; ++i) {
97 if (i != nwords - 1) {
  /external/mksh/src/
edit.c 235 x_print_expansions(int nwords, char * const *words, bool is_command)
245 (prefix_len = x_longest_prefix(nwords, words)) > 0) {
249 if (nwords == 1)
252 for (i = 0; i < nwords; i++)
257 if (i == nwords) {
261 XPinit(l, nwords + 1);
262 for (i = 0; i < nwords; i++)
289 int nwords, i, idx; local
336 for (nwords = 0; words[nwords]; nwords++
387 int nwords; local
525 int len, nwords; local
2605 int start, end, nwords, i; local
2635 int start, end, nlen, olen, nwords; local
5049 int nwords; local
5103 int rval, nwords, start, end, match_len; local
5204 int start, end, nwords; local
    [all...]
  /external/antlr/src/org/antlr/runtime/
BitSet.java 152 * @param nwords how many words the new set should be
154 private void setSize(int nwords) {
155 long newbits[] = new long[nwords];
156 int n = Math.min(nwords, bits.length);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 471 int der_encode_object_identifier(unsigned long *words, unsigned long nwords,
475 int der_length_object_identifier(unsigned long *words, unsigned long nwords, unsigned long *outlen);
  /ndk/sources/host-tools/make-3.81/
function.c 1141 int nwords = 0;
1152 if (wordi >= nwords - 1)
1154 nwords = (2 * nwords) + 5;
1156 nwords * sizeof (char *));
1134 int nwords = 0; local
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]

Completed in 913 milliseconds