/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
test_callbacks.py | 16 def check_type(self, typ, arg): member in class:Callbacks 36 self.check_type(c_byte, 42) 37 self.check_type(c_byte, -42) 40 self.check_type(c_ubyte, 42) 43 self.check_type(c_short, 42) 44 self.check_type(c_short, -42) 47 self.check_type(c_ushort, 42) 50 self.check_type(c_int, 42) 51 self.check_type(c_int, -42) 54 self.check_type(c_uint, 42 [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
test_callbacks.py | 16 def check_type(self, typ, arg): member in class:Callbacks 36 self.check_type(c_byte, 42) 37 self.check_type(c_byte, -42) 40 self.check_type(c_ubyte, 42) 43 self.check_type(c_short, 42) 44 self.check_type(c_short, -42) 47 self.check_type(c_ushort, 42) 50 self.check_type(c_int, 42) 51 self.check_type(c_int, -42) 54 self.check_type(c_uint, 42 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_callbacks.py | 16 def check_type(self, typ, arg): member in class:Callbacks 36 self.check_type(c_byte, 42) 37 self.check_type(c_byte, -42) 40 self.check_type(c_ubyte, 42) 43 self.check_type(c_short, 42) 44 self.check_type(c_short, -42) 47 self.check_type(c_ushort, 42) 50 self.check_type(c_int, 42) 51 self.check_type(c_int, -42) 54 self.check_type(c_uint, 42 [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_callbacks.py | 16 def check_type(self, typ, arg): member in class:Callbacks 36 self.check_type(c_byte, 42) 37 self.check_type(c_byte, -42) 40 self.check_type(c_ubyte, 42) 43 self.check_type(c_short, 42) 44 self.check_type(c_short, -42) 47 self.check_type(c_ushort, 42) 50 self.check_type(c_int, 42) 51 self.check_type(c_int, -42) 54 self.check_type(c_uint, 42 [all...] |
/external/clang/test/Headers/ |
arm64-apple-ios-types.cpp | 20 struct check_type { struct 29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong"); 31 static_assert(check_type<char, 1, 1>::value, "char is wrong"); 32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong"); 33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong"); 35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong"); 36 static_assert(check_type<char32_t, 4, 4>::value, "char32_t is wrong"); 37 static_assert(check_type<wchar_t, 4, 4>::value, "wchar_t is wrong"); 39 static_assert(check_type<short, 2, 2>::value, "short is wrong"); 40 static_assert(check_type<unsigned short, 2, 2>::value, "unsigned short is wrong") [all...] |
thumbv7-apple-ios-types.cpp | 20 struct check_type { struct 29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong"); 31 static_assert(check_type<char, 1, 1>::value, "char is wrong"); 32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong"); 33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong"); 35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong"); 36 static_assert(check_type<char32_t, 4, 4>::value, "char32_t is wrong"); 37 static_assert(check_type<wchar_t, 4, 4>::value, "wchar_t is wrong"); 39 static_assert(check_type<short, 2, 2>::value, "short is wrong"); 40 static_assert(check_type<unsigned short, 2, 2>::value, "unsigned short is wrong") [all...] |
x86_64-apple-macosx-types.cpp | 20 struct check_type { struct 29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong"); 31 static_assert(check_type<char, 1, 1>::value, "char is wrong"); 32 static_assert(check_type<signed char, 1, 1>::value, "signed char is wrong"); 33 static_assert(check_type<unsigned char, 1, 1>::value, "unsigned char is wrong"); 35 static_assert(check_type<char16_t, 2, 2>::value, "char16_t is wrong"); 36 static_assert(check_type<char32_t, 4, 4>::value, "char32_t is wrong"); 37 static_assert(check_type<wchar_t, 4, 4>::value, "wchar_t is wrong"); 39 static_assert(check_type<short, 2, 2>::value, "short is wrong"); 40 static_assert(check_type<unsigned short, 2, 2>::value, "unsigned short is wrong") [all...] |
/external/v8/test/cctest/ |
expression-type-collector-macros.h | 18 #define CHECK_TYPE(type) \ 33 #define CHECK_TYPE(type) CHECK(types[index].bounds.Narrows(type)); 40 CHECK_TYPE(type); \
|
/art/runtime/verifier/ |
register_line-inl.h | 131 const RegType& check_type) { 134 if (UNLIKELY(!check_type.IsAssignableFrom(src_type))) { 136 if (!check_type.IsNonZeroReferenceTypes() || !src_type.IsNonZeroReferenceTypes()) { 139 } else if (check_type.IsUninitializedTypes() || src_type.IsUninitializedTypes()) { 142 } else if (check_type.IsUnresolvedTypes() || src_type.IsUnresolvedTypes()) { 148 << src_type << " but expected " << check_type; local 151 if (check_type.IsLowHalf()) {
|
/external/lzma/xz-embedded/ |
xz_dec_stream.c | 14 # define IS_CRC64(check_type) ((check_type) == XZ_CHECK_CRC64) 16 # define IS_CRC64(check_type) false 60 enum xz_check check_type; member in struct:xz_dec 255 if (s->check_type == XZ_CHECK_CRC32) 259 else if (s->check_type == XZ_CHECK_CRC64) 279 s->block.hash.unpadded += check_sizes[s->check_type]; 281 if (s->check_type == XZ_CHECK_CRC32) 283 else if (IS_CRC64(s->check_type)) 392 while (s->pos < check_sizes[s->check_type]) { [all...] |
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_802_3.h | 16 #define CHECK_TYPE 0xaa
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 13 #define CHECK_TYPE 0xaa
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 15 #define CHECK_TYPE 0xaa
|
/bionic/libc/kernel/uapi/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/development/ndk/platforms/android-21/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|
/prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/netfilter_bridge/ |
ebt_802_3.h | 27 #define CHECK_TYPE 0xaa
|