HomeSort by relevance Sort by last modified time
    Searched refs:Bits (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /external/llvm/include/llvm/ADT/
SmallBitVector.h 25 /// pointer-sized field, which is directly used as a plain collection of bits
33 // pointer to memory containing size, allocation size, and the array of bits.
37 // The number of bits in this class.
41 // remaining bits are used for the small-mode representation.
44 // A few more bits are used to store the size of the bit set in small mode.
45 // Theoretically this is a ceil-log2. These bits are encoded in the most
46 // significant bits of the raw bits.
51 // The remaining bits are used to store the actual set in small mode.
103 // Return all the bits used for the "small" representation; this include
    [all...]
  /external/elfutils/libelf/
elf_getdata.c 104 # define TYPE_ALIGNS(Bits) \
106 [ELF_T_ADDR] = __alignof__ (ElfW2(Bits,Addr)), \
107 [ELF_T_HALF] = __alignof__ (ElfW2(Bits,Half)), \
108 [ELF_T_WORD] = __alignof__ (ElfW2(Bits,Word)), \
109 [ELF_T_SYM] = __alignof__ (ElfW2(Bits,Sym)), \
110 [ELF_T_SYMINFO] = __alignof__ (ElfW2(Bits,Syminfo)), \
111 [ELF_T_REL] = __alignof__ (ElfW2(Bits,Rel)), \
112 [ELF_T_RELA] = __alignof__ (ElfW2(Bits,Rela)), \
113 [ELF_T_DYN] = __alignof__ (ElfW2(Bits,Dyn)), \
114 [ELF_T_VDEF] = __alignof__ (ElfW2(Bits,Verdef)),
    [all...]
  /external/v8/src/mips/
constants-mips.h 171 // On MIPS all instructions are 32 bits.
602 // Get the raw instruction bits.
607 // Set the raw instruction bits to value.
612 // Read one particular bit out of the instruction bits.
617 // Read a bit field out of the instruction bits.
618 inline int Bits(int hi, int lo) const {
637 Bits(kOpcodeShift + kOpcodeBits - 1, kOpcodeShift));
643 return Bits(kRsShift + kRsBits - 1, kRsShift);
649 return Bits(kRtShift + kRtBits - 1, kRtShift);
654 return Bits(kRdShift + kRdBits - 1, kRdShift)
    [all...]
  /external/v8/src/arm/
constants-arm.cc 45 // where B = ~b. Only the high 16 bits are affected.
47 high16 = (Bits(17, 16) << 4) | Bits(3, 0); // xxxxxxxx,xxcdefgh.
disasm-arm.cc 257 int shift = instr->Bits(11, 7);
262 instr->Bits(11, 7));
454 uint32_t lsbit = instr->Bits(11, 7);
455 uint32_t width = instr->Bits(20, 16) + 1;
458 // Bits 20-16 represent most-significant bit. Covert to width.
475 case 'i': { // 'i: immediate value from adjacent bits.
486 instr->Bits(width + lsb - 1, lsb));
506 if ((instr->Bits(27, 25) == 0) && (instr->Bit(20) == 0) &&
507 (instr->Bits(7, 6) == 3) && (instr->Bit(4) == 1)) {
535 // 'off0to3and8to19 16-bit immediate encoded in bits 19-8 and 3-0
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 300 // For float, there are 8 exponent bits and 23 fraction bits.
302 // For double, there are 11 exponent bits and 52 fraction bits.
315 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
319 // # of bits in a number.
322 // # of fraction bits in a number.
326 // # of exponent bits in a number.
330 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
380 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 306 // For float, there are 8 exponent bits and 23 fraction bits.
308 // For double, there are 11 exponent bits and 52 fraction bits.
321 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
325 // # of bits in a number.
328 // # of fraction bits in a number.
332 // # of exponent bits in a number.
336 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
386 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 326 // For float, there are 8 exponent bits and 23 fraction bits.
328 // For double, there are 11 exponent bits and 52 fraction bits.
341 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
345 // # of bits in a number.
348 // # of fraction bits in a number.
352 // # of exponent bits in a number.
356 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
406 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 22 public final class Bits {
26 private Bits() {
31 * Constructs a bit set to contain bits up to the given index (exclusive).
44 * @param bits {@code non-null;} bit set in question
47 public static int getMax(int[] bits) {
48 return bits.length * 0x20;
54 * @param bits {@code non-null;} bit set to operate on
58 public static boolean get(int[] bits, int idx) {
61 return (bits[arrayIdx] & bit) != 0;
67 * @param bits {@code non-null;} bit set to operate o
    [all...]
ListIntSet.java 90 for (int i = 0; i >= 0; i = Bits.findFirst(o.bits, i + 1)) {
  /dalvik/dx/src/com/android/dx/util/
Bits.java 22 public final class Bits {
26 private Bits() {
31 * Constructs a bit set to contain bits up to the given index (exclusive).
44 * @param bits {@code non-null;} bit set in question
47 public static int getMax(int[] bits) {
48 return bits.length * 0x20;
54 * @param bits {@code non-null;} bit set to operate on
58 public static boolean get(int[] bits, int idx) {
61 return (bits[arrayIdx] & bit) != 0;
67 * @param bits {@code non-null;} bit set to operate o
    [all...]
ListIntSet.java 90 for (int i = 0; i >= 0; i = Bits.findFirst(o.bits, i + 1)) {
  /external/dexmaker/src/dx/java/com/android/dx/util/
Bits.java 22 public final class Bits {
26 private Bits() {
31 * Constructs a bit set to contain bits up to the given index (exclusive).
44 * @param bits {@code non-null;} bit set in question
47 public static int getMax(int[] bits) {
48 return bits.length * 0x20;
54 * @param bits {@code non-null;} bit set to operate on
58 public static boolean get(int[] bits, int idx) {
61 return (bits[arrayIdx] & bit) != 0;
67 * @param bits {@code non-null;} bit set to operate o
    [all...]
ListIntSet.java 90 for (int i = 0; i >= 0; i = Bits.findFirst(o.bits, i + 1)) {
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 86 /// bits.
87 uint64_t ToggleFeature(uint64_t Bits, const StringRef String,
91 /// Get feature bits of a CPU.
  /external/clang/include/clang/AST/
TemplateName.h 57 } Bits;
63 Bits.Kind = kind;
64 Bits.Size = size;
68 unsigned size() const { return Bits.Size; }
71 return Bits.Kind == Overloaded
77 return Bits.Kind == SubstTemplateTemplateParm
83 return Bits.Kind == SubstTemplateTemplateParmPack
552 // No bits are available!
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopTranslator.java 39 import com.android.dexgen.util.Bits;
308 int[] workSet = Bits.makeBitSet(maxLabel);
309 int[] tracebackSet = Bits.makeBitSet(maxLabel);
313 Bits.set(workSet, one.getLabel());
331 label = Bits.findFirst(workSet, 0)) {
351 if (Bits.get(tracebackSet, predLabel)) {
359 if (!Bits.get(workSet, predLabel)) {
368 Bits.set(tracebackSet, label);
383 Bits.clear(workSet, label);
384 Bits.clear(tracebackSet, label)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopTranslator.java 40 import com.android.dx.util.Bits;
315 int[] workSet = Bits.makeBitSet(maxLabel);
316 int[] tracebackSet = Bits.makeBitSet(maxLabel);
320 Bits.set(workSet, one.getLabel());
338 label = Bits.findFirst(workSet, 0)) {
358 if (Bits.get(tracebackSet, predLabel)) {
366 if (!Bits.get(workSet, predLabel)) {
375 Bits.set(tracebackSet, label);
390 Bits.clear(workSet, label);
391 Bits.clear(tracebackSet, label)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopTranslator.java 40 import com.android.dx.util.Bits;
315 int[] workSet = Bits.makeBitSet(maxLabel);
316 int[] tracebackSet = Bits.makeBitSet(maxLabel);
320 Bits.set(workSet, one.getLabel());
338 label = Bits.findFirst(workSet, 0)) {
358 if (Bits.get(tracebackSet, predLabel)) {
366 if (!Bits.get(workSet, predLabel)) {
375 Bits.set(tracebackSet, label);
390 Bits.clear(workSet, label);
391 Bits.clear(tracebackSet, label)
    [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 25 /// Hi_32 - This function returns the high 32 bits of a 64 bit value.
30 /// Lo_32 - This function returns the low 32 bits of a 64 bit value.
221 // if some bits in hi portion
223 // leading zeros in hi portion plus all bits in lo portion
296 /// CountPopulation_32 - this function counts the number of set bits in a value.
309 /// CountPopulation_64 - this function counts the number of set bits in a value,
361 inline double BitsToDouble(uint64_t Bits) {
366 T.L = Bits;
372 inline float BitsToFloat(uint32_t Bits) {
377 T.I = Bits;
    [all...]
  /external/skia/include/effects/
SkLayerDrawLooper.h 22 * Bits specifies which aspects of the layer's paint should replace the
28 enum Bits {
  /external/webkit/Source/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp 40 uint8* destination = reinterpret_cast<uint8*>(bitmap->Bits());
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 61 /// unknown offset bits. This does not include alignment padding caused by
62 /// known offset bits.
65 /// @param KnownBits Number of known low offset bits.
72 /// WorstCaseAlign - Assuming only the low KnownBits bits in Offset are exact,
77 /// 2. No other value of the unknown bits would require more padding.
86 // Add the worst possible padding that the unknown bits could cause.
122 /// KnownBits - The number of low bits in Offset that are known to be
123 /// exact. The remaining bits of Offset are an upper bound.
139 /// Compute the number of known offset bits internally to this block.
158 /// Compute the number of known low bits of postOffset. If this bloc
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 289 /// NumBits - The total size in bits of all of these blocks.
465 static void PrintSize(double Bits) {
466 fprintf(stderr, "%.2f/%.2fB/%luW", Bits, Bits/8,(unsigned long)(Bits/32));
468 static void PrintSize(uint64_t Bits) {
469 fprintf(stderr, "%lub/%.2fB/%luW", (unsigned long)Bits,
470 (double)Bits/8, (unsigned long)(Bits/32));
591 fprintf(stderr, "\t\t Count # Bits %% Abv Record Kind\n")
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageHaiku.cpp 133 uint8* bits = reinterpret_cast<uint8*>(image->Bits()); local
139 uint8* p = bits;
144 bits += bytesPerRow;
185 uint8* bits = reinterpret_cast<uint8*>(image->Bits()); local
186 m_solidColor = Color(bits[2], bits[1], bits[0], bits[3])
    [all...]

Completed in 860 milliseconds

12 3 4 5