Searched refs:shift (Results 251 - 275 of 1142) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dvector_scaling_operations_neon.S36 @ Neon instructions can only right shift by an immediate value. To shift right
37 @ by a register value, we have to do a left shift left by the negative value.
52 vrshl.s32 q0, q12 @ Round shift right by right_shifts.
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dentropy_coding.h123 const int shift);
143 const int shift);
161 const int shift);
180 const int shift);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfloatnum.h93 * into more significant bits by the shift parameter. The destination bits are
102 * \param shift left shift (in bits)
110 size_t destsize, size_t valsize, size_t shift,
H A Darch.h153 size_t valsize, size_t shift, int warn);
160 int shift, const yasm_bytecode *bc,
336 * significant bits by the shift parameter. The destination bits are
344 * \param shift left shift (in bits)
350 size_t valsize, size_t shift, int warn);
354 * significant bits by the shift parameter. The destination bits are
361 * \param shift left shift (in bits); may be negative to specify right
362 * shift (standar
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/
H A Dlc3barch.h62 size_t destsize, size_t valsize, int shift, const yasm_bytecode *bc,
/external/chromium_org/v8/test/mjsunit/es6/debug-promises/
H A Dasync-task-event.js28 assertEquals(expected.shift(), msg);
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe-debug-event.js20 assertEquals(expected.shift(), msg);
/external/compiler-rt/lib/builtins/arm/
H A Dudivmodsi4.S41 * The code before JMP computes the correct shift I, so that
46 * block(shift) implements the test-and-update-quotient core.
47 * It assumes (r0 << shift) can be computed without overflow and
48 * that (r0 << shift) < 2 * r1. The quotient is stored in r3.
99 #define block(shift) \
100 cmp r0, r1, lsl IMM shift; \
101 addhs r3, r3, IMM (1 << shift); \
102 subhs r0, r0, r1, lsl IMM shift
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dlcp.bat21 shift
26 shift
/external/libhevc/common/
H A Dihevc_weighted_pred.h44 WORD32 shift,
57 WORD32 shift,
72 WORD32 shift,
92 WORD32 shift,
/external/libmtp/src/
H A Dgphoto2-endian-ppc.h95 #define be64atoh_x(x,off,shift) (((uint64_t)((x)[off]))<<shift)
100 #define le64atoh_x(x,off,shift) (((uint64_t)(x)[off])<<shift)
/external/libvorbis/lib/
H A Denvelope.h76 extern void _ve_envelope_shift(envelope_lookup *e,long shift);
/external/openssl/crypto/bn/
H A Dbn_recp.c99 recp->shift=0;
169 if (i != recp->shift)
170 recp->shift=BN_reciprocal(&(recp->Nr),&(recp->N),
172 if (recp->shift == -1) goto err;
H A Dbn_gcd.c263 int shift; local
277 shift = 0;
278 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
280 shift++;
289 if (shift > 0)
291 if (!BN_rshift(B, B, shift)) goto err;
296 shift = 0;
297 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
299 shift++;
308 if (shift >
[all...]
/external/qemu/audio/
H A Dwavcapture.c97 int stereo, bits16, shift; local
125 shift = bits16 + stereo;
130 le_store (hdr + 28, freq << shift, 4);
131 le_store (hdr + 32, 1 << shift, 2);
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dgcd.c288 int shift; local
299 shift = 0;
300 while (!BN_is_bit_set(B, shift)) {
302 shift++;
314 if (shift > 0) {
315 if (!BN_rshift(B, B, shift)) {
321 shift = 0;
322 while (!BN_is_bit_set(A, shift)) {
324 shift++;
336 if (shift >
[all...]
/external/speex/libspeex/
H A Dfftwrap.c47 int i, shift; local
56 shift=0;
60 shift++;
64 out[i] = SHL16(in[i], shift);
66 return shift;
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len) argument
74 out[i] = PSHR16(in[i], shift);
275 int shift; local
277 shift = maximize_range(in, in, 32000, t->N);
279 renorm_range(in, in, shift,
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dmathml_store_util.js138 return sepList.shift();
174 var content = contentNodes.shift();
/external/chromium_org/remoting/webapp/
H A Didentity.js119 this.pendingCallbacks_.shift();
131 this.pendingCallbacks_.shift();
/external/chromium_org/third_party/icu/source/common/
H A Dubidi_props.h122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)
/external/chromium_org/third_party/speex/libspeex/
H A Dstereo.c154 int shift; local
187 shift = spx_ilog2(largest)-15;
188 largest = VSHR32(largest, shift-4);
189 smallest = VSHR32(smallest, shift);
206 shift = spx_ilog2(e_tot);
207 e_tot = VSHR32(e_tot, shift-25);
208 e_left = VSHR32(e_left, shift-10);
209 e_right = VSHR32(e_right, shift-10);
/external/chromium_org/tools/perf/utils/results_viewer/src/
H A Dbase.js45 for (var part; parts.length && (part = parts.shift());) {
/external/chromium_org/ui/events/
H A Devent_utils.cc67 base::char16 GetControlCharacterForKeycode(int windows_key_code, bool shift) { argument
73 if (shift) {
74 // following graphics chars require shift key to input.
/external/chromium_org/v8/test/mjsunit/
H A Darray-functions-prototype.js55 // shift.
62 assertEquals('zero', array.shift());
63 assertEquals('zero', Array.prototype.shift.call(nonArray));
/external/icu/icu4c/source/common/
H A Dubidi_props.h122 #define UBIDI_GET_FLAG(props, shift) (((props)>>(shift))&1)

Completed in 8967 milliseconds

<<11121314151617181920>>