HomeSort by relevance Sort by last modified time
    Searched full:bits (Results 1 - 25 of 6982) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtommath/etc/
2kprime.1 1 256-bits (k = 36113) = 115792089237316195423570985008687907853269984665640564039457584007913129603823
2 512-bits (k = 38117) = 13407807929942597099574024998205846127479365820592393377723561443721764030073546976801874298166903427690031858186486050853753882811946569946433649006045979
  /external/speex/libspeex/
bits.c 48 EXPORT void speex_bits_init(SpeexBits *bits)
50 bits->chars = (char*)speex_alloc(MAX_CHARS_PER_FRAME);
51 if (!bits->chars)
54 bits->buf_size = MAX_CHARS_PER_FRAME;
56 bits->owner=1;
58 speex_bits_reset(bits);
61 EXPORT void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size)
63 bits->chars = (char*)buff;
64 bits->buf_size = buf_size;
66 bits->owner=0
    [all...]
  /dalvik/dx/src/com/android/dx/util/_tests/
_Bits.java 19 import com.android.dx.util.Bits;
24 * Test the class {@code com.android.dx.util.Bits}.
29 assertEquals(label(0), 0, Bits.makeBitSet(0).length);
32 assertEquals(label(i), 1, Bits.makeBitSet(i).length);
36 assertEquals(label(i), 2, Bits.makeBitSet(i).length);
44 assertEquals(label(i), expect, Bits.makeBitSet(i).length);
55 Bits.getMax(new int[expect]));
60 int[] bits = Bits.makeBitSet(100); local
63 assertFalse(label(i), Bits.get(bits, i))
68 int[] bits = Bits.makeBitSet(100); local
79 int[] bits = Bits.makeBitSet(100); local
92 int[] bits = Bits.makeBitSet(50); local
109 int[] bits = Bits.makeBitSet(100); local
137 int[] bits = Bits.makeBitSet(100); local
152 int[] bits = Bits.makeBitSet(100); local
177 int[] bits = Bits.makeBitSet(i); local
196 int[] bits = Bits.makeBitSet(i); local
219 int[] bits = new int[100]; local
227 int[] bits = new int[100]; local
235 int[] bits = new int[100]; local
243 int[] bits = new int[100]; local
254 int[] bits = new int[100]; local
265 int[] bits = new int[100]; local
276 int[] bits = new int[100]; local
284 int[] bits = new int[100]; local
295 int[] bits = new int[100]; local
    [all...]
  /external/llvm/test/TableGen/
2010-03-24-PrematureDefaults.td 4 class A<int k, bits<2> x = 1> {
6 bits<2> Bits = x;
10 // CHECK: Bits = { 0, 1 }
14 // CHECK: Bits = { 1, 0 }
17 // Here was the bug: X.Bits would get resolved to the default a1.Bits while
19 // was processed, X would be set correctly, but Bits retained the default
23 bits<2> Bits = X.Bits
    [all...]
UnsetBitInit.td 4 field bits<32> A;
7 class y<bits<2> B> : x {
BitsInitOverflow.td 4 bits<2> X = 5; // bitfield is too small, reject
DefmInsideMultiClass.td 4 class Instruction<bits<4> opc, string Name> {
5 bits<4> opcode = opc;
9 multiclass basic_r<bits<4> opc> {
14 multiclass basic_s<bits<4> opc> {
19 multiclass basic_p<bits<4> opc> {
  /dalvik/dx/tests/029-unit-Bits/
info.txt 1 Unit test for com.android.dx.util.Bits.
  /dalvik/dexgen/src/com/android/dexgen/util/
BitIntSet.java 27 int[] bits; field in class:BitIntSet
35 bits = Bits.makeBitSet(max);
41 Bits.set(bits, value, true);
50 if (value >= Bits.getMax(bits)) {
51 int[] newBits = Bits.makeBitSet(
52 Math.max(value + 1, 2 * Bits.getMax(bits)));
    [all...]
  /dalvik/dx/src/com/android/dx/util/
BitIntSet.java 27 int[] bits; field in class:BitIntSet
35 bits = Bits.makeBitSet(max);
41 Bits.set(bits, value, true);
50 if (value >= Bits.getMax(bits)) {
51 int[] newBits = Bits.makeBitSet(
52 Math.max(value + 1, 2 * Bits.getMax(bits)));
    [all...]
  /external/elfutils/libelf/
abstract.h 19 #define Ehdr(Bits, Ext) \
20 START (Bits, Ehdr, Ext##Ehdr) \
23 TYPE_NAME (ElfW2(Bits, Ext##Half), e_type) \
24 TYPE_NAME (ElfW2(Bits, Ext##Half), e_machine) \
25 TYPE_NAME (ElfW2(Bits, Ext##Word), e_version) \
26 TYPE_NAME (ElfW2(Bits, Ext##Addr), e_entry) \
27 TYPE_NAME (ElfW2(Bits, Ext##Off), e_phoff) \
28 TYPE_NAME (ElfW2(Bits, Ext##Off), e_shoff) \
29 TYPE_NAME (ElfW2(Bits, Ext##Word), e_flags) \
30 TYPE_NAME (ElfW2(Bits, Ext##Half), e_ehsize)
    [all...]
  /external/webrtc/src/common_audio/signal_processing_library/main/source/
get_size_in_bits.c 25 int bits = 0; local
27 // Fast binary search to find the number of bits used
29 bits = 16;
30 if ((0x0000FF00 & (value >> bits)))
31 bits += 8;
32 if ((0x000000F0 & (value >> bits)))
33 bits += 4;
34 if ((0x0000000C & (value >> bits)))
35 bits += 2;
36 if ((0x00000002 & (value >> bits)))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstLiteral64.java 24 /** the value as {@code long} bits */
25 private final long bits; field in class:CstLiteral64
30 * @param bits the value as {@code long} bits
32 /*package*/ CstLiteral64(long bits) {
33 this.bits = bits;
41 bits == ((CstLiteral64) other).bits;
47 return (int) bits ^ (int) (bits >> 32)
    [all...]
CstLiteral32.java 24 /** the value as {@code int} bits */
25 private final int bits; field in class:CstLiteral32
30 * @param bits the value as {@code int} bits
32 /*package*/ CstLiteral32(int bits) {
33 this.bits = bits;
41 bits == ((CstLiteral32) other).bits;
47 return bits;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstLiteral64.java 24 /** the value as {@code long} bits */
25 private final long bits; field in class:CstLiteral64
30 * @param bits the value as {@code long} bits
32 /*package*/ CstLiteral64(long bits) {
33 this.bits = bits;
41 bits == ((CstLiteral64) other).bits;
47 return (int) bits ^ (int) (bits >> 32)
    [all...]
CstLiteral32.java 24 /** the value as {@code int} bits */
25 private final int bits; field in class:CstLiteral32
30 * @param bits the value as {@code int} bits
32 /*package*/ CstLiteral32(int bits) {
33 this.bits = bits;
41 bits == ((CstLiteral32) other).bits;
47 return bits;
    [all...]
  /dalvik/vm/mterp/c/
OP_DISPATCH_FF.cpp 3 * Indicates extended opcode. Use next 8 bits to choose where to branch.
  /ndk/sources/host-tools/sed-4.2.1/lib/
stat-macros.h 1 /* All the mode bits that can be affected by chmod. */
  /external/llvm/lib/Target/PowerPC/
PPCInstrFormats.td 14 class I<bits<6> opcode, dag OOL, dag IOL, string asmstr, InstrItinClass itin>
16 field bits<32> Inst;
27 bits<1> PPC970_First = 0;
28 bits<1> PPC970_Single = 0;
29 bits<1> PPC970_Cracked = 0;
30 bits<3> PPC970_Unit = 0;
40 class PPC970_DGroup_First { bits<1> PPC970_First = 1; }
41 class PPC970_DGroup_Single { bits<1> PPC970_Single = 1; }
42 class PPC970_DGroup_Cracked { bits<1> PPC970_Cracked = 1; }
45 class PPC970_Unit_Pseudo { bits<3> PPC970_Unit = 0;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
RC2Parameters.java 9 private int bits; field in class:RC2Parameters
19 int bits)
22 this.bits = bits;
34 return bits;
  /frameworks/compile/libbcc/runtime/lib/
popcountti2.c 19 /* Returns: count of 1 bits */
27 /* Every 2 bits holds the sum of every pair of bits (64) */
30 /* Every 4 bits holds the sum of every 4-set of bits (3 significant bits) (32) */
33 /* Every 8 bits holds the sum of every 8-set of bits (4 significant bits) (16) */
35 /* Every 8 bits holds the sum of every 8-set of bits (5 significant bits) (8) *
    [all...]
  /external/giflib/
gif_hash.h 35 #define HT_SIZE 8192 /* 12bits = 4096 or twice as big! */
36 #define HT_KEY_MASK 0x1FFF /* 13bits keys */
37 #define HT_KEY_NUM_BITS 13 /* 13bits keys */
38 #define HT_MAX_KEY 8191 /* 13bits - 1, maximal code possible */
39 #define HT_MAX_CODE 4095 /* Biggest code possible in 12 bits. */
41 /* The 32 bits of the long are divided into two parts for the key & code: */
42 /* 1. The code is 12 bits as our compression algorithm is limited to 12bits */
43 /* 2. The key is 12 bits Prefix code + 8 bit new char or 20 bits. *
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
string 40 #include <bits/c++config.h>
41 #include <bits/stringfwd.h>
42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h
43 #include <bits/allocator.h>
44 #include <bits/cpp_type_traits.h>
45 #include <bits/localefwd.h> // For operators >>, <<, and getline.
46 #include <bits/ostream_insert.h>
47 #include <bits/stl_iterator_base_types.h>
48 #include <bits/stl_iterator_base_funcs.h>
49 #include <bits/stl_iterator.h
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/
string 40 #include <bits/c++config.h>
41 #include <bits/stringfwd.h>
42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h
43 #include <bits/allocator.h>
44 #include <bits/cpp_type_traits.h>
45 #include <bits/localefwd.h> // For operators >>, <<, and getline.
46 #include <bits/ostream_insert.h>
47 #include <bits/stl_iterator_base_types.h>
48 #include <bits/stl_iterator_base_funcs.h>
49 #include <bits/stl_iterator.h
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/
string 40 #include <bits/c++config.h>
41 #include <bits/stringfwd.h>
42 #include <bits/char_traits.h> // NB: In turn includes stl_algobase.h
43 #include <bits/allocator.h>
44 #include <bits/cpp_type_traits.h>
45 #include <bits/localefwd.h> // For operators >>, <<, and getline.
46 #include <bits/ostream_insert.h>
47 #include <bits/stl_iterator_base_types.h>
48 #include <bits/stl_iterator_base_funcs.h>
49 #include <bits/stl_iterator.h
    [all...]

Completed in 1020 milliseconds

1 2 3 4 5 6 7 8 91011>>