Home
last modified time | relevance | path

Searched refs:check_type (Results 1 – 8 of 8) sorted by relevance

/external/clang/test/Headers/
Dthumbv7-apple-ios-types.cpp20 struct check_type { struct
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong"); argument
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 …]
Darm64-apple-ios-types.cpp20 struct check_type { struct
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong"); argument
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 …]
Dx86_64-apple-macosx-types.cpp20 struct check_type { struct
29 static_assert(check_type<bool, 1, 1>::value, "bool is wrong"); argument
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/lzma/xz-embedded/
Dxz_dec_stream.c14 # define IS_CRC64(check_type) ((check_type) == XZ_CHECK_CRC64) argument
16 # define IS_CRC64(check_type) false argument
60 enum xz_check check_type; member
255 if (s->check_type == XZ_CHECK_CRC32) in dec_block()
259 else if (s->check_type == XZ_CHECK_CRC64) in dec_block()
279 s->block.hash.unpadded += check_sizes[s->check_type]; in dec_block()
281 if (s->check_type == XZ_CHECK_CRC32) in dec_block()
283 else if (IS_CRC64(s->check_type)) in dec_block()
392 while (s->pos < check_sizes[s->check_type]) { in check_skip()
426 s->check_type = s->temp.buf[HEADER_MAGIC_SIZE + 1]; in dec_stream_header()
[all …]
/external/toybox/toys/pending/
Dxzcat.c2350 #define IS_CRC64(check_type) ((check_type) == XZ_CHECK_CRC64) argument
2388 enum xz_check check_type; member
2578 if (s->check_type == XZ_CHECK_CRC32) in dec_block()
2581 else if (s->check_type == XZ_CHECK_CRC64) in dec_block()
2605 s->block.hash.unpadded += check_sizes[s->check_type]; in dec_block()
2711 while (s->pos < check_sizes[s->check_type]) { in check_skip()
2743 s->check_type = s->temp.buf[HEADER_MAGIC_SIZE + 1]; in dec_stream_header()
2745 if (s->check_type > XZ_CHECK_MAX) in dec_stream_header()
2748 if (s->check_type > XZ_CHECK_CRC32 && !IS_CRC64(s->check_type)) in dec_stream_header()
2771 if (s->temp.buf[8] != 0 || s->temp.buf[9] != s->check_type) in dec_stream_footer()
[all …]
/external/boringssl/src/crypto/x509v3/
Dv3_utl.c895 unsigned int flags, int check_type, in do_x509_check() argument
910 if (check_type == GEN_EMAIL) in do_x509_check()
916 else if (check_type == GEN_DNS) in do_x509_check()
942 if (gen->type != check_type) in do_x509_check()
945 if (check_type == GEN_EMAIL) in do_x509_check()
947 else if (check_type == GEN_DNS) in do_x509_check()
/external/v8/src/ic/
Dhandler-compiler.cc102 PrototypeCheckType check_type = SKIP_RECEIVER; in FrontendHeader() local
114 check_type = CHECK_ALL_MAPS; in FrontendHeader()
119 miss, check_type, return_what); in FrontendHeader()
/external/mesa3d/src/glsl/
Dast_to_hir.cpp2707 const glsl_type *check_type = var->type->is_array() in hir() local
2710 switch (check_type->base_type) { in hir()
2723 check_type->name); in hir()