Searched refs:c2 (Results 276 - 300 of 1210) sorted by relevance

<<11121314151617181920>>

/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dbase64.py149 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
152 # bits of c2 and tack them onto c3. The shifts and masks are intended
154 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
155 c2 += (c1 & 1) << 16 # 17 bits wide
156 c3 += (c2 & 3) << 8 # 10 bits wide
160 _b32tab[c2 >> 12], # bits 16 - 20 (1 - 5)
161 _b32tab[(c2 >> 7) & 0x1f], # bits 21 - 25 (6 - 10)
162 _b32tab[(c2 >> 2) & 0x1f], # bits 26 - 30 (11 - 15)
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dsplice_after_one.pass.cpp88 C c2(std::begin(t2), std::end(t2));
90 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
91 next(c2.cbefore_begin(), f));
118 C c2(std::begin(t2), std::end(t2));
120 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
121 next(c2.cbefore_begin(), f));
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
H A Dsplice_after_one.pass.cpp88 C c2(std::begin(t2), std::end(t2));
90 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
91 next(c2.cbefore_begin(), f));
118 C c2(std::begin(t2), std::end(t2));
120 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
121 next(c2.cbefore_begin(), f));
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dsplice_after_one.pass.cpp88 C c2(std::begin(t2), std::end(t2));
90 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
91 next(c2.cbefore_begin(), f));
118 C c2(std::begin(t2), std::end(t2));
120 c1.splice_after(next(c1.cbefore_begin(), p), std::move(c2),
121 next(c2.cbefore_begin(), f));
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dbase64.py149 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
152 # bits of c2 and tack them onto c3. The shifts and masks are intended
154 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
155 c2 += (c1 & 1) << 16 # 17 bits wide
156 c3 += (c2 & 3) << 8 # 10 bits wide
160 _b32tab[c2 >> 12], # bits 16 - 20 (1 - 5)
161 _b32tab[(c2 >> 7) & 0x1f], # bits 21 - 25 (6 - 10)
162 _b32tab[(c2 >> 2) & 0x1f], # bits 26 - 30 (11 - 15)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dbase64.py149 # c1 and c2 are 16 bits wide, c3 is 8 bits wide. The intent of this
151 # leftover bit of c1 and tack it onto c2. Then we take the 2 leftover
152 # bits of c2 and tack them onto c3. The shifts and masks are intended
154 c1, c2, c3 = struct.unpack('!HHB', s[i*5:(i+1)*5])
155 c2 += (c1 & 1) << 16 # 17 bits wide
156 c3 += (c2 & 3) << 8 # 10 bits wide
160 _b32tab[c2 >> 12], # bits 16 - 20 (1 - 5)
161 _b32tab[(c2 >> 7) & 0x1f], # bits 21 - 25 (6 - 10)
162 _b32tab[(c2 >> 2) & 0x1f], # bits 26 - 30 (11 - 15)
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
H A Dtree-ssa-sccvn.h151 vn_constant_eq_with_type (tree c1, tree c2) argument
153 return (expressions_equal_p (c1, c2)
154 && types_compatible_p (TREE_TYPE (c1), TREE_TYPE (c2)));
/prebuilts/ndk/current/sources/cxx-stl/gabi++/tests/
H A Dcatch_class_03.cpp164 catch (const C2& c2) // can catch C2
166 assert(c2.id_ == 3);
167 assert(static_cast<const B&>(c2).id_ == 1);
H A Dcatch_ptr.cpp133 catch (const C2* c2) // can catch C2
135 assert(c2->id_ == 3);
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++abi/test/
H A Dcatch_class_03.pass.cpp164 catch (const C2& c2) // can catch C2
166 assert(c2.id_ == 3);
167 assert(static_cast<const B&>(c2).id_ == 1);
H A Dcatch_ptr.pass.cpp133 catch (const C2* c2) // can catch C2
135 assert(c2->id_ == 3);
/prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
H A Dcatch_class_03.cpp164 catch (const C2& c2) // can catch C2
166 assert(c2.id_ == 3);
167 assert(static_cast<const B&>(c2).id_ == 1);
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
H A Dcatch_class_03.pass.cpp164 catch (const C2& c2) // can catch C2
166 assert(c2.id_ == 3);
167 assert(static_cast<const B&>(c2).id_ == 1);
/prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
H A Dcatch_class_03.cpp164 catch (const C2& c2) // can catch C2
166 assert(c2.id_ == 3);
167 assert(static_cast<const B&>(c2).id_ == 1);
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/test/
H A Dcatch_class_03.pass.cpp164 catch (const C2& c2) // can catch C2
166 assert(c2.id_ == 3);
167 assert(static_cast<const B&>(c2).id_ == 1);
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_weakref.py440 c2 = C()
441 c2.c1 = c1
442 del c1 # still alive because c2 points to it
444 # Now when subtype_dealloc gets called on c2, it's not enough just
445 # that c2 is immune from gc while the weakref callbacks associated
446 # with c2 execute (there are none in this 2nd half of the test, btw).
450 # deallocation of c2.
451 del c2
528 # c1 from c2, but not vice-versa. The result was that c2'
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_weakref.py440 c2 = C()
441 c2.c1 = c1
442 del c1 # still alive because c2 points to it
444 # Now when subtype_dealloc gets called on c2, it's not enough just
445 # that c2 is immune from gc while the weakref callbacks associated
446 # with c2 execute (there are none in this 2nd half of the test, btw).
450 # deallocation of c2.
451 del c2
528 # c1 from c2, but not vice-versa. The result was that c2'
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_weakref.py440 c2 = C()
441 c2.c1 = c1
442 del c1 # still alive because c2 points to it
444 # Now when subtype_dealloc gets called on c2, it's not enough just
445 # that c2 is immune from gc while the weakref callbacks associated
446 # with c2 execute (there are none in this 2nd half of the test, btw).
450 # deallocation of c2.
451 del c2
528 # c1 from c2, but not vice-versa. The result was that c2'
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_weakref.py440 c2 = C()
441 c2.c1 = c1
442 del c1 # still alive because c2 points to it
444 # Now when subtype_dealloc gets called on c2, it's not enough just
445 # that c2 is immune from gc while the weakref callbacks associated
446 # with c2 execute (there are none in this 2nd half of the test, btw).
450 # deallocation of c2.
451 del c2
528 # c1 from c2, but not vice-versa. The result was that c2'
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.modifiers/
H A Demplace_hint.pass.cpp85 C c2; local
86 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
H A Dinsert_hint_const_lvalue.pass.cpp90 C c2; local
91 C::const_iterator e = c2.end();
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Dinsert_hint_const_lvalue.pass.cpp90 C c2; local
91 C::const_iterator e = c2.end();
/prebuilts/ndk/r10/platforms/android-10/arch-arm/usr/include/linux/
H A Dbinder.h17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/prebuilts/ndk/r10/platforms/android-10/arch-mips/usr/include/linux/
H A Dbinder.h17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
/prebuilts/ndk/r10/platforms/android-10/arch-x86/usr/include/linux/
H A Dbinder.h17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))

Completed in 697 milliseconds

<<11121314151617181920>>