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

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/backends/
ppc64_corenote.c 1 #define BITS 64
sparc64_corenote.c 1 #define BITS 64
  /external/dropbear/libtommath/etc/
2kprime.1 1 256-bits (k = 36113) = 115792089237316195423570985008687907853269984665640564039457584007913129603823
2 512-bits (k = 38117) = 13407807929942597099574024998205846127479365820592393377723561443721764030073546976801874298166903427690031858186486050853753882811946569946433649006045979
  /external/elfutils/tests/
run-allregs.sh 39 0: %eax (eax), signed 32 bits
40 1: %ecx (ecx), signed 32 bits
41 2: %edx (edx), signed 32 bits
42 3: %ebx (ebx), signed 32 bits
43 4: %esp (esp), address 32 bits
44 5: %ebp (ebp), address 32 bits
45 6: %esi (esi), signed 32 bits
46 7: %edi (edi), signed 32 bits
47 8: %eip (eip), address 32 bits
48 9: %eflags (eflags), unsigned 32 bits
    [all...]
  /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/junit-tests/com/android/dx/util/
BitsTest.java 23 assertEquals(label(0), 0, Bits.makeBitSet(0).length);
26 assertEquals(label(i), 1, Bits.makeBitSet(i).length);
30 assertEquals(label(i), 2, Bits.makeBitSet(i).length);
38 assertEquals(label(i), expect, Bits.makeBitSet(i).length);
49 Bits.getMax(new int[expect]));
54 int[] bits = Bits.makeBitSet(100); local
57 assertFalse(label(i), Bits.get(bits, i));
62 int[] bits = Bits.makeBitSet(100) local
73 int[] bits = Bits.makeBitSet(100); local
86 int[] bits = Bits.makeBitSet(50); local
103 int[] bits = Bits.makeBitSet(100); local
131 int[] bits = Bits.makeBitSet(100); local
146 int[] bits = Bits.makeBitSet(100); local
171 int[] bits = Bits.makeBitSet(i); local
190 int[] bits = Bits.makeBitSet(i); local
213 int[] bits = new int[100]; local
221 int[] bits = new int[100]; local
229 int[] bits = new int[100]; local
237 int[] bits = new int[100]; local
248 int[] bits = new int[100]; local
259 int[] bits = new int[100]; local
270 int[] bits = new int[100]; local
278 int[] bits = new int[100]; local
289 int[] bits = new int[100]; local
    [all...]
  /external/llvm/test/TableGen/
2010-03-24-PrematureDefaults.td 3 class A<int k, bits<2> x = 1> {
5 bits<2> Bits = x;
9 // CHECK: Bits = { 0, 1 }
13 // CHECK: Bits = { 1, 0 }
16 // Here was the bug: X.Bits would get resolved to the default a1.Bits while
18 // was processed, X would be set correctly, but Bits retained the default
22 bits<2> Bits = X.Bits
    [all...]
list-element-bitref.td 3 class C<list<bits<8>> L> {
4 bits<2> V0 = L[0]{1-0};
5 bits<2> V1 = L[1]{3-2};
12 // CHECK-NEXT: bits<2> V0 = { 0, 1 };
13 // CHECK-NEXT: bits<2> V1 = { 1, 0 };
UnsetBitInit.td 4 field bits<32> A;
7 class y<bits<2> B> : x {
pr8330.td 3 class Or4<bits<8> Val> {
4 bits<8> V = {Val{7}, Val{6}, Val{5}, Val{4}, Val{3}, 1, Val{1}, Val{0} };
7 class Whatev<bits<8> x>;
9 class Whatever<bits<8> x> {
10 bits<8> W = {x{0}, x{1}, x{2}, x{3}, x{4}, x{5}, x{6}, x{7} };
13 multiclass X<bits<8> BaseOpc> {
17 multiclass Y<bits<8> BaseOpc> {
28 // CHECK-NEXT: bits<8> W = { 0, 0, 1, 1, 0, 0, 0, 0 };
  /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/dexmaker/src/dx/java/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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs8403.h 39 SND_CS8403_DECL void SND_CS8403_DECODE(struct snd_aes_iec958 *diga, unsigned char bits)
41 if (bits & 0x01) { /* consumer */
42 if (!(bits & 0x02))
44 if (!(bits & 0x08))
46 switch (bits & 0x10) {
50 if (!(bits & 0x80))
52 switch (bits & 0x60) {
58 switch (bits & 0x06) {
65 switch (bits & 0x18) {
71 switch (bits & 0x60)
84 unsigned char bits; local
210 unsigned char bits; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs8403.h 39 SND_CS8403_DECL void SND_CS8403_DECODE(struct snd_aes_iec958 *diga, unsigned char bits)
41 if (bits & 0x01) { /* consumer */
42 if (!(bits & 0x02))
44 if (!(bits & 0x08))
46 switch (bits & 0x10) {
50 if (!(bits & 0x80))
52 switch (bits & 0x60) {
58 switch (bits & 0x06) {
65 switch (bits & 0x18) {
71 switch (bits & 0x60)
84 unsigned char bits; local
210 unsigned char bits; local
    [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...]
  /external/dexmaker/src/dx/java/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...]
  /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/skia/tools/tests/skdiff/identical-bits/output-expected/
command_line 1 out/Debug/skdiff --nodiffs --match identical-bits tools/tests/skdiff/baseDir tools/tests/skdiff/comparisonDir tools/tests/skdiff/identical-bits/output-actual
  /external/skia/tools/tests/skdiff/identical-bits-or-pixels/output-expected/
command_line 1 out/Debug/skdiff --nodiffs --match identical-bits --match identical-pixels tools/tests/skdiff/baseDir tools/tests/skdiff/comparisonDir tools/tests/skdiff/identical-bits-or-pixels/output-actual
  /ndk/sources/host-tools/sed-4.2.1/lib/
stat-macros.h 1 /* All the mode bits that can be affected by chmod. */
  /external/clang/test/Analysis/
fields.c 45 struct Bits {
62 struct Bits bits; local
64 if (foo() && bits.b) // expected-warning {{garbage}}
66 if (foo() && bits.inner.e) // expected-warning {{garbage}}
69 bits.c = 1;
70 clang_analyzer_eval(bits.c == 1); // expected-warning {{TRUE}}
72 if (foo() && bits.b) // expected-warning {{garbage}}
74 if (foo() && bits.x) // expected-warning {{garbage}}
77 bits.x = true
121 struct Bits bits; local
    [all...]

Completed in 1070 milliseconds

1 2 3 4 5 6 7 8 91011>>