/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_smf.c | 619 EAS_U32 bit = (EAS_U32) value; local 620 bit = (bit << JET_EVENT_SEG_SHIFT) & JET_EVENT_SEG_MASK; 625 i << JET_EVENT_TRACK_SHIFT | bit | MIDI_FLAGS_JET_CB; 634 EAS_U32 bit = (EAS_U32) value; local 637 if (bit & 1) 641 bit >>= 1; 756 /* read until bit 7 is zero */ [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_smf.c | 624 EAS_U32 bit = (EAS_U32) value; local 625 bit = (bit << JET_EVENT_SEG_SHIFT) & JET_EVENT_SEG_MASK; 630 i << JET_EVENT_TRACK_SHIFT | bit | MIDI_FLAGS_JET_CB; 639 EAS_U32 bit = (EAS_U32) value; local 642 if (bit & 1) 646 bit >>= 1; 761 /* read until bit 7 is zero */ [all...] |
/external/aac/libSBRdec/src/ |
psbitdec.cpp | 20 individually for the purpose of encoding or decoding bit streams in products that are compliant with 106 UCHAR bit = 0; local 111 bit = FDKreadBits (hBitBuf, 1); 113 index = h[index][bit];
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
GCMBlockCipher.java | 546 int bit = 0; local 550 block[i] = (byte) ((b >>> 1) | bit); 555 bit = (b & 1) << 7;
|
/external/bzip2/ |
bzip2recover.c | 29 /* This program records bit locations in the file to be recovered. 30 That means that if 64-bit ints are not supported, we will not 32 On GNU supported platforms, we take advantage of the 64-bit 140 /*--- Bit stream I/O ---*/ 180 static void bsPutBit ( BitStream* bs, Int32 bit ) 187 bs->buffer = bit & 0x1; 189 bs->buffer = ( (bs->buffer << 1) | (bit & 0x1) ); 331 "\tunsigned 64-bit int.\n");
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/ |
filter_bilinear_altivec.asm | 85 vpkswus v24, v24, v25 ;# v24 = 0 4 8 C 1 5 9 D (16-bit) 89 vpkuhus \V, v24, v24 ;# \V = scrambled 8-bit result 144 vmrghh \P0, v22, v23 ;# v18 v19 = 16-bit result in order 146 vpkuhus \P0, \P0, v23 ;# P0 = 8-bit result 489 vpkswus v24, v24, v25 ;# v24 = 0 4 8 C 1 5 9 D (16-bit) 495 vpkuhus \V, v24, v25 ;# \V = scrambled 8-bit result
|
/external/chromium_org/third_party/libwebp/enc/ |
cost.c | 52 // use for coding it (in [][0]) as well as the bit value to use for each 381 // These are the fixed probabilities (in the coding trees) turned into bit-cost 666 static int Record(int bit, proba_t* const stats) { 671 // record bit count (lower 16 bits) and increment total count (upper 16 bits). 672 p += 0x00010000u + bit; 674 return bit;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_context.h | 89 extern void intelFallback(struct intel_context *intel, GLbitfield bit, 91 #define FALLBACK( intel, bit, mode ) intelFallback( intel, bit, mode )
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
bitvect.h | 109 ErrCode_Size, /* bit vector size mismatch */ 130 N_word BitVector_Size (N_int bits); /* bit vector size (# of words) */ 132 N_word BitVector_Mask (N_int bits); /* bit vector mask (unused bits) */ 173 /* ===> bit vector copy function: */ 178 /* ===> bit vector initialization: */ 195 /* ===> bit vector interval operations and functions: */ 222 /* ===> bit vector test functions: */ 236 /* ===> bit vector string conversion functions: */ 270 /* ===> bit vector bit operations, functions & tests: * [all...] |
/external/chromium_org/third_party/zlib/ |
deflate.c | 191 * Initialize the hash table (avoiding 64K overflow for 16 bit systems). 550 * Put a short in the pending buffer. The 16-bit value is put in MSB order. 1082 IPos bit = offset & 7; local 1120 IPos bit = window_offset & 7; local [all...] |
/external/chromium_org/v8/src/arm64/ |
lithium-codegen-arm64.h | 218 int bit = -1, 242 void DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr, 244 void DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr,
|
/external/chromium_org/v8/src/mips/ |
deoptimizer-mips.cc | 138 RegList saved_regs = restored_regs | sp.bit() | ra.bit(); 300 DCHECK(!(at.bit() & restored_regs));
|
/external/chromium_org/v8/src/mips64/ |
deoptimizer-mips64.cc | 137 RegList saved_regs = restored_regs | sp.bit() | ra.bit(); 304 DCHECK(!(at.bit() & restored_regs));
|
/external/libhevc/common/arm/ |
ihevc_weighted_pred_bi.s | 82 @* (14 bit depth) + log2_weight_denominator 186 add r6,r0,r3 @pi2_src_tmp1 = pi2_src1 + 2*src_strd1(2* because pi1_src is a 16 bit pointer) 187 add r8,r1,r4 @pi2_src_tmp2 = pi2_src2 + 2*src_strd2(2* because pi2_src is a 16 bit pointer) 255 add r0,r0,r11 @pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment with double the wd decrement)
|
/external/libvpx/libvpx/vp8/common/ppc/ |
filter_bilinear_altivec.asm | 85 vpkswus v24, v24, v25 ;# v24 = 0 4 8 C 1 5 9 D (16-bit) 89 vpkuhus \V, v24, v24 ;# \V = scrambled 8-bit result 144 vmrghh \P0, v22, v23 ;# v18 v19 = 16-bit result in order 146 vpkuhus \P0, \P0, v23 ;# P0 = 8-bit result 489 vpkswus v24, v24, v25 ;# v24 = 0 4 8 C 1 5 9 D (16-bit) 495 vpkuhus \V, v24, v25 ;# \V = scrambled 8-bit result
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_context.h | 89 extern void intelFallback(struct intel_context *intel, GLbitfield bit, 91 #define FALLBACK( intel, bit, mode ) intelFallback( intel, bit, mode )
|
/external/webp/src/enc/ |
cost.c | 52 // use for coding it (in [][0]) as well as the bit value to use for each 381 // These are the fixed probabilities (in the coding trees) turned into bit-cost 666 static int Record(int bit, proba_t* const stats) { 671 // record bit count (lower 16 bits) and increment total count (upper 16 bits). 672 p += 0x00010000u + bit; 674 return bit;
|
/external/yaffs2/yaffs2/ |
yaffs_tagscompat.c | 72 unsigned bit = 0; local 78 bit++; 80 ecc ^= bit;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/ |
filter_bilinear_altivec.asm | 85 vpkswus v24, v24, v25 ;# v24 = 0 4 8 C 1 5 9 D (16-bit) 89 vpkuhus \V, v24, v24 ;# \V = scrambled 8-bit result 144 vmrghh \P0, v22, v23 ;# v18 v19 = 16-bit result in order 146 vpkuhus \P0, \P0, v23 ;# P0 = 8-bit result 489 vpkswus v24, v24, v25 ;# v24 = 0 4 8 C 1 5 9 D (16-bit) 495 vpkuhus \V, v24, v25 ;# \V = scrambled 8-bit result
|
/hardware/qcom/media/mm-video-legacy/vidc/common/src/ |
extra_data_handler.cpp | 84 OMX_U32 symbol, bit; local 86 bit = d_u(1); 88 }while (!bit); 145 DEBUG_PRINT_ERROR("\nERROR: In %s() Non-zero forbidden bit", __func__); 210 DEBUG_PRINT_ERROR("\nERROR: In %s() Marker Bit Error in SEI",
|
/hardware/qcom/media/mm-video-v4l2/vidc/common/src/ |
extra_data_handler.cpp | 87 OMX_U32 symbol, bit; local 90 bit = d_u(1); 92 } while (!bit); 155 DEBUG_PRINT_ERROR("ERROR: In %s() Non-zero forbidden bit", __func__); 227 DEBUG_PRINT_ERROR("ERROR: In %s() Marker Bit Error in SEI",
|
/system/core/libmincrypt/ |
p256.c | 28 // be portable 32-bit, although it's still constant-time. 58 int p256_get_bit(const p256_int* scalar, int bit) { 59 return (P256_DIGIT(scalar, bit / P256_BITSPERDIGIT) 60 >> (bit & (P256_BITSPERDIGIT - 1))) & 1; 185 // tmp might still be larger than MOD, yet same bit length.
|
/art/runtime/ |
utils.h | 114 // Check whether an N-bit two's-complement representation can hold value. 221 static constexpr inline T RoundUpToPowerOfTwoRecursive(T x, size_t bit) { 222 return bit == (BitSizeOf<T>()) ? x: RoundUpToPowerOfTwoRecursive(x | x >> bit, bit << 1); 246 // Find the bit position of the most significant bit (0-based), or -1 if there were no bits set. 290 // Interpret the bit pattern of input (type U) as type V. Requires the size
|
/development/build/ |
Android.mk | 25 # - ${TARGET_ARCH} e.g. "arm", "x86", "mips" and their 64-bit variants. 26 # - ${TARGET_CPU_ABI} e.g. "armeabi", "x86", "mips" and their 64-bit variants.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
ActionScriptTarget.java | 69 * bits followed by \xll where ll is the lower order bits of a 16-bit number. 97 /** Convert long to two 32-bit numbers separted by a comma. 98 * ActionScript does not support 64-bit numbers, so we need to break 99 * the number into two 32-bit literals to give to the Bit. A number like 104 * passed in in 32-bit chunks with low-order bits coming first.
|