/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/include/mach-o/ |
compact_unwind_encoding.h | 44 // architecture independent bits 61 // 4-bits: 0=old, 1=ebp based, 2=stack-imm, 3=stack-ind, 4=dwarf 63 // 15-bits (5*3-bits per reg) register permutation 64 // 8-bits for stack offset 66 // 8-bits stack size 67 // 3-bits stack adjust 68 // 3-bits register count 69 // 10-bits register permutation 108 // is encoded in the UNWIND_X86_EBP_FRAME_OFFSET bits. The registers save [all...] |
/system/bt/embdrv/sbc/decoder/srce/ |
framing.c | 52 /* Save space if a char is 16 bits, such as on the C54x */ 68 0x1ee9e116, /* bits=2 0.24151243 1/3 * (1/1.38019122262781) (0x00000008)*/ 69 0x0d3fa99c, /* bits=3 0.10350533 1/7 * (1/1.38019122262781) (0x00000013)*/ 70 0x062ec69e, /* bits=4 0.04830249 1/15 * (1/1.38019122262781) (0x00000029)*/ 71 0x02fddbfa, /* bits=5 0.02337217 1/31 * (1/1.38019122262781) (0x00000055)*/ 72 0x0178d9f5, /* bits=6 0.01150059 1/63 * (1/1.38019122262781) (0x000000ad)*/ 73 0x00baf129, /* bits=7 0.00570502 1/127 * (1/1.38019122262781) (0x0000015e)*/ 74 0x005d1abe, /* bits=8 0.00284132 1/255 * (1/1.38019122262781) (0x000002bf)*/ 75 0x002e760d, /* bits=9 0.00141788 1/511 * (1/1.38019122262781) (0x00000582)*/ 76 0x00173536, /* bits=10 0.00070825 1/1023 * (1/1.38019122262781) (0x00000b07)* [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/ |
DESedeKeyGenerator.java | 11 * the key generated will be 192 bits in size, otherwise 13 * parity bits), depending on whether you wish to do 2-key or 3-key 38 + " bits long.");
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/ |
GLVTypeBEndomorphism.java | 25 int bits = parameters.getBits(); local 26 BigInteger b1 = calculateB(k, parameters.getG1(), bits); 27 BigInteger b2 = calculateB(k, parameters.getG2(), bits);
|
/external/clang/test/Sema/ |
neon-vector-types.c | 31 // The total vector size must be 64 or 128 bits. 32 typedef __attribute__((neon_vector_type(1))) int int32x1_t; // expected-error{{Neon vector size must be 64 or 128 bits}} 33 typedef __attribute__((neon_vector_type(3))) int int32x3_t; // expected-error{{Neon vector size must be 64 or 128 bits}}
|
/external/elfutils/src/libebl/ |
eblreginfo.c | 38 ebl_register_info (ebl, regno, name, namelen, prefix, setname, bits, type) 45 int *bits; 49 prefix, setname, bits, type);
|
/external/icu/icu4c/source/layout/ |
DeviceTables.cpp | 29 le_uint16 bits = fieldBits[format]; local 30 le_uint16 count = 16 / bits; 33 le_uint16 shift = 16 - (bits * (fieldIndex + 1));
|
/external/kernel-headers/original/uapi/linux/ |
mpls.h | 15 * Label: Label Value, 20 bits 16 * TC: Traffic Class field, 3 bits 18 * TTL: Time to Live, 8 bits
|
/external/libogg/include/ogg/ |
ogg.h | 120 extern void oggpack_writetrunc(oggpack_buffer *b,long bits); 122 extern void oggpack_writecopy(oggpack_buffer *b,void *source,long bits); 126 extern void oggpack_write(oggpack_buffer *b,unsigned long value,int bits); 127 extern long oggpack_look(oggpack_buffer *b,int bits); 129 extern void oggpack_adv(oggpack_buffer *b,int bits); 131 extern long oggpack_read(oggpack_buffer *b,int bits); 139 extern void oggpackB_writetrunc(oggpack_buffer *b,long bits); 141 extern void oggpackB_writecopy(oggpack_buffer *b,void *source,long bits); 145 extern void oggpackB_write(oggpack_buffer *b,unsigned long value,int bits); 146 extern long oggpackB_look(oggpack_buffer *b,int bits); [all...] |
/external/libopus/celt/ |
entcode.h | 37 /*OPT: ec_window must be at least 32 bits, but if you have fast arithmetic on a 46 /*The number of bits to use for the range-coded part of unsigned integers.*/ 50 3 => 1/8th bits.*/ 61 /*The offset at which the last byte containing raw bits was read/written.*/ 63 /*Bits that will be read from/written at the end.*/ 65 /*Number of valid bits in end_window.*/ 67 /*The total number of whole bits read/written. 68 This does not include partial bits currently in the range coder.*/ 99 /*Returns the number of bits "used" by the encoded or decoded symbols so far. 102 Return: The number of bits [all...] |
entenc.h | 64 _ftb: The number of bits of precision in the cumulative distribution.*/ 73 /*Encodes a sequence of raw bits in the stream. 74 _fl: The bits to encode. 75 _ftb: The number of bits to encode. 79 /*Overwrites a few bits at the very start of an existing stream, after they 85 In order for this to work, at least _nbits bits must have already been 87 The encoder can verify the number of encoded bits is sufficient, but cannot 89 _val: The bits to encode (in the least _nbits significant bits). 91 _nbits: The number of bits to overwrite [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_entropy.h | 27 #define ZERO_TOKEN 0 // 0 Extra Bits 0+0 28 #define ONE_TOKEN 1 // 1 Extra Bits 0+1 29 #define TWO_TOKEN 2 // 2 Extra Bits 0+1 30 #define THREE_TOKEN 3 // 3 Extra Bits 0+1 31 #define FOUR_TOKEN 4 // 4 Extra Bits 0+1 32 #define CATEGORY1_TOKEN 5 // 5-6 Extra Bits 1+1 33 #define CATEGORY2_TOKEN 6 // 7-10 Extra Bits 2+1 34 #define CATEGORY3_TOKEN 7 // 11-18 Extra Bits 3+1 35 #define CATEGORY4_TOKEN 8 // 19-34 Extra Bits 4+1 36 #define CATEGORY5_TOKEN 9 // 35-66 Extra Bits 5+ [all...] |
/external/llvm/lib/Target/BPF/ |
BPFInstrFormats.td | 12 field bits<64> Inst; 13 field bits<64> SoftFail = 0; 19 bits<3> BPFClass;
|
/external/okhttp/okio/okio/src/main/java/okio/ |
Base64.java | 48 int bits; local 53 bits = c - 65; 58 bits = c - 71; 63 bits = c + 4; 65 bits = 62; 67 bits = 63; 74 // Append this char's 6 bits to the word. 75 word = (word << 6) | (byte) bits; 77 // For every 4 chars of input, we accumulate 24 bits of output. Emit 3 bytes. 88 // We read 1 char followed by "===". But 6 bits is a truncated byte! Fail [all...] |
/external/skia/src/gpu/ |
GrStencilAttachment.h | 29 int bits() const { return fBits; } function in class:GrStencilAttachment 56 GrStencilAttachment(GrGpu* gpu, LifeCycle lifeCycle, int width, int height, int bits, 61 , fBits(bits)
|
/external/v8/src/ |
diy-fp.cc | 15 // However: the resulting number only contains 64 bits. The least 16 // significant 64 bits are only used for rounding the most significant 64 17 // bits.
|
/external/valgrind/memcheck/tests/ |
pdb-realloc.c | 4 // also copy the corresponding entry in the sec-V-bits table. Then later on 5 // when we searched for the sec-V-bits entry for the copied-to location, it 25 // Read the PDBs -- this caused a sec-V-bits lookup failure.
|
/external/valgrind/memcheck/tests/vbit-test/ |
README | 5 bits in the result are undefined that we expect to be undefined. That way 6 we can detect false positives (there are bits in the result that are 7 undefined but shouldn't) and false negatives (there are defined bits in 18 (1) use VALGRIND_SET_VBITS to set the V-bits of the operands of an IROp 20 (3) use VALGRIND_GET_VBITS to obtain the V-bits of the result 22 Do that for all IROps and for all input bits of their operands. 50 List of IROps. For each operator it defines how undefined input bits 60 bits of the single operand. For each such bit, the corresponding V-bit will 61 be set to undefined, the IROps is executed and the resulting V-bits will 63 The function check_result_for_unary will check the V-bits for correctness [all...] |
/external/zlib/src/contrib/masmx64/ |
readme.txt | 4 longest_match() and inflate_fast(), for 64 bits x86 (both AMD64 and Intel EM64t),
5 for use with Microsoft Macro Assembler (x64) for AMD64 and Microsoft C++ 64 bits.
7 gvmat64.asm is written by Gilles Vollant (2005), by using Brian Raiter 686/32 bits
|
/frameworks/base/graphics/java/android/graphics/ |
PaintFlagsDrawFilter.java | 25 * @param clearBits These bits will be cleared in the paint's flags 26 * @param setBits These bits will be set in the paint's flags 29 // our native constructor can return 0, if the specified bits
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_entropy.h | 27 #define ZERO_TOKEN 0 // 0 Extra Bits 0+0 28 #define ONE_TOKEN 1 // 1 Extra Bits 0+1 29 #define TWO_TOKEN 2 // 2 Extra Bits 0+1 30 #define THREE_TOKEN 3 // 3 Extra Bits 0+1 31 #define FOUR_TOKEN 4 // 4 Extra Bits 0+1 32 #define CATEGORY1_TOKEN 5 // 5-6 Extra Bits 1+1 33 #define CATEGORY2_TOKEN 6 // 7-10 Extra Bits 2+1 34 #define CATEGORY3_TOKEN 7 // 11-18 Extra Bits 3+1 35 #define CATEGORY4_TOKEN 8 // 19-34 Extra Bits 4+1 36 #define CATEGORY5_TOKEN 9 // 35-66 Extra Bits 5+ [all...] |
/libcore/luni/src/main/native/ |
java_lang_Double.cpp | 28 uint64_t bits; member in union:Double 35 return d.bits; 40 d.bits = val;
|
java_lang_Float.cpp | 28 unsigned int bits; member in union:Float 35 return f.bits; 40 f.bits = val;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
setjmp.h | 24 # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead." 27 #include <bits/wordsize.h> 39 #endif /* bits/setjmp.h */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
virtio_config.h | 21 /* Some virtio feature bits (currently bits 28 through 31) are reserved for the 23 * bits. */
|