Searched refs:bits (Results 351 - 375 of 1594) sorted by relevance

<<11121314151617181920>>

/external/ipsec-tools/src/racoon/
H A Dplainrsa-gen.c72 fprintf(stderr, " -b bits Generate <bits> long RSA key (default=1024)\n");
119 gen_rsa_key(FILE *fp, size_t bits, unsigned long exp) argument
124 key = RSA_generate_key(bits, exp, NULL, NULL);
138 fprintf(fp, "\t# RSA %zu bits\n", bits);
159 size_t bits = 1024; local
176 bits = atoi(optarg);
203 gen_rsa_key(fp, bits, pubexp);
/external/opencv/otherlibs/highgui/
H A Dbitstrm.h128 int Get( int bits );
129 int Show( int bits );
148 int Get( int bits );
149 int Show( int bits );
223 void Put( int val, int bits );
246 void Put( int val, int bits );
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dexponentiation.c128 int i, bits, ret = 0; local
152 bits = BN_num_bits(p);
164 for (i = 1; i < bits; i++) {
391 * For window size 'w' (w >= 2) and a random 'b' bits exponent, the number of
419 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
432 bits = BN_num_bits(p);
434 if (bits == 0) {
471 window = BN_window_bits_for_exponent_size(bits);
489 wstart = bits - 1; /* The top bit of the window */
572 * 4096, 8192 bits], compare
604 int i, j, bits, ret = 0, wstart, wend, window, wvalue; local
853 int i, bits, ret = 0, window, wvalue; local
1183 int b, bits, ret = 0; local
1343 int i, j, bits, b, bits1, bits2, ret = 0, wpos1, wpos2, window1, window2, local
[all...]
/external/chromium_org/third_party/libva/va/
H A Dva_enc_h264.h193 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon12931
244 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon12933
366 } bits; member in union:_VAEncPictureParameterBufferH264::__anon12935
508 * @name Macroblock neighbour availability bits
511 * Definitions for macroblock neighbour availability bits used in
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.h58 } bits; member in union:tile_address
141 addr.bits.x = x / TILE_SIZE;
142 addr.bits.y = y / TILE_SIZE;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
H A DForm21t.java81 BitSet bits = new BitSet(1);
83 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
84 return bits;
H A DForm31i.java91 BitSet bits = new BitSet(1);
93 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
94 return bits;
H A DForm31t.java80 BitSet bits = new BitSet(1);
82 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
83 return bits;
H A DForm51l.java88 BitSet bits = new BitSet(1);
90 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
91 return bits;
H A DForm12x.java115 BitSet bits = new BitSet(2);
117 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
118 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg()));
119 return bits;
H A DForm22b.java95 BitSet bits = new BitSet(2);
97 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
98 bits.set(1, unsignedFitsInByte(regs.get(1).getReg()));
99 return bits;
H A DForm22c.java97 BitSet bits = new BitSet(2);
99 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
100 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg()));
101 return bits;
H A DForm22s.java95 BitSet bits = new BitSet(2);
97 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg()));
98 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg()));
99 return bits;
H A DForm32s.java99 BitSet bits = new BitSet(2);
101 bits.set(0, unsignedFitsInByte(regs.get(0).getReg()));
102 bits.set(1, unsignedFitsInByte(regs.get(1).getReg()));
103 return bits;
H A DForm52c.java96 BitSet bits = new BitSet(2);
98 bits.set(0, unsignedFitsInShort(regs.get(0).getReg()));
99 bits.set(1, unsignedFitsInShort(regs.get(1).getReg()));
100 return bits;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.h58 } bits; member in union:tile_address
141 addr.bits.x = x / TILE_SIZE;
142 addr.bits.y = y / TILE_SIZE;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeWriter.java83 int bits = 0;
85 bits += (language.getBytes()[i] - 0x60) << (2 - i) * 5;
87 writeUInt16(bb, bits);
/external/zlib/src/
H A Dzlib2ansi68 my @bits = split /\s*,\s*/, $p;
69 my $first = shift @bits;
74 push @outParams, map { $type . $_ } @bits;
/external/chromium_org/third_party/icu/source/common/
H A Dpatternprops.cpp100 * Same as syntax2000, but with additional bits set for the
125 uint32_t bits=syntax2000[index2000[(c-0x2000)>>5]]; local
126 return (UBool)((bits>>(c&0x1f))&1);
143 uint32_t bits=syntaxOrWhiteSpace2000[index2000[(c-0x2000)>>5]]; local
144 return (UBool)((bits>>(c&0x1f))&1);
/external/chromium_org/third_party/opus/src/celt/
H A Dmodes.h53 const unsigned char *bits; member in struct:__anon14706
74 const unsigned char *allocVectors; /**< Number of bits in each band for several rates */
/external/chromium_org/third_party/smhasher/src/
H A Dpstdint.h85 * dealing with 64 bits then it is because this file has not yet
165 * settings): Borland Turbo C 2.0, WATCOM C/C++ 11.0 (16 bits and 32
166 * bits), Microsoft Visual C++ 6.0 (32 bit), Microsoft Visual Studio
299 * integer sizes in bits are powers of 2, and follow the ANSI
748 #define DECLU(bits) glue3(uint,bits,_t) glue3(u,bits,=) glue3(UINT,bits,_C) (0);
749 #define DECLI(bits) glue3(int,bits,_
[all...]
/external/chromium_org/tools/gn/
H A Dsubstitution_list.h38 void FillRequiredTypes(SubstitutionBits* bits) const;
/external/guava/guava/src/com/google/common/hash/
H A DHashFunction.java37 * length (given by {@link #bits}). For example, {@link Hashing#sha1} produces a
38 * 160-bit number, while {@link Hashing#murmur3_32()} yields only 32 bits. Because a
71 * hash code's bits as possible. The result is that, for example, when choosing a
72 * bucket in a hash table of size 2^8, <i>any</i> eight bits could be consistently
113 * <p>Java's baked-in concept of hash codes is constrained to 32 bits, and provides no
193 * Returns the number of bits (a multiple of 32) that each hash code produced by this
196 int bits(); method in interface:HashFunction
/external/icu/icu4c/source/common/
H A Dpatternprops.cpp100 * Same as syntax2000, but with additional bits set for the
125 uint32_t bits=syntax2000[index2000[(c-0x2000)>>5]]; local
126 return (UBool)((bits>>(c&0x1f))&1);
143 uint32_t bits=syntaxOrWhiteSpace2000[index2000[(c-0x2000)>>5]]; local
144 return (UBool)((bits>>(c&0x1f))&1);
/external/libopus/celt/
H A Dmodes.h53 const unsigned char *bits; member in struct:__anon24537
74 const unsigned char *allocVectors; /**< Number of bits in each band for several rates */

Completed in 409 milliseconds

<<11121314151617181920>>