/external/llvm/include/llvm/DebugInfo/PDB/ |
PDBTypes.h | 212 BitField, 250 Bitfield = 29,
|
/external/llvm/lib/Target/Hexagon/ |
HexagonIntrinsicsV4.td | 139 // Extract bitfield 200 // Split bitfield
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_tgsi_emit.h | 271 /* check values against bitfield sizes */ 304 /* check values against bitfield sizes */
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_helpers.h | 152 // Gets the name of the shared bitfield for the given field index. 155 // Gets the name of the shared bitfield for the given bit index.
|
/external/v8/src/profiler/ |
profile-generator.h | 147 class TagField : public BitField<Logger::LogEventsAndTags, 0, 8> {}; 148 class BuiltinIdField : public BitField<Builtins::Name, 8, 24> {};
|
/external/valgrind/VEX/useful/ |
x87_to_vex_and_back.c | 167 /* Bitfield offsets for exceptions in the FPU status and control words. */ 175 /* More bitfield offsets, but for the status word only. */
|
/external/vixl/src/aarch64/ |
decoder-aarch64.h | 44 V(Bitfield) \ 237 // Decode the bitfield and extraction parts of the instruction tree,
|
/hardware/interfaces/gnss/1.0/ |
IGnssCallback.hal | 136 bitfield<GnssSvFlags> svFlag; 204 gnssSetCapabilitesCb(bitfield<Capabilities> capabilities);
|
/development/ndk/platforms/android-24/include/SLES/ |
OpenSLES_Android.h | 62 // Make an indexed channel mask from a bitfield. 64 // Each bit in the bitfield corresponds to a channel index, 67 // A '1' in the bitfield indicates that the channel should be 69 // should be excluded. For instance, a bitfield of 0x0A (binary 00001010) 73 #define SL_ANDROID_MAKE_INDEXED_CHANNEL_MASK(bitfield) \ 74 ((bitfield) | SL_ANDROID_SPEAKER_NON_POSITIONAL)
|
/external/mesa3d/include/CL/ |
cl.h | 166 /* cl_device_type - bitfield */ 237 /* cl_device_fp_config - bitfield */ 255 /* cl_device_exec_capabilities - bitfield */ 259 /* cl_command_queue_properties - bitfield */ 278 /* cl_mem_flags - bitfield */ 361 /* cl_map_flags - bitfield */ [all...] |
/external/v8/src/arm/ |
constants-arm.h | 493 inline int BitField(int hi, int lo) const { 512 static inline int BitField(Instr instr, int hi, int lo) { 532 return static_cast<Condition>(BitField(31, 28)); 580 return static_cast<Opcode>(BitField(24, 21)); 588 return static_cast<ShiftOp>(BitField(6, 5)); 605 inline int PUField() const { return BitField(24, 23); }
|
/frameworks/wilhelm/include/SLES/ |
OpenSLES_Android.h | 60 // Make an indexed channel mask from a bitfield. 62 // Each bit in the bitfield corresponds to a channel index, 65 // A '1' in the bitfield indicates that the channel should be 67 // should be excluded. For instance, a bitfield of 0x0A (binary 00001010) 71 #define SL_ANDROID_MAKE_INDEXED_CHANNEL_MASK(bitfield) \ 72 ((bitfield) | SL_ANDROID_SPEAKER_NON_POSITIONAL)
|
/toolchain/binutils/binutils-2.25/opcodes/ |
i386-opc.h | 199 /* The last bitfield in i386_cpu_flags. */ 213 of bitfield. */ 303 } bitfield; member in union:i386_cpu_flags 540 /* The last bitfield in i386_opcode_modifier. */ 729 /* The last bitfield in i386_operand_type. */ 799 } bitfield; member in union:i386_operand_type
|
arm-dis.c | 103 %<bitfield>c print as a condition code (for vsel) 104 %<bitfield>r print as an ARM register 105 %<bitfield>R as %<>r but r15 is UNPREDICTABLE 106 %<bitfield>ru as %<>r but each u register must be unique. 107 %<bitfield>d print the bitfield in decimal 108 %<bitfield>k print immediate for VFPv3 conversion instruction 109 %<bitfield>x print the bitfield in hex 110 %<bitfield>X print the bitfield as 1 hex digit without leading "0x [all...] |
/external/v8/src/crankshaft/ |
hydrogen-instructions.h | [all...] |
/external/aac/libAACdec/src/ |
aacdec_hcrs.cpp | 88 bitfield-handling, HCR-Statemachine 266 } /* end of bitfield word loop */ 273 /* rotation of *numSegment bits in bitfield of codewords (circle-rotation) */ 315 description: This function prepares the bitfield used for the 317 segment is decoded empty, the according bit from the Bitfield is removed. 469 description: This function clears a bit from current bitfield and 473 a) a codeword is decoded, then a bit is cleared in codeword bitfield 474 b) a segment is decoded empty, then a bit is cleared in segment bitfield 487 /* clear a bit in bitfield */ 582 pCodewordBitfield); /* clear a bit in bitfield and switch off statemachine * [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
getargs.c | 632 case 'B': {/* byte sized bitfield - both signed and unsigned
669 case 'H': { /* short int sized bitfield, both signed and
706 case 'I': { /* int sized bitfield, both signed and
748 case 'k': { /* long sized bitfield */
776 case 'K': { /* long long sized bitfield */
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
getargs.c | 632 case 'B': {/* byte sized bitfield - both signed and unsigned
669 case 'H': { /* short int sized bitfield, both signed and
706 case 'I': { /* int sized bitfield, both signed and
748 case 'k': { /* long sized bitfield */
776 case 'K': { /* long long sized bitfield */
[all...] |
/system/tools/hidl/test/ |
hidl_test_client.cpp | 478 .bf = IFoo::BitField::V0 | IFoo::BitField::V2 501 EXPECT_EQ(toString(IFoo::BitField::V0), "V0"s); 502 EXPECT_EQ(toString(static_cast<IFoo::BitField>(0)), "0"s) 504 EXPECT_EQ(toString(static_cast<IFoo::BitField>(IFoo::BitField::V0 | IFoo::BitField::V2)), "0x5"s) 507 EXPECT_EQ(toString<IFoo::BitField>(0 | IFoo::BitField::V0), "V0 (0x1)"s); 508 EXPECT_EQ(toString<IFoo::BitField>(0 | IFoo::BitField::V0 | IFoo::BitField::V2), "V0 | V2 (0x5)"s) [all...] |
/external/clang/include/clang/Basic/ |
TargetInfo.h | 206 /// the next bitfield. 208 /// If the alignment of the zero length bitfield is greater than the member 210 /// zero-length bitfield. 217 /// zero length bitfield, regardless of the zero length bitfield type. 493 /// a zero length bitfield. 498 /// \brief Check whether explicit bitfield alignment attributes should be [all...] |
/external/v8/src/parsing/ |
preparser.h | 373 typedef BitField<Type, 0, 3> TypeField; 380 typedef BitField<bool, 31, 1> ParenthesizedField; 384 typedef BitField<ExpressionType, TypeField::kNext, 3> ExpressionTypeField; 385 typedef BitField<bool, TypeField::kNext, 1> IsUseStrictField; 386 typedef BitField<bool, IsUseStrictField::kNext, 1> IsUseAsmField; 387 typedef BitField<PreParserIdentifier::Type, TypeField::kNext, 10> 389 typedef BitField<bool, TypeField::kNext, 1> HasCoverInitializedNameField; [all...] |
/external/skia/include/gpu/ |
GrTypes.h | 19 * bitfield. 57 * Wraps a C++11 enum that we use as a bitfield, and enables a limited amount of 104 * basic bitfield. 579 * Optional bitfield flags that can be set on GrSurfaceDesc (below). 636 GrSurfaceFlags fFlags; //!< bitfield of TextureFlags
|
/external/wpa_supplicant_8/wpa_supplicant/ |
config_ssid.h | 189 * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_* 194 * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_* 199 * key_mgmt - Bitfield of allowed key management protocols 212 * proto - Bitfield of allowed protocols, WPA_PROTO_* 217 * auth_alg - Bitfield of allowed authentication algorithms
|
/external/v8/src/ |
objects.h | [all...] |
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
scsimain.c | 5128 static void bitfield(unsigned char *pageaddr, char *text, int mask, int shift) function [all...] |