HomeSort by relevance Sort by last modified time
    Searched refs:bits (Results 101 - 125 of 4238) sorted by null

1 2 3 45 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/bfd/
cpu-s390.c 26 #define N(bits, number, print, is_default, next) \
28 bits, /* bits in a word */ \
29 bits, /* bits in an address */ \
30 8, /* bits in a byte */ \
  /bionic/libc/include/sys/
auxv.h 34 #include <bits/auxvec.h>
syscall.h 33 #include <bits/glibc-syscalls.h> /* glibc-compatible SYS_* aliases. */
un.h 32 #include <bits/sa_family_t.h>
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabsl.c 41 u.bits.sign = 0;
  /external/libese/libese-hw/nxp/include/ese/hw/nxp/pn80t/boards/
hikey-spidev.h 28 .bits = 8,
  /external/syslinux/com32/libutil/
unbase64.c 42 unsigned int bits = 0; local
62 bits <<= 6;
63 bits += v;
67 *buffer++ = (bits >> (nbits - 8));
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
bits2prm.h 40 * : the received serial bits in a frame.
76 * the received serial bits in a frame.
83 Word16 bits[], /* input : serial bits, (244 + bfi) */
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.h 40 * : vector of serial bits.
74 Word16 bits[] /* output: serial bits */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
xtitypes.h 0 /* bits/xtitypes.h -- Define some types used by <bits/stropts.h>. Generic.
21 # error "Never include <bits/xtitypes.h> directly; use <stropts.h> instead."
27 #include <bits/types.h>
29 /* This type is used by some structs in <bits/stropts.h>. */
34 #endif /* bits/xtitypes.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/net/
if_packet.h 24 #include <bits/sockaddr.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netatalk/
at.h 24 #include <bits/sockaddr.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
semaphore.h 21 # error "Never use <bits/semaphore.h> directly; include <semaphore.h> instead."
24 #include <bits/wordsize.h>
setjmp.h 24 # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
27 #include <bits/wordsize.h>
39 #endif /* bits/setjmp.h */
xtitypes.h 0 /* bits/xtitypes.h -- Define some types used by <bits/stropts.h>. x86-64.
21 # error "Never include <bits/xtitypes.h> directly; use <stropts.h> instead."
27 #include <bits/types.h>
29 /* This type is used by some structs in <bits/stropts.h>. */
34 #endif /* bits/xtitypes.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
tgmath.h 29 #include <bits/c++config.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
c++io.h 25 /** @file bits/c++io.h
36 #include <bits/gthr.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
c++io.h 25 /** @file bits/c++io.h
36 #include <bits/gthr.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
tgmath.h 29 #include <bits/c++config.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
c++io.h 25 /** @file bits/c++io.h
36 #include <bits/gthr.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
c++io.h 25 /** @file bits/c++io.h
36 #include <bits/gthr.h>
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nds32/
to-16bit-v2.d 5 # Test the convert 32bits to 16bits
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 75 private static final int[] BITS = {BIT_0, BIT_1, BIT_2, BIT_3, BIT_4, BIT_5, BIT_6, BIT_7};
182 for (int bits = 0; bits < BITS.length; ++bits) {
183 if (ascii[jj - bits] == '1') {
184 l_raw[ii] |= BITS[bits];
209 for (int bits = 0; bits < BITS.length; ++bits)
    [all...]
  /external/tensorflow/tensorflow/core/lib/core/
bitmap_test.cc 39 Bitmap bits(n);
41 EXPECT_FALSE(bits.get(i)) << n << " " << i << " " << bits.ToString();
42 bits.set(i);
43 EXPECT_TRUE(bits.get(i)) << n << " " << i << " " << bits.ToString();
44 bits.clear(i);
45 EXPECT_FALSE(bits.get(i)) << n << " " << i << " " << bits.ToString();
51 Bitmap bits(10)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
AMPEG4AudioAssembler.cpp 99 ABitReader *bits, unsigned *audioObjectType) {
100 *audioObjectType = bits->getBits(5);
102 *audioObjectType = 32 + bits->getBits(6);
109 ABitReader *bits,
111 unsigned frameLengthFlag __unused = bits->getBits(1);
112 unsigned dependsOnCoreCoder = bits->getBits(1);
114 /* unsigned coreCoderDelay = */bits->getBits(1);
116 unsigned extensionFlag = bits->getBits(1);
124 /* unsigned layerNr = */bits->getBits(3);
129 /* unsigned numOfSubFrame = */bits->getBits(5)
    [all...]

Completed in 590 milliseconds

1 2 3 45 6 7 8 91011>>