HomeSort by relevance Sort by last modified time
    Searched refs:BITS (Results 51 - 75 of 192) sorted by null

1 23 4 5 6 7 8

  /external/boringssl/src/crypto/fipsmodule/sha/asm/
sha512-armv8.pl 57 $BITS=512;
66 $BITS=256;
76 $func="sha${BITS}_block_data_order";
216 adr $Ktbl,.LK$BITS
266 .type .LK$BITS,%object
267 .LK$BITS:
332 .size .LK$BITS,.-.LK$BITS
342 .asciz "SHA$BITS block transform for ARMv8, CRYPTOGAMS by <appro\@openssl.org>"
  /toolchain/binutils/binutils-2.25/opcodes/
arc-dis.c 61 #define BITS(word,s,e) (((word) >> s) & ((1 << (e + 1 - s)) - 1))
62 #define OPCODE(word) (BITS ((word), 27, 31))
63 #define FIELDA(word) (BITS ((word), 21, 26))
64 #define FIELDB(word) (BITS ((word), 15, 20))
65 #define FIELDC(word) (BITS ((word), 9, 14))
68 #define FIELDD(word) ((BITS ((word), 0, 8) ^ 0x100) - 0x100)
85 state->nullifyMode = BITS (state->words[0], 5, 6); \
86 cond = BITS (state->words[0], 0, 4); \
95 cond = BITS (state->words[0], 0, 4); \
575 switch (BITS (state->words[0],1,2)
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia16/
Init16.asm 17 BITS 16
Real16ToFlat32.asm 19 BITS 16
41 BITS 32
ResetVectorVtf0.asm 16 BITS 16
  /external/libmpeg2/decoder/
impeg2d_pnb_pic.c 159 u2_mb_type = ps_dec->pu2_mb_type[BITS((UWORD16)u4_next_word,15,10)];
160 u2_len = BITS(u2_mb_type,15,8);
171 ps_dec->u2_motion_type = BITS((UWORD16)u4_next_word,15,14);
203 u2_quant_scale_code = BITS((UWORD16)u4_next_word,15,11);
360 u2_mb_type = ps_dec->pu2_mb_type[BITS((UWORD16)u4_next_word,15,10)];
361 u2_len = BITS(u2_mb_type,15,8);
373 ps_dec->u2_motion_type = BITS((UWORD16)u4_next_word,15,14);
409 u2_quant_scale_code = BITS((UWORD16)u4_next_word,15,11);
impeg2d_vld.c 55 * maxLen : Maximum Length of the decoded symbol in bits
66 /* Get the maximum number of bits needed to decode a symbol */
78 /* Flush the appropriate number of bits from the ps_stream */
86 * processing n bits at a time
92 * maxLen : Maximum Length of the decoded symbol in bits
173 * Vld code belongs in the Ac Coeff Table and the no of bits with which
187 * DecodedValue has the Run, Level and the number of bits used by Vld code
259 * DecodedValue has the Run, Level and the number of bits used by Vld code
528 /* Get the maximum number of bits needed to decode a symbol */
541 /* Flush the appropriate number of bits from the stream *
    [all...]
  /external/syslinux/
Makefile 264 ARCH=i386 BITS=32 EFI_BUILD=1 LDLINUX=ldlinux.e32 \
272 ARCH=x86_64 BITS=64 EFI_BUILD=1 LDLINUX=ldlinux.e64 \
351 mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR)/efi$(BITS)
354 BITS="$(BITS)" AUXDIR="$(AUXDIR)/efi$(BITS)" \
356 -install -m 644 $(INSTALLABLE_MODULES) $(INSTALLROOT)$(AUXDIR)/efi$(BITS)
357 install -m 644 com32/elflink/ldlinux/$(LDLINUX) $(INSTALLROOT)$(AUXDIR)/efi$(BITS)
362 mkdir -p $(INSTALLROOT)$(TFTPBOOT)/efi$(BITS)
363 install -m 644 $(NETINSTALLABLE) $(INSTALLROOT)$(TFTPBOOT)/efi$(BITS)
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/
CommonIncludes.h 119 #define BITS(x) (1 << (x))
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBitSet.h 32 #define BITS (sizeof(NSUInteger) * 8)
48 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBitSet.h 32 #define BITS (sizeof(NSUInteger) * 8)
48 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBitSet.h 32 #define BITS (sizeof(NSUInteger) * 8)
48 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBitSet.h 33 #define BITS (sizeof(NSUInteger) * 8)
49 * @param nbits The size of the ANTLRBitSet in bits
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 35 protected static const BITS:uint = 32; // number of bits / int
43 protected static const MOD_MASK:uint = BITS - 1;
45 /** The actual data bits */
46 protected var bits:Array;
49 public function BitSet(bits:Array = null) {
50 if (bits == null) {
51 this.bits = new Array();
54 this.bits = new Array();
55 for (var i:int = 0; i < bits.length; i++)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
BitSet.java 43 * is no way to access the internal bits (which I need for speed)
45 * Consider defining set degree. Without access to the bits, I must
49 * than this.bits.length.
54 protected final static int BITS = 64; // number of bits / long
62 protected final static int MOD_MASK = BITS - 1;
64 /** The actual data bits */
65 protected long bits[]; field in class:BitSet
67 /** Construct a bitset of size one word (64 bits) */
69 this(BITS);
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_bitfields.py 9 class BITS(Structure):
29 func.argtypes = POINTER(BITS), c_char
32 ## print n, hex(getattr(BITS, n).size), getattr(BITS, n).offset
39 b = BITS()
46 b = BITS()
146 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
149 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
160 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_bitfields.py 8 class BITS(Structure):
28 func.argtypes = POINTER(BITS), c_char
31 ## print n, hex(getattr(BITS, n).size), getattr(BITS, n).offset
38 b = BITS()
45 b = BITS()
147 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
150 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
161 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_bitfields.py 8 class BITS(Structure):
28 func.argtypes = POINTER(BITS), c_char
31 ## print n, hex(getattr(BITS, n).size), getattr(BITS, n).offset
38 b = BITS()
45 b = BITS()
147 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
150 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
161 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_bitfields.py 8 class BITS(Structure):
28 func.argtypes = POINTER(BITS), c_char
31 ## print n, hex(getattr(BITS, n).size), getattr(BITS, n).offset
38 b = BITS()
45 b = BITS()
147 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
150 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
161 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_bitfields.py 8 class BITS(Structure):
28 func.argtypes = POINTER(BITS), c_char
31 ## print n, hex(getattr(BITS, n).size), getattr(BITS, n).offset
38 b = BITS()
45 b = BITS()
147 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
150 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
161 self.assertEqual(result, (ValueError, 'number of bits invalid for bit field'))
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia32/
SearchForBfvBase.asm 23 BITS 32
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/X64/
PageTables.asm 16 BITS 64
  /frameworks/rs/rsov/compiler/spirit/
module.cpp 290 TypeIntInst *Module::getIntType(int bits, bool isSigned) {
291 return getGlobalSection()->getIntType(bits, isSigned);
294 TypeIntInst *Module::getUnsignedIntType(int bits) {
295 return getIntType(bits, false);
298 TypeFloatInst *Module::getFloatType(int bits) {
299 return getGlobalSection()->getFloatType(bits);
730 TypeIntInst *GlobalSection::getIntType(int bits, bool isSigned) {
732 switch (bits) {
733 #define HANDLE_INT_SIZE(INT_TYPE, BITS, SIGNED) \
734 case BITS: {
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BitSet.js 10 * @param {Number|Array} [bits] a 32 bit number or array of 32 bit numbers
14 org.antlr.runtime.BitSet = function(bits) {
15 if (!bits) {
16 bits = org.antlr.runtime.BitSet.BITS;
19 if (org.antlr.lang.isArray(bits)) {
24 this.bits = bits;
25 } else if(org.antlr.lang.isNumber(bits)) {
26 this.bits = []
    [all...]
  /external/pcre/dist2/src/
pcre2test.c 402 /* Control bits. Some apply to compiling, some to matching, but some can be set
646 /* Control bits that are not ignored with 'push'. */
    [all...]

Completed in 441 milliseconds

1 23 4 5 6 7 8