Home
last modified time | relevance | path

Searched refs:shift (Results 1 – 25 of 28) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/template.valarray/valarray.members/
Dshift.pass.cpp27 std::valarray<T> v2 = v1.shift(0); in main()
38 std::valarray<T> v2 = v1.shift(1); in main()
49 std::valarray<T> v2 = v1.shift(9); in main()
60 std::valarray<T> v2 = v1.shift(90); in main()
71 std::valarray<T> v2 = v1.shift(-1); in main()
82 std::valarray<T> v2 = v1.shift(-9); in main()
93 std::valarray<T> v2 = v1.shift(-90); in main()
102 std::valarray<T> v2 = v1.shift(-90); in main()
111 std::valarray<T> v2 = (v1 + v1).shift(3); in main()
122 std::valarray<T> v2 = (v1 + v1).shift(-3); in main()
/ndk/sources/cxx-stl/gabi++/src/
Ddwarf_helper.cc58 uintptr_t shift = 0; in readULEB128() local
63 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readULEB128()
64 shift += 7; in readULEB128()
72 uintptr_t shift = 0; in readSLEB128() local
77 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readSLEB128()
78 shift += 7; in readSLEB128()
81 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) { in readSLEB128()
82 result |= static_cast<uintptr_t>(~0) << shift; in readSLEB128()
/ndk/tests/build/issue20862-libpng-O0/jni/
Dpngrtran.c1838 int shift = 8 - png_ptr->sig_bit.red; in png_init_read_transformations() local
1846 if (shift > 0 && shift < 8) for (i=0; i<istop; ++i) in png_init_read_transformations()
1850 component >>= shift; in png_init_read_transformations()
1854 shift = 8 - png_ptr->sig_bit.green; in png_init_read_transformations()
1855 if (shift > 0 && shift < 8) for (i=0; i<istop; ++i) in png_init_read_transformations()
1859 component >>= shift; in png_init_read_transformations()
1863 shift = 8 - png_ptr->sig_bit.blue; in png_init_read_transformations()
1864 if (shift > 0 && shift < 8) for (i=0; i<istop; ++i) in png_init_read_transformations()
1868 component >>= shift; in png_init_read_transformations()
2294 &(png_ptr->shift)); in png_do_read_transformations()
[all …]
Dpngstruct.h192 png_color_8 shift; /* shift for significant bit tranformation */ member
/ndk/tests/device/test-gnustl-full/unit/
Dtransform_test.cpp34 static char shift( char c ) { in shift() function in TransformTest
77 transform( s.begin(), s.end(), s.begin(), shift ); in self_str()
/ndk/tests/device/test-stlport/unit/
Dtransform_test.cpp34 static char shift( char c ) { in shift() function in TransformTest
77 transform( s.begin(), s.end(), s.begin(), shift ); in self_str()
/ndk/sources/host-tools/ndk-stack/elff/
Ddwarf_defs.h199 Elf_Word shift = 0; in get_common() local
201 value->u64 |= (static_cast<Elf_Xword>(*cur) & 0x7F) << shift; in get_common()
202 shift += 7; in get_common()
206 value->u64 |= (static_cast<Elf_Xword>(*cur) & 0x7F) << shift; in get_common()
219 value->u64 |= - (1 << (shift + 7)); in get_common()
233 value->u64 |= - (1 << (shift + 7)); in get_common()
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Dbinary.sed10 # < shift left binary by decimal number of bits (11 3< gives 11000)
11 # > shift right binary by decimal number of bits (1011 2> gives 10)
165 # Left shift, convert to analog and add a binary digit for each analog digit
175 # Right shift, convert to analog and remove a binary digit for each analog digit
Dbinary2.sed10 # < shift left binary by decimal number of bits (11 3< gives 11000)
11 # > shift right binary by decimal number of bits (1011 2> gives 10)
199 # Left shift, convert to analog and add a binary digit for each analog digit
210 # Right shift, convert to analog and remove a binary digit for each analog digit
Dbinary3.sed10 # < shift left binary by decimal number of bits (11 3< gives 11000)
11 # > shift right binary by decimal number of bits (1011 2> gives 10)
178 # Left shift, convert to analog and add a binary digit for each analog digit
188 # Right shift, convert to analog and remove a binary digit for each analog digit
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_personality.cpp177 uintptr_t shift = 0; in readULEB128() local
183 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readULEB128()
184 shift += 7; in readULEB128()
200 uintptr_t shift = 0; in readSLEB128() local
206 result |= static_cast<uintptr_t>(byte & 0x7F) << shift; in readSLEB128()
207 shift += 7; in readSLEB128()
210 if ((byte & 0x40) && (shift < (sizeof(result) << 3))) in readSLEB128()
211 result |= static_cast<uintptr_t>(~0) << shift; in readSLEB128()
/ndk/sources/host-tools/sed-4.2.1/lib/
Dquotearg.c128 int shift = uc % INT_BITS; in set_char_quoting() local
129 int r = (*p >> shift) & 1; in set_char_quoting()
130 *p ^= ((i & 1) ^ r) << shift; in set_char_quoting()
/ndk/docs/tools/
DREADME59 also shift them 4 spaces to the right in the HTML output, but this
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DUnwind-EHABI.cpp278 uint32_t shift = 0; in _Unwind_VRS_Interpret() local
284 addend |= (v & 0x7f) << shift; in _Unwind_VRS_Interpret()
287 shift += 7; in _Unwind_VRS_Interpret()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_valarray.c148 valarray<_Tp> valarray<_Tp>::shift(int __n) const { in shift() function
D_valarray.h347 valarray<_Tp> shift(int __n) const;
/ndk/sources/host-tools/sed-4.2.1/m4/
Dlonglong.m499 [[/* Test availability of runtime routines for shift and division. */
/ndk/sources/host-tools/nawk-20071023/
DREADME40 conflicts: 43 shift/reduce, 85 reduce/reduce
/ndk/docs/renderscript/
Djquery.js13 …{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx")…
20shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?…
21 …ent.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.…
/ndk/sources/host-tools/make-3.81/autom4te.cache/
Doutput.02965 shift
2970 shift
4094 shift
4097 shift; shift
4127 shift
4130 shift; shift
9866 "*) set x $ac_config_files; shift; ac_config_files=$*;;
9870 "*) set x $ac_config_headers; shift; ac_config_headers=$*;;
9948 ac_shift=shift
9994 shift
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Ddeque2249 { // we can put the new buffer into the map, but don't shift things around
2323 { // we can put the new buffers into the map, but don't shift things around
2399 { // we can put the new buffer into the map, but don't shift things around
2468 { // we can put the new buffers into the map, but don't shift things around
Dvalarray102 valarray shift (int i) const;
972 valarray shift (int __i) const;
2604 __val_expr<__shift_expr<_ValExpr> > shift (int __i) const
3499 valarray<_Tp>::shift(int __i) const
/ndk/sources/host-tools/sed-4.2.1/doc/
Dsed.info1342 shift
Dsed.texi1834 shift
/ndk/docs/text/
DCHANGES.text1225 - ARM: Fixed internal compiler error with negative shift amount.

12