| /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
| Form12x.java | 115 BitSet bits = new BitSet(2); local 117 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg())); 118 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg())); 119 return bits;
|
| Form21t.java | 81 BitSet bits = new BitSet(1); local 83 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 84 return bits;
|
| Form22c.java | 97 BitSet bits = new BitSet(2); local 99 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg())); 100 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg())); 101 return bits;
|
| Form22t.java | 83 BitSet bits = new BitSet(2); local 85 bits.set(0, unsignedFitsInNibble(regs.get(0).getReg())); 86 bits.set(1, unsignedFitsInNibble(regs.get(1).getReg())); 87 return bits;
|
| Form22x.java | 78 BitSet bits = new BitSet(2); local 80 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 81 bits.set(1, unsignedFitsInShort(regs.get(1).getReg())); 82 return bits;
|
| Form23x.java | 80 BitSet bits = new BitSet(3); local 82 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 83 bits.set(1, unsignedFitsInByte(regs.get(1).getReg())); 84 bits.set(2, unsignedFitsInByte(regs.get(2).getReg())); 85 return bits;
|
| Form31i.java | 91 BitSet bits = new BitSet(1); local 93 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 94 return bits;
|
| Form31t.java | 80 BitSet bits = new BitSet(1); local 82 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 83 return bits;
|
| Form32x.java | 77 BitSet bits = new BitSet(2); local 79 bits.set(0, unsignedFitsInShort(regs.get(0).getReg())); 80 bits.set(1, unsignedFitsInShort(regs.get(1).getReg())); 81 return bits;
|
| Form33x.java | 84 BitSet bits = new BitSet(3); local 86 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 87 bits.set(1, unsignedFitsInByte(regs.get(1).getReg())); 88 bits.set(2, unsignedFitsInShort(regs.get(2).getReg())); 89 return bits;
|
| Form51l.java | 88 BitSet bits = new BitSet(1); local 90 bits.set(0, unsignedFitsInByte(regs.get(0).getReg())); 91 return bits;
|
| Form52c.java | 96 BitSet bits = new BitSet(2); local 98 bits.set(0, unsignedFitsInShort(regs.get(0).getReg())); 99 bits.set(1, unsignedFitsInShort(regs.get(1).getReg())); 100 return bits;
|
| /external/guava/guava/src/com/google/common/hash/ |
| HashCode.java | 43 * @throws IllegalStateException if {@code bits() < 64} 73 * Returns the number of bits in this hash code; a positive multiple of 32. 75 public abstract int bits(); method in class:HashCode
|
| HashCodes.java | 40 @Override public int bits() { method in class:HashCodes.IntHashCode 57 throw new IllegalStateException("this HashCode only has 32 bits; cannot create a long"); 76 @Override public int bits() { method in class:HashCodes.LongHashCode 117 @Override public int bits() { method in class:HashCodes.BytesHashCode
|
| Murmur3_32HashFunction.java | 36 @Override public int bits() { method in class:Murmur3_32HashFunction
|
| /external/ipsec-tools/src/racoon/ |
| plainrsa-gen.c | 72 fprintf(stderr, " -b bits Generate <bits> long RSA key (default=1024)\n"); 119 gen_rsa_key(FILE *fp, size_t bits, unsigned long exp) 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/iptables/extensions/ |
| libipt_NETMAP.c | 36 int bits; local 39 for (bits = 0, bm = 0x80000000; netmask & bm; netmask <<= 1) 40 bits++; 43 return bits; 71 int bits; local 76 bits = netmask2bits(a.s_addr); 77 if (bits < 0) 80 printf("/%d", bits);
|
| /external/libvorbis/doc/ |
| 02-bitpacking.tex | 10 bitstream in which bits are coded one-by-one by the encoder and then 12 decoder. Most current binary storage arrangements group bits into a 13 native word size of eight bits (octets), sixteen bits, thirty-two bits 22 'octet', that is, eight bits. This has not always been the case; 26 modern platforms, this is generally assumed to be eight bits (not 33 octet (eight bits) and a word to be a group of two, four or eight 34 bytes (16, 32 or 64 bits). Note however that the Vorbis bitpacking 44 end of the byte. Bits in a byte are numbered from zero at the LSb t [all...] |
| /external/lldb/source/Plugins/Process/POSIX/ |
| ProcessPOSIXLog.cpp | 84 uint32_t bits = GetFlagBits(arg); local 86 if (bits) 88 flag_bits &= ~bits; 129 uint32_t bits = GetFlagBits(arg); local 131 if (bits) 133 flag_bits |= bits;
|
| /external/lldb/test/lang/c/bitfields/ |
| main.c | 13 struct Bits 28 printf("%lu", sizeof(struct Bits)); 30 struct Bits bits; local 33 bits.b1 = i; //// break $source:$line 35 bits.b2 = i; //// break $source:$line 37 bits.b3 = i; //// break $source:$line 39 bits.b4 = i; //// break $source:$line 41 bits.b5 = i; //// break $source:$line 43 bits.b6 = i; //// break $source:$lin [all...] |
| /external/lldb/tools/debugserver/source/ |
| PThreadEvent.cpp | 18 PThreadEvent::PThreadEvent(uint32_t bits, uint32_t validBits) : 22 m_bits(bits), 26 // DNBLogThreadedIf(LOG_EVENTS, "%p PThreadEvent::%s (0x%8.8x, 0x%8.8x)", this, __FUNCTION__, bits, validBits); 65 uint32_t bits = m_bits; local 66 return bits; 69 // Replace the event bits with a new bitmask value 71 PThreadEvent::ReplaceEventBits(const uint32_t bits) 73 // DNBLogThreadedIf(LOG_EVENTS, "%p PThreadEvent::%s (0x%8.8x)", this, __FUNCTION__, bits); 75 // Make sure we have some bits and that they aren't already set... 76 if (m_bits != bits) [all...] |
| /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/ |
| CAVLCWriter.java | 47 int bits = 0; local 51 bits = i; 56 writeNBit(0, bits); 58 writeNBit(value - cumul, bits);
|
| /external/okhttp/okio/src/main/java/okio/ |
| Base64.java | 49 int bits; local 54 bits = c - 65; 59 bits = c - 71; 64 bits = c + 4; 66 bits = 62; 68 bits = 63; 75 // Append this char's 6 bits to the word. 76 word = (word << 6) | (byte) bits; 78 // For every 4 chars of input, we accumulate 24 bits of output. Emit 3 bytes. 89 // We read 1 char followed by "===". But 6 bits is a truncated byte! Fail [all...] |
| /external/openssl/crypto/asn1/ |
| a_bitstr.c | 68 int ret,j,bits,len; local 79 bits=(int)a->flags&0x07; 88 if (j & 0x01) bits=0; 89 else if (j & 0x02) bits=1; 90 else if (j & 0x04) bits=2; 91 else if (j & 0x08) bits=3; 92 else if (j & 0x10) bits=4; 93 else if (j & 0x20) bits=5; 94 else if (j & 0x40) bits=6; 95 else if (j & 0x80) bits=7 [all...] |
| /external/skia/src/gpu/ |
| GrStencilBuffer.h | 29 int bits() const { return fBits; } function in class:GrStencilBuffer 56 GrStencilBuffer(GrGpu* gpu, bool isWrapped, int width, int height, int bits, int sampleCnt) 60 , fBits(bits)
|