HomeSort by relevance Sort by last modified time
    Searched refs:nwords (Results 1 - 18 of 18) 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 77 int nwords = N.bitLength() / 32; // # of 32 bit integers in modulus local
86 result.append(nwords);
99 for (int i = 0; i < nwords; ++i) {
103 if (i != nwords - 1) {
113 for (int i = 0; i < nwords; ++i) {
117 if (i != nwords - 1) {
  /external/openssh/
mdoc2man.awk 44 while(w<nwords) {
74 nwords=split($0,words)
75 for(w=1;w<=nwords;w++) {
89 w=nwords
95 w=nwords
113 while(w<nwords&&!match(words[w+1],"^[\\.,]"))
230 if(w==nwords)
241 while(w<nwords&&match(words[w+1],"^[\\.,:;)]"))
260 while(w<nwords&&match(words[w+1],"^[\\.,:;)]"))
279 while(w<nwords) {
    [all...]
  /external/mksh/src/
edit.c 225 x_print_expansions(int nwords, char * const *words, bool is_command)
236 (prefix_len = x_longest_prefix(nwords, words)) > 0) {
240 if (nwords == 1)
243 for (i = 0; i < nwords; i++)
248 if (i == nwords) {
252 XPinit(l, nwords + 1);
253 for (i = 0; i < nwords; i++)
367 int nwords; local
392 nwords = DOGLOB | DOTILDE | DOMARKDIRS;
397 nwords = 0
457 size_t nwords; local
590 int len, nwords = 0; local
2695 int start, end, nwords, i; local
2729 int start, end, nlen, olen, nwords; local
5199 int rval = 0, nwords, start, end, i; local
5252 int rval, nwords, start, end, flags; local
5367 int start, end, nwords, i; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 113 * @param nwords how many words the new set should be
115 private function set size(nwords:int):void {
116 bits.length = nwords;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 161 * <param name="nwords">how many words the new set should be</param>
163 private void SetSize(int nwords) {
164 Array.Resize(ref _bits, nwords);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 181 * <param name="nwords">how many words the new set should be</param>
183 private void SetSize( int nwords )
185 Array.Resize(ref _bits, nwords);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 405 * @param nwords how many words the new set should be
407 private void setSize(int nwords) {
408 long newbits[] = new long[nwords];
409 int n = Math.min(nwords, bits.length);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 507 * Grows the internal bits array to include at least nwords numbers.
508 * @param {Number} nwords how many words the new set should be
511 setSize: function(nwords) {
512 var n = nwords - this.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);
  /external/elfutils/lib/
md5.c 298 size_t nwords = len / sizeof (md5_uint32); local
299 const md5_uint32 *endp = words + nwords;
sha1.c 226 size_t nwords = len / sizeof (sha1_uint32); local
227 const sha1_uint32 *endp = words + nwords;
  /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...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 223 milliseconds