/third_party/mesa3d/src/amd/common/ |
D | ac_shader_util.c | 324 void ac_choose_spi_color_formats(unsigned format, unsigned swap, unsigned ntype, in ac_choose_spi_color_formats() argument 352 if (ntype == V_028C70_NUMBER_UINT) in ac_choose_spi_color_formats() 354 else if (ntype == V_028C70_NUMBER_SINT) in ac_choose_spi_color_formats() 360 ntype != V_028C70_NUMBER_SRGB && swap == V_028C70_SWAP_STD) /* R */ { in ac_choose_spi_color_formats() 372 if (ntype == V_028C70_NUMBER_UNORM || ntype == V_028C70_NUMBER_SNORM) { in ac_choose_spi_color_formats() 374 if (ntype == V_028C70_NUMBER_UNORM) in ac_choose_spi_color_formats() 398 } else if (ntype == V_028C70_NUMBER_UINT) in ac_choose_spi_color_formats() 400 else if (ntype == V_028C70_NUMBER_SINT) in ac_choose_spi_color_formats() 402 else if (ntype == V_028C70_NUMBER_FLOAT) in ac_choose_spi_color_formats()
|
D | ac_shader_util.h | 101 void ac_choose_spi_color_formats(unsigned format, unsigned swap, unsigned ntype,
|
/third_party/boost/boost/intrusive/detail/ |
D | node_to_value.hpp | 99 <node, IsConst>::type ntype; typedef 102 template rebind_pointer<ntype>::type npointer; 111 typedef ntype & first_argument_type;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | TZDBTimeZoneNames.java | 298 NameType ntype = match.type; in handlePrefixMatch() local 312 && (ntype == NameType.SHORT_STANDARD || ntype == NameType.SHORT_DAYLIGHT) in handlePrefixMatch() 315 ntype = NameType.SHORT_GENERIC; in handlePrefixMatch() 317 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength); in handlePrefixMatch()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | TZDBTimeZoneNames.java | 300 NameType ntype = match.type; in handlePrefixMatch() local 314 && (ntype == NameType.SHORT_STANDARD || ntype == NameType.SHORT_DAYLIGHT) in handlePrefixMatch() 317 ntype = NameType.SHORT_GENERIC; in handlePrefixMatch() 319 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength); in handlePrefixMatch()
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_formats.c | 491 unsigned ntype; in radv_translate_color_numformat() local 496 ntype = V_028C70_NUMBER_FLOAT; in radv_translate_color_numformat() 498 ntype = V_028C70_NUMBER_UNORM; in radv_translate_color_numformat() 500 ntype = V_028C70_NUMBER_SRGB; in radv_translate_color_numformat() 503 ntype = V_028C70_NUMBER_SINT; in radv_translate_color_numformat() 505 ntype = V_028C70_NUMBER_SNORM; in radv_translate_color_numformat() 507 ntype = ~0u; in radv_translate_color_numformat() 510 ntype = V_028C70_NUMBER_UINT; in radv_translate_color_numformat() 512 ntype = V_028C70_NUMBER_UNORM; in radv_translate_color_numformat() 514 ntype = ~0u; in radv_translate_color_numformat() [all …]
|
D | radv_device.c | 6592 unsigned ntype, format, swap, endian; in radv_initialise_color_surface() local 6704 ntype = radv_translate_color_numformat(iview->vk_format, desc, in radv_initialise_color_surface() 6713 if (ntype == V_028C70_NUMBER_UNORM || ntype == V_028C70_NUMBER_SNORM || in radv_initialise_color_surface() 6714 ntype == V_028C70_NUMBER_SRGB) in radv_initialise_color_surface() 6719 if (ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT || in radv_initialise_color_surface() 6726 if ((ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT) && in radv_initialise_color_surface() 6735 S_028C70_ROUND_MODE(ntype != V_028C70_NUMBER_UNORM && ntype != V_028C70_NUMBER_SNORM && in radv_initialise_color_surface() 6736 ntype != V_028C70_NUMBER_SRGB && format != V_028C70_COLOR_8_24 && in radv_initialise_color_surface() 6738 S_028C70_NUMBER_TYPE(ntype) | S_028C70_ENDIAN(endian); in radv_initialise_color_surface()
|
D | radv_pipeline.c | 426 unsigned format, ntype, swap; in radv_choose_spi_color_format() local 429 ntype = radv_translate_color_numformat(vk_format, desc, in radv_choose_spi_color_format() 433 ac_choose_spi_color_formats(format, swap, ntype, false, use_rbplus, &formats); in radv_choose_spi_color_format()
|
/third_party/ejdb/src/jbi/ |
D | jbi_selection.c | 293 switch (n->ntype) { in _jbi_collect_indexes() 322 if (n->ntype == JQP_NODE_FIELD) { in _jbi_collect_indexes() 324 } else if (n->ntype == JQP_NODE_EXPR) { in _jbi_collect_indexes() 340 && n->next && !n->next->next && (n->next->ntype == JQP_NODE_EXPR)) { in _jbi_collect_indexes()
|
/third_party/f2fs-tools/fsck/ |
D | fsck.c | 379 enum FILE_TYPE ftype, enum NODE_TYPE ntype, in sanity_check_nid() argument 409 if (ntype == TYPE_INODE && in sanity_check_nid() 421 if (ntype != TYPE_INODE && in sanity_check_nid() 436 if (ntype == TYPE_XATTR) { in sanity_check_nid() 446 if ((ntype == TYPE_INODE && ftype == F2FS_FT_DIR) || in sanity_check_nid() 447 (ntype == TYPE_XATTR && ftype == F2FS_FT_XATTR)) { in sanity_check_nid() 460 if (ntype == TYPE_INODE && in sanity_check_nid() 492 enum FILE_TYPE ftype, enum NODE_TYPE ntype, in fsck_sanity_check_nid() argument 495 return sanity_check_nid(sbi, nid, node_blk, ftype, ntype, ni); in fsck_sanity_check_nid() 527 u32 nid, enum FILE_TYPE ftype, enum NODE_TYPE ntype, in fsck_chk_node_blk() argument [all …]
|
D | dump.c | 250 static void dump_node_blk(struct f2fs_sb_info *sbi, int ntype, in dump_node_blk() argument 265 switch (ntype) { in dump_node_blk() 285 switch (ntype) { in dump_node_blk()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
D | r600_state.c | 820 unsigned format, swap, ntype, endian; in r600_init_color_surface() local 863 ntype = V_0280A0_NUMBER_UNORM; in r600_init_color_surface() 865 ntype = V_0280A0_NUMBER_SRGB; in r600_init_color_surface() 868 ntype = V_0280A0_NUMBER_SNORM; in r600_init_color_surface() 870 ntype = V_0280A0_NUMBER_SINT; in r600_init_color_surface() 873 ntype = V_0280A0_NUMBER_UNORM; in r600_init_color_surface() 875 ntype = V_0280A0_NUMBER_UINT; in r600_init_color_surface() 877 ntype = V_0280A0_NUMBER_FLOAT; in r600_init_color_surface() 893 if (ntype == V_0280A0_NUMBER_UNORM || ntype == V_0280A0_NUMBER_SNORM || in r600_init_color_surface() 894 ntype == V_0280A0_NUMBER_SRGB) in r600_init_color_surface() [all …]
|
D | evergreen_state.c | 1041 unsigned ntype; member 1055 unsigned format, swap, ntype, endian; in evergreen_set_color_surface_buffer() local 1077 ntype = V_028C70_NUMBER_UNORM; in evergreen_set_color_surface_buffer() 1079 ntype = V_028C70_NUMBER_SRGB; in evergreen_set_color_surface_buffer() 1082 ntype = V_028C70_NUMBER_SNORM; in evergreen_set_color_surface_buffer() 1084 ntype = V_028C70_NUMBER_SINT; in evergreen_set_color_surface_buffer() 1087 ntype = V_028C70_NUMBER_UNORM; in evergreen_set_color_surface_buffer() 1089 ntype = V_028C70_NUMBER_UINT; in evergreen_set_color_surface_buffer() 1091 ntype = V_028C70_NUMBER_FLOAT; in evergreen_set_color_surface_buffer() 1102 S_028C70_NUMBER_TYPE(ntype) | in evergreen_set_color_surface_buffer() [all …]
|
/third_party/boost/libs/icl/doc/ |
D | icl.qbk | 183 [def __ch_dom_t__ domain\ntype] 184 [def __ch_itv_t__ interval\ntype] 185 [def __ch_dom_mp_t__ domain\nmapping\ntype] 186 [def __ch_itv_mp_t__ interval\nmapping\ntype]
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_indirect_dispatch.c | 179 nir_ssa_def *ntype = nir_imm_intN_t(&b, (MALI_JOB_TYPE_NULL << 1) | 1, 8); in GENX() local 180 nir_store_global(&b, type_ptr, 1, ntype, 1); in GENX()
|
D | pan_shader.c | 48 #define VARYING_FORMAT(ntype, nsz, ptype, psz) \ in varying_format() argument 50 .type = nir_type_ ## ntype ## nsz, \ in varying_format()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_state.c | 2360 unsigned ntype, bool is_depth) in si_choose_spi_color_formats() argument 2364 ac_choose_spi_color_formats(format, swap, ntype, is_depth, true, &formats); in si_choose_spi_color_formats() 2376 unsigned format, swap, ntype, endian; in si_initialize_color_surface() local 2388 ntype = V_028C70_NUMBER_FLOAT; in si_initialize_color_surface() 2390 ntype = V_028C70_NUMBER_UNORM; in si_initialize_color_surface() 2392 ntype = V_028C70_NUMBER_SRGB; in si_initialize_color_surface() 2395 ntype = V_028C70_NUMBER_SINT; in si_initialize_color_surface() 2398 ntype = V_028C70_NUMBER_SNORM; in si_initialize_color_surface() 2402 ntype = V_028C70_NUMBER_UINT; in si_initialize_color_surface() 2405 ntype = V_028C70_NUMBER_UNORM; in si_initialize_color_surface() [all …]
|
/third_party/ejdb/src/jql/ |
D | jqp.h | 141 jqp_node_type_t ntype; member
|
D | jql.c | 1261 switch (n->ntype) { in _jql_match_node() 1397 if (n && ((n->ntype == JQP_NODE_ANYS) || (n->ntype == JQP_NODE_ANY)) && !n->next) { in jql_matched()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | tznames_impl.cpp | 1966 UTimeZoneNameType ntype = match->type; in handleMatch() local 1980 && (ntype == UTZNM_SHORT_STANDARD || ntype == UTZNM_SHORT_DAYLIGHT) in handleMatch() 1983 ntype = UTZNM_SHORT_GENERIC; in handleMatch() 1995 fResults->addMetaZone(ntype, matchLength, UnicodeString(match->mzID, -1), status); in handleMatch()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | tznames_impl.cpp | 1970 UTimeZoneNameType ntype = match->type; in handleMatch() local 1984 && (ntype == UTZNM_SHORT_STANDARD || ntype == UTZNM_SHORT_DAYLIGHT) in handleMatch() 1987 ntype = UTZNM_SHORT_GENERIC; in handleMatch() 1999 fResults->addMetaZone(ntype, matchLength, UnicodeString(match->mzID, -1), status); in handleMatch()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | tznames_impl.cpp | 1970 UTimeZoneNameType ntype = match->type; in handleMatch() local 1984 && (ntype == UTZNM_SHORT_STANDARD || ntype == UTZNM_SHORT_DAYLIGHT) in handleMatch() 1987 ntype = UTZNM_SHORT_GENERIC; in handleMatch() 1999 fResults->addMetaZone(ntype, matchLength, UnicodeString(match->mzID, -1), status); in handleMatch()
|
/third_party/icu/icu4c/source/i18n/ |
D | tznames_impl.cpp | 1970 UTimeZoneNameType ntype = match->type; in handleMatch() local 1984 && (ntype == UTZNM_SHORT_STANDARD || ntype == UTZNM_SHORT_DAYLIGHT) in handleMatch() 1987 ntype = UTZNM_SHORT_GENERIC; in handleMatch() 1999 fResults->addMetaZone(ntype, matchLength, UnicodeString(match->mzID, -1), status); in handleMatch()
|
/third_party/ejdb/src/jql/inc/ |
D | jqpx.c | 689 unit->node.ntype = JQP_NODE_EXPR; in _jqp_node() 694 unit->node.ntype = JQP_NODE_ANY; in _jqp_node() 696 unit->node.ntype = JQP_NODE_ANYS; in _jqp_node() 698 unit->node.ntype = JQP_NODE_FIELD; in _jqp_node()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_x509parse.data | 179 …t_example_multi.crt":"type \: 2\ndNSName \: example.com\ntype \: 2\ndNSName \: example.net\ntype \… 183 …ntype \: 0\notherName \: hardware module name \: hardware type \: 1.3.6.1.4.1.17.3, hardware seria…
|