Searched defs:shift (Results 276 - 300 of 657) sorted by path

<<11121314151617181920>>

/external/chromium_org/v8/test/mjsunit/
H A Darray-functions-prototype-misc.js29 * @fileoverview Test splice, shift, unshift, slice and join on small
86 return array.shift();
120 return Array.prototype.shift.call(array);
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe.js1376 array.shift();
1377 array.shift();
1473 Array.prototype.shift.call(array);
1541 array.shift();
1542 array.shift();
1543 array.shift();
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-builtinbust-6.js13 Array.prototype.shift.call(v);
37 test_receiver(65, "Array.prototype.shift.call(65)");
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp1743 unsigned shift, bool rightshift) {
1747 if (shift > 0 && shift == j)
1764 // \brief Right-shift a vector by a constant.
1775 // lshr/ashr are undefined when the shift amount is equal to the vector
1784 // to a shift of size-1.
5714 // than 16 bytes, emit a logical right shift of the destination.
5745 // than 32 bytes, emit a logical right shift of the destination.
5783 // than 32 bytes, emit a logical right shift of the destination.
1741 EmitNeonCall(Function *F, SmallVectorImpl<Value*> &Ops, const char *name, unsigned shift, bool rightshift) argument
/external/clang/lib/Sema/
H A DSemaChecking.cpp354 static unsigned RFT(unsigned t, bool shift = false, bool ForceQuad = false) {
360 return shift ? 7 : (8 << IsQuad) - 1;
363 return shift ? 15 : (4 << IsQuad) - 1;
365 return shift ? 31 : (2 << IsQuad) - 1;
368 return shift ? 63 : (1 << IsQuad) - 1;
370 return shift ? 127 : (1 << IsQuad) - 1;
372 assert(!shift && "cannot shift float types!");
375 assert(!shift && "cannot shift floa
5143 llvm::APSInt shift; local
[all...]
/external/clang/test/CodeGen/
H A Dmmx-shift-with-immediate.c4 void shift(__m64 a, __m64 b, int c) { function
/external/compiler-rt/lib/builtins/
H A Dfloatsidf.c46 const int shift = significandBits - exponent; local
47 result = (rep_t)(unsigned int)a << shift ^ implicitBit;
H A Dfloatsisf.c43 // Shift a into the significand field, rounding if it is a right-shift
45 const int shift = significandBits - exponent; local
46 result = (rep_t)a << shift ^ implicitBit;
48 const int shift = exponent - significandBits; local
49 result = (rep_t)a >> shift ^ implicitBit;
50 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dfloatunsidf.c36 const int shift = significandBits - exponent; local
37 result = (rep_t)a << shift ^ implicitBit;
H A Dfloatunsisf.c35 // Shift a into the significand field, rounding if it is a right-shift
37 const int shift = significandBits - exponent; local
38 result = (rep_t)a << shift ^ implicitBit;
40 const int shift = exponent - significandBits; local
41 result = (rep_t)a >> shift ^ implicitBit;
42 rep_t round = (rep_t)a << (typeWidth - shift);
H A Dfp_lib.h242 const int shift = rep_clz(*significand) - rep_clz(implicitBit); local
243 *significand <<= shift; local
244 return 1 - shift;
H A Dgcc_personality_v0.c86 uintptr_t shift = 0; local
91 result |= (byte & 0x7f) << shift;
92 shift += 7;
/external/deqp/framework/common/
H A DtcuFloatFormat.cpp145 const int shift = exponentShift(exp); local
146 const double shiftFrac = deLdExp(frac, shift);
149 return deLdExp(roundFrac, exp - shift);
238 const int shift = exponentShift(exp); local
239 const deUint64 bits = deUint64(deLdExp(frac, shift));
242 const int exponent = exp + m_fractionBits - shift;
H A DtcuFuzzyImageCompare.cpp291 int shift = (int)(kernel.size() - 1) / 2; local
295 case TextureFormat::RGBA: separableConvolve<4, 4>(refFiltered, ref, shift, shift, kernel, kernel); break;
296 case TextureFormat::RGB: separableConvolve<4, 3>(refFiltered, ref, shift, shift, kernel, kernel); break;
303 case TextureFormat::RGBA: separableConvolve<4, 4>(cmpFiltered, cmp, shift, shift, kernel, kernel); break;
304 case TextureFormat::RGB: separableConvolve<4, 3>(cmpFiltered, cmp, shift, shift, kernel, kernel); break;
/external/deqp/framework/delibs/debase/
H A DdeInt32.c131 int shift = deClz32(a); local
132 deUint32 normalized = (deUint32)a << shift; /* Highest bit is always 1. */
154 *exp = 31 - shift;
H A DdeInt32.h369 DE_INLINE deInt32 deMulAsr32 (deInt32 a, deInt32 b, int shift) argument
371 return (deInt32)(((deInt64)a * (deInt64)b) >> shift);
374 DE_INLINE deInt32 deSafeMulAsr32 (deInt32 a, deInt32 b, int shift) argument
376 deInt64 res = ((deInt64)a * (deInt64)b) >> shift;
381 DE_INLINE deUint32 deSafeMuluAsr32 (deUint32 a, deUint32 b, int shift) argument
383 deUint64 res = ((deUint64)a * (deUint64)b) >> shift;
/external/e2fsprogs/e2fsck/
H A Drevoke.c202 int shift, tmp; local
215 shift = 0;
218 shift++;
219 journal->j_revoke->hash_shift = shift;
/external/e2fsprogs/misc/
H A De2image.c867 int shift, l2_bits, header_size, l1_size, ret; local
894 shift = cluster_bits + l2_bits;
895 l1_size = ((total_size + (1LL << shift) - 1) >> shift);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jar ... public int getUInt (int, int) int offset int length int shift int mask public long getLong (int, int) int offset int ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1260 milliseconds

<<11121314151617181920>>