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

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
mms-bitfields.c 1 // RUN: %clang_cc1 -triple i386-apple-darwin10 -mms-bitfields -emit-llvm %s -o - | FileCheck %s
struct-x86-darwin.c 17 // Bitfields
bitfield-2.c 16 // CHECK-RECORD: BitFields:[
61 // CHECK-RECORD: BitFields:[
118 // CHECK-RECORD: BitFields:[
293 // CHECK-RECORD: BitFields:[
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 3 struct Bitfields {
8 void test_Bitfields(Bitfields<0, 5> *b) {
9 (void)sizeof(Bitfields<10, 5>);
10 (void)sizeof(Bitfields<0, 1>); // expected-note{{in instantiation of template class 'Bitfields<0, 1>' requested here}}
  /external/clang/test/SemaCXX/
offsetof.cpp 32 // Bitfields
overload-call.cpp 121 int* bitfields(int, int);
122 float* bitfields(unsigned int, int);
125 int* ip = bitfields(bits.int_bitfield, 0);
126 float* fp = bitfields(bits.uint_bitfield, 0u);
  /external/clang/test/Sema/
offsetof.c 58 // Bitfields
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
3dfx_regs.h 63 /* register bitfields (not all, only as needed) */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cramfs_fs.h 11 * Width of various bitfields in struct cramfs_inode.
mtio.h 168 /* Bitfields for the MTSETDRVBUFFER ioctl */
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 61 llvm::DenseMap<const FieldDecl *, CGBitFieldInfo> BitFields;
220 BitFields.clear();
410 BitFields.insert(std::make_pair(D,
509 BitFields.insert(std::make_pair(Field,
765 // Zero-length bitfields following non-bitfield members are
    [all...]
CGRecordLayout.h 192 llvm::DenseMap<const FieldDecl *, CGBitFieldInfo> BitFields;
269 it = BitFields.find(FD);
270 assert(it != BitFields.end() && "Unable to find bitfield info");
README.txt 14 Bitfields accesses can be shifted to simplify masking and sign
  /external/dbus/cmake/
cross-compile.sh 52 CFLAGS="${MINGW32_CFLAGS:--O2 -g -pipe -Wall -fexceptions -fno-omit-frame-pointer -fno-optimize-sibling-calls --param=ssp-buffer-size=4 -mms-bitfields}"; export CFLAGS;
57 CXXFLAGS="${MINGW32_CXXFLAGS:--O2 -g -pipe -Wall -fexceptions -fno-omit-frame-pointer -fno-optimize-sibling-calls --param=ssp-buffer-size=4 -mms-bitfields}"; export CXXFLAGS;
  /external/ppp/pppd/plugins/rp-pppoe/
config.h 134 /* Define if bitfields are packed in reverse order */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xmd.h 110 * need them. Note that bitfields are not guaranteed to be signed
172 * definitions for sign-extending bitfields on 64-bit architectures
  /external/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageReader.cpp 247 // the compression format isn't BITFIELDS, these values will be ignored and
317 case BITFIELDS:
349 // Top-down bitmaps cannot be compressed; they must be RGB or BITFIELDS.
350 if (m_isTopDown && (m_infoHeader.biCompression != RGB) && (m_infoHeader.biCompression != BITFIELDS))
378 if (m_infoHeader.biCompression != BITFIELDS) {
382 // supposed to be ignored in non-BITFIELDS cases.
396 // For Windows V4+ BITFIELDS mode bitmaps, this was already done when
BMPImageReader.h 88 BITFIELDS = 3,
322 // We need to right shift to compensate for the bitfields' offsets into
  /external/libpng/scripts/
makefile.cegcc 67 cd $(PACKAGE) && CPPFLAGS="$(CPPFLAGS) -DPNG_BUILD_DLL -DPNG_CONSOLE_IO_SUPPORTED -DPNG_NO_MMX_CODE -D_WIN32_WCE=0x0420" CFLAGS="$(CFLAGS) -mms-bitfields -O3 -pipe -fomit-frame-pointer" LDFLAGS="$(LDFLAGS) -Wl,--enable-auto-import -Wl,-s" ./configure --prefix=/opt/wince --host=arm-mingw32ce && make
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 161 // bitfields above.
  /external/clang/utils/ABITest/
ABITestGen.py 463 group.add_option("", "--bit-fields", dest="bitFields",
509 bitfields = []
510 for specifier in opts.bitFields.split(','):
514 bitfields.append(BuiltinType(name,None,int(width)))
515 bftg = FixedTypeGenerator(bitfields)
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 118 // (d) are unnamed bitfields
  /external/harfbuzz/src/
harfbuzz-shaper.h 42 using anything else than signed or unsigned for bitfields in C is non standard,
  /external/llvm/include/llvm/Analysis/
InlineCost.h 59 // We used to use bitfields, but they were sometimes miscompiled (PR3822).
  /ndk/sources/host-tools/make-3.81/
variable.h 48 #define EXP_COUNT_BITS 15 /* This gets all the bitfields into 32 bits */

Completed in 1130 milliseconds

1 2 3 4 5 6 7 8 910