/prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/ |
field.go | 13 // Bits are counted from 0 from the MSB to 31 as the LSB. 16 Bits uint8 // length in bits. 20 if b.Bits > 1 { 21 return fmt.Sprintf("[%d:%d]", b.Offs, int(b.Offs+b.Bits)-1) 22 } else if b.Bits == 1 { 32 if b.Bits > 32 || b.Bits == 0 || b.Offs > 31 || b.Offs+b.Bits > 32 { 35 return (i >> (32 - b.Offs - b.Bits)) & ((1 << b.Bits) - 1 [all...] |
/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/ |
field.go | 13 // Bits are counted from 0 from the MSB to 31 as the LSB. 16 Bits uint8 // length in bits. 20 if b.Bits > 1 { 21 return fmt.Sprintf("[%d:%d]", b.Offs, int(b.Offs+b.Bits)-1) 22 } else if b.Bits == 1 { 32 if b.Bits > 32 || b.Bits == 0 || b.Offs > 31 || b.Offs+b.Bits > 32 { 35 return (i >> (32 - b.Offs - b.Bits)) & ((1 << b.Bits) - 1 [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
LRotU32.c | 26 Rotates a 32-bit integer left between 0 and 31 bits, filling the low bits
27 with the high bits that were rotated.
29 This function rotates the 32-bit value Operand to the left by Count bits. The
30 low Count bits are fill with the high Count bits of Operand. The rotated
36 @param Count The number of bits to rotate left.
|
LRotU64.c | 26 Rotates a 64-bit integer left between 0 and 63 bits, filling the low bits
27 with the high bits that were rotated.
29 This function rotates the 64-bit value Operand to the left by Count bits. The
30 low Count bits are fill with the high Count bits of Operand. The rotated
36 @param Count The number of bits to rotate left.
|
RRotU32.c | 26 Rotates a 32-bit integer right between 0 and 31 bits, filling the high bits
27 with the low bits that were rotated.
29 This function rotates the 32-bit value Operand to the right by Count bits.
30 The high Count bits are fill with the low Count bits of Operand. The rotated
36 @param Count The number of bits to rotate right.
|
RRotU64.c | 26 Rotates a 64-bit integer right between 0 and 63 bits, filling the high bits
27 with the high low bits that were rotated.
29 This function rotates the 64-bit value Operand to the right by Count bits.
30 The high Count bits are fill with the low Count bits of Operand. The rotated
36 @param Count The number of bits to rotate right.
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/ |
LRotU64.c | 19 Rotates a 64-bit integer left between 0 and 63 bits, filling
20 the low bits with the high bits that were rotated.
22 This function rotates the 64-bit value Operand to the left by Count bits. The
23 low Count bits are fill with the high Count bits of Operand. The rotated
27 @param Count The number of bits to rotate left.
|
RRotU64.c | 19 Rotates a 64-bit integer right between 0 and 63 bits, filling
20 the high bits with the high low bits that were rotated.
22 This function rotates the 64-bit value Operand to the right by Count bits.
23 The high Count bits are fill with the low Count bits of Operand. The rotated
27 @param Count The number of bits to rotate right.
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/ |
LRotU32.c | 18 Rotates a 32-bit integer left between 0 and 31 bits, filling the low bits
19 with the high bits that were rotated.
21 This function rotates the 32-bit value Operand to the left by Count bits. The
22 low Count bits are fill with the high Count bits of Operand. The rotated
28 @param Count The number of bits to rotate left.
|
LRotU64.c | 18 Rotates a 64-bit integer left between 0 and 63 bits, filling the low bits
19 with the high bits that were rotated.
21 This function rotates the 64-bit value Operand to the left by Count bits. The
22 low Count bits are fill with the high Count bits of Operand. The rotated
28 @param Count The number of bits to rotate left.
|
RRotU32.c | 18 Rotates a 32-bit integer right between 0 and 31 bits, filling the high bits
19 with the low bits that were rotated.
21 This function rotates the 32-bit value Operand to the right by Count bits.
22 The high Count bits are fill with the low Count bits of Operand. The rotated
28 @param Count The number of bits to rotate right.
|
RRotU64.c | 18 Rotates a 64-bit integer right between 0 and 63 bits, filling the high bits
19 with the high low bits that were rotated.
21 This function rotates the 64-bit value Operand to the right by Count bits.
22 The high Count bits are fill with the low Count bits of Operand. The rotated
28 @param Count The number of bits to rotate right.
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
kernel-area.cc | 9 // RUN: %env_asan_opts=verbosity=1:full_address_space=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-kernel-64-bits 11 // CHECK-kernel-32-bits: || `[0x38{{0+}}, 0xb{{f+}}]` || HighMem || 12 // CHECK-kernel-32-bits: || `[0x27{{0+}}, 0x37{{f+}}]` || HighShadow || 13 // CHECK-kernel-32-bits: || `[0x24{{0+}}, 0x26{{f+}}]` || ShadowGap || 15 // CHECK-kernel-64-bits: || `[0x4{{0+}}, 0x{{f+}}]` || HighMem || 16 // CHECK-kernel-64-bits: || `[0x28{{0+}}, 0x3{{f+}}]` || HighShadow || 17 // CHECK-kernel-64-bits: || `[0x24{{0+}}, 0x27{{f+}}]` || ShadowGap ||
|
/external/llvm/include/llvm/ADT/ |
PackedVector.h | 30 static T getValue(const BitVectorTy &Bits, unsigned Idx) { 33 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 37 static void setValue(BitVectorTy &Bits, unsigned Idx, T val) { 40 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i); 47 static T getValue(const BitVectorTy &Bits, unsigned Idx) { 50 val = T(val | ((Bits[(Idx << (BitNum-1)) + i] ? 1UL : 0UL) << i)); 51 if (Bits[(Idx << (BitNum-1)) + BitNum-1]) 56 static void setValue(BitVectorTy &Bits, unsigned Idx, T val) { 59 Bits.set((Idx << (BitNum-1)) + BitNum-1); 63 Bits[(Idx << (BitNum-1)) + i] = val & (T(1) << i) [all...] |
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
BitSet.pm | 14 # number of bits / long 15 Readonly my $BITS => 64; 16 sub BITS { return $BITS } 26 Readonly my $MOD_MASK => BITS - 1; 30 has 'bits' => ( 46 my $bits; 48 # Construct a bitset of size one word (64 bits) 49 $bits = '0' x BITS; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
regex | 35 # include <bits/c++0x_warning.h> 55 #include <bits/range_access.h> 56 #include <bits/regex_constants.h> 57 #include <bits/regex_error.h> 58 #include <bits/regex_cursor.h> 59 #include <bits/regex_nfa.h> 60 #include <bits/regex_compiler.h> 61 #include <bits/regex_grep_matcher.h> 62 #include <bits/regex.h>
|
unordered_map | 35 # include <bits/c++0x_warning.h> 42 #include <bits/stl_algobase.h> 43 #include <bits/allocator.h> 44 #include <bits/alloc_traits.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_map.h> 49 #include <bits/range_access.h>
|
unordered_set | 35 # include <bits/c++0x_warning.h> 42 #include <bits/stl_algobase.h> 43 #include <bits/allocator.h> 44 #include <bits/alloc_traits.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_set.h> 49 #include <bits/range_access.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
regex | 35 # include <bits/c++0x_warning.h> 55 #include <bits/range_access.h> 56 #include <bits/regex_constants.h> 57 #include <bits/regex_error.h> 58 #include <bits/regex_cursor.h> 59 #include <bits/regex_nfa.h> 60 #include <bits/regex_compiler.h> 61 #include <bits/regex_grep_matcher.h> 62 #include <bits/regex.h>
|
unordered_map | 35 # include <bits/c++0x_warning.h> 42 #include <bits/stl_algobase.h> 43 #include <bits/allocator.h> 44 #include <bits/alloc_traits.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_map.h> 49 #include <bits/range_access.h>
|
unordered_set | 35 # include <bits/c++0x_warning.h> 42 #include <bits/stl_algobase.h> 43 #include <bits/allocator.h> 44 #include <bits/alloc_traits.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_set.h> 49 #include <bits/range_access.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
regex | 35 # include <bits/c++0x_warning.h> 55 #include <bits/range_access.h> 56 #include <bits/regex_constants.h> 57 #include <bits/regex_error.h> 58 #include <bits/regex_cursor.h> 59 #include <bits/regex_nfa.h> 60 #include <bits/regex_compiler.h> 61 #include <bits/regex_grep_matcher.h> 62 #include <bits/regex.h>
|
unordered_map | 35 # include <bits/c++0x_warning.h> 42 #include <bits/stl_algobase.h> 43 #include <bits/allocator.h> 44 #include <bits/alloc_traits.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_map.h> 49 #include <bits/range_access.h>
|
unordered_set | 35 # include <bits/c++0x_warning.h> 42 #include <bits/stl_algobase.h> 43 #include <bits/allocator.h> 44 #include <bits/alloc_traits.h> 45 #include <bits/stl_function.h> // equal_to, _Identity, _Select1st 46 #include <bits/functional_hash.h> 47 #include <bits/hashtable.h> 48 #include <bits/unordered_set.h> 49 #include <bits/range_access.h>
|
/toolchain/binutils/binutils-2.25/bfd/ |
cpu-i370.c | 31 32, /* 32 bits in a word. */ 32 32, /* 32 bits in an address. */ 33 8, /* 8 bits in a byte. */ 46 32, /* 32 bits in a word. */ 47 32, /* 32 bits in an address. */ 48 8, /* 8 bits in a byte. */ 64 32, /* 32 bits in a word. */ 65 32, /* 32 bits in an address. */ 66 8, /* 8 bits in a byte. */
|