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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/tests/
endcomma.asm 0 [bits 32]
alignnop16.asm 0 bits 16
1 bits 16 label
alignnop32.asm 0 bits 32
1 bits 32 label
  /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/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
lsahf.asm 0 [bits 16]
4 [bits 32]
7 [bits 64]
str.asm 0 [bits 32]
3 [bits 16]
simd64-1.asm 0 [bits 64]
farbasic.asm 3 [bits 32]
9 [bits 16]
bswap64.asm 0 [bits 64]
o64loop.asm 0 [bits 64]
iret.asm 0 [bits 16]
5 [bits 32]
9 [bits 64]
stos.asm 0 [bits 16]
5 [bits 32]
9 [bits 64]
  /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...]
CstLiteralBits.java 36 * Gets the value as {@code int} bits. If this instance contains
37 * more bits than fit in an {@code int}, then this returns only
38 * the low-order bits.
40 * @return the bits
45 * Gets the value as {@code long} bits. If this instance contains
46 * fewer bits than fit in a {@code long}, then the result of this
49 * @return the bits
54 * Returns true if this value can fit in 16 bits with sign-extension.
56 * @return true if the sign-extended lower 16 bits are the same as
64 int bits = getIntBits() local
79 int bits = getIntBits(); local
    [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...]
CstLiteralBits.java 36 * Gets the value as {@code int} bits. If this instance contains
37 * more bits than fit in an {@code int}, then this returns only
38 * the low-order bits.
40 * @return the bits
45 * Gets the value as {@code long} bits. If this instance contains
46 * fewer bits than fit in a {@code long}, then the result of this
49 * @return the bits
54 * Returns true if this value can fit in 16 bits with sign-extension.
56 * @return true if the sign-extended lower 16 bits are the same as
64 int bits = getIntBits() local
79 int bits = getIntBits(); local
    [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...]
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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
charconst64.asm 0 [bits 64]
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
basic_iterator.h 36 #include <bits/c++config.h>
38 #include <bits/stl_iterator_base_types.h>
39 #include <bits/stl_iterator_base_funcs.h>
40 #include <bits/stl_iterator.h>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
basic_iterator.h 36 #include <bits/c++config.h>
37 #include <bits/stl_iterator_base_types.h>
38 #include <bits/stl_iterator_base_funcs.h>
39 #include <bits/stl_iterator.h>
  /external/clang/utils/ABITest/
build-and-summarize-all.sh 10 for bits in 32 64; do
12 echo "-- $kind-$bits --"
13 (cd $kind-$bits && ../build-and-summarize.sh $1)

Completed in 1333 milliseconds

1 2 3 4 5 6 7 8 91011>>