/external/webrtc/webrtc/base/ |
D | macconversion.cc | 54 CFNumberType ntype = CFNumberGetType(cfn); in p_convertCFNumberToInt() local 55 switch (ntype) { in p_convertCFNumberToInt() 58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8)); in p_convertCFNumberToInt() 63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16)); in p_convertCFNumberToInt() 68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32)); in p_convertCFNumberToInt() 73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64)); in p_convertCFNumberToInt() 78 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt() 84 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt() 90 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt() 96 converted = CFNumberGetValue(cfn, ntype, in p_convertCFNumberToInt() [all …]
|
/external/one-true-awk/ |
D | parse.c | 46 a->ntype = NSTAT; in exptostat() 101 x->ntype = NSTAT; in stat1() 110 x->ntype = NSTAT; in stat2() 119 x->ntype = NSTAT; in stat3() 128 x->ntype = NSTAT; in stat4() 137 x->ntype = NEXPR; in op1() 146 x->ntype = NEXPR; in op2() 155 x->ntype = NEXPR; in op3() 164 x->ntype = NEXPR; in op4() 175 x->ntype = NVALUE; in celltonode() [all …]
|
D | awk.h | 141 int ntype; member 190 #define isvalue(n) ((n)->ntype == NVALUE) 191 #define isexpr(n) ((n)->ntype == NEXPR)
|
D | b.c | 42 #define info(v) (v)->ntype /* badly overloaded here */
|
/external/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()
|
/external/icu/android_icu4j/src/main/java/android/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()
|
/external/python/cpython2/Lib/test/ |
D | test_int.py | 56 ntype = None variable in IntLongCommonTests 59 self.assertEqual(self.ntype(), 0) 63 self.assertEqual(self.ntype(x=1.2), 1) 64 self.assertEqual(self.ntype('100', base=2), 4) 65 self.assertEqual(self.ntype(x='100', base=2), 4) 66 self.assertRaises(TypeError, self.ntype, base=10) 67 self.assertRaises(TypeError, self.ntype, base=0) 71 ntype = int variable in IntTestCases
|
D | test_long.py | 90 ntype = long variable in LongTest
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_formats.c | 398 unsigned ntype; in radv_translate_color_numformat() local 400 ntype = V_028C70_NUMBER_FLOAT; in radv_translate_color_numformat() 402 ntype = V_028C70_NUMBER_UNORM; in radv_translate_color_numformat() 404 ntype = V_028C70_NUMBER_SRGB; in radv_translate_color_numformat() 407 ntype = V_028C70_NUMBER_SINT; in radv_translate_color_numformat() 409 ntype = V_028C70_NUMBER_SNORM; in radv_translate_color_numformat() 411 ntype = ~0u; in radv_translate_color_numformat() 414 ntype = V_028C70_NUMBER_UINT; in radv_translate_color_numformat() 416 ntype = V_028C70_NUMBER_UNORM; in radv_translate_color_numformat() 418 ntype = ~0u; in radv_translate_color_numformat() [all …]
|
D | radv_pipeline.c | 300 unsigned format, ntype, swap; in si_choose_spi_color_format() local 311 ntype = radv_translate_color_numformat(vk_format, desc, in si_choose_spi_color_format() 330 if (ntype == V_028C70_NUMBER_UINT) in si_choose_spi_color_format() 332 else if (ntype == V_028C70_NUMBER_SINT) in si_choose_spi_color_format() 341 if (ntype == V_028C70_NUMBER_UNORM || in si_choose_spi_color_format() 342 ntype == V_028C70_NUMBER_SNORM) { in si_choose_spi_color_format() 344 if (ntype == V_028C70_NUMBER_UNORM) in si_choose_spi_color_format() 368 } else if (ntype == V_028C70_NUMBER_UINT) in si_choose_spi_color_format() 370 else if (ntype == V_028C70_NUMBER_SINT) in si_choose_spi_color_format() 372 else if (ntype == V_028C70_NUMBER_FLOAT) in si_choose_spi_color_format()
|
D | radv_device.c | 3090 unsigned ntype, format, swap, endian; in radv_initialise_color_surface() local 3181 ntype = radv_translate_color_numformat(iview->vk_format, in radv_initialise_color_surface() 3185 if (format == V_028C70_COLOR_INVALID || ntype == ~0u) in radv_initialise_color_surface() 3191 if (ntype == V_028C70_NUMBER_UNORM || in radv_initialise_color_surface() 3192 ntype == V_028C70_NUMBER_SNORM || in radv_initialise_color_surface() 3193 ntype == V_028C70_NUMBER_SRGB) in radv_initialise_color_surface() 3198 if (ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT || in radv_initialise_color_surface() 3205 if ((ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT) && in radv_initialise_color_surface() 3216 S_028C70_ROUND_MODE(ntype != V_028C70_NUMBER_UNORM && in radv_initialise_color_surface() 3217 ntype != V_028C70_NUMBER_SNORM && in radv_initialise_color_surface() [all …]
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 1072 validate_repeating_list(node *tree, int ntype, int (*vfunc)(node *), in validate_repeating_list() argument 1076 int res = (nch && validate_ntype(tree, ntype) in validate_repeating_list() 1605 int ntype = TYPE(CHILD(tree, 0)); in validate_small_stmt() local 1607 if ( (ntype == expr_stmt) in validate_small_stmt() 1608 || (ntype == print_stmt) in validate_small_stmt() 1609 || (ntype == del_stmt) in validate_small_stmt() 1610 || (ntype == pass_stmt) in validate_small_stmt() 1611 || (ntype == flow_stmt) in validate_small_stmt() 1612 || (ntype == import_stmt) in validate_small_stmt() 1613 || (ntype == global_stmt) in validate_small_stmt() [all …]
|
/external/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() 519 u32 nid, enum FILE_TYPE ftype, enum NODE_TYPE ntype, in fsck_chk_node_blk() argument 528 if (sanity_check_nid(sbi, nid, node_blk, ftype, ntype, &ni)) in fsck_chk_node_blk() 531 if (ntype == TYPE_INODE) { in fsck_chk_node_blk() [all …]
|
D | dump.c | 250 static void dump_node_blk(struct f2fs_sb_info *sbi, int ntype, in dump_node_blk() argument 258 switch (ntype) { in dump_node_blk() 285 switch (ntype) { in dump_node_blk()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_state.c | 2231 unsigned ntype, bool is_depth) in si_choose_spi_color_formats() argument 2256 if (ntype == V_028C70_NUMBER_UINT) in si_choose_spi_color_formats() 2258 else if (ntype == V_028C70_NUMBER_SINT) in si_choose_spi_color_formats() 2267 if (ntype == V_028C70_NUMBER_UNORM || in si_choose_spi_color_formats() 2268 ntype == V_028C70_NUMBER_SNORM) { in si_choose_spi_color_formats() 2270 if (ntype == V_028C70_NUMBER_UNORM) in si_choose_spi_color_formats() 2294 } else if (ntype == V_028C70_NUMBER_UINT) in si_choose_spi_color_formats() 2296 else if (ntype == V_028C70_NUMBER_SINT) in si_choose_spi_color_formats() 2298 else if (ntype == V_028C70_NUMBER_FLOAT) in si_choose_spi_color_formats() 2351 unsigned format, swap, ntype, endian; in si_initialize_color_surface() local [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | DOMHelper.java | 627 short ntype = n.getNodeType(); in getNamespaceOfNode() local 629 if (Node.ATTRIBUTE_NODE != ntype) in getNamespaceOfNode() 654 if (Node.ATTRIBUTE_NODE == ntype) in getNamespaceOfNode() 793 if (Node.ATTRIBUTE_NODE != ntype) in getNamespaceOfNode()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_state.c | 816 unsigned format, swap, ntype, endian; in r600_init_color_surface() local 859 ntype = V_0280A0_NUMBER_UNORM; in r600_init_color_surface() 861 ntype = V_0280A0_NUMBER_SRGB; in r600_init_color_surface() 864 ntype = V_0280A0_NUMBER_SNORM; in r600_init_color_surface() 866 ntype = V_0280A0_NUMBER_SINT; in r600_init_color_surface() 869 ntype = V_0280A0_NUMBER_UNORM; in r600_init_color_surface() 871 ntype = V_0280A0_NUMBER_UINT; in r600_init_color_surface() 873 ntype = V_0280A0_NUMBER_FLOAT; in r600_init_color_surface() 889 if (ntype == V_0280A0_NUMBER_UNORM || ntype == V_0280A0_NUMBER_SNORM || in r600_init_color_surface() 890 ntype == V_0280A0_NUMBER_SRGB) in r600_init_color_surface() [all …]
|
D | evergreen_state.c | 1024 unsigned ntype; member 1038 unsigned format, swap, ntype, endian; in evergreen_set_color_surface_buffer() local 1060 ntype = V_028C70_NUMBER_UNORM; in evergreen_set_color_surface_buffer() 1062 ntype = V_028C70_NUMBER_SRGB; in evergreen_set_color_surface_buffer() 1065 ntype = V_028C70_NUMBER_SNORM; in evergreen_set_color_surface_buffer() 1067 ntype = V_028C70_NUMBER_SINT; in evergreen_set_color_surface_buffer() 1070 ntype = V_028C70_NUMBER_UNORM; in evergreen_set_color_surface_buffer() 1072 ntype = V_028C70_NUMBER_UINT; in evergreen_set_color_surface_buffer() 1074 ntype = V_028C70_NUMBER_FLOAT; in evergreen_set_color_surface_buffer() 1085 S_028C70_NUMBER_TYPE(ntype) | in evergreen_set_color_surface_buffer() [all …]
|
/external/u-boot/drivers/mtd/ubi/ |
D | build.c | 182 int ubi_volume_notify(struct ubi_device *ubi, struct ubi_volume *vol, int ntype) in ubi_volume_notify() argument 190 switch (ntype) { in ubi_volume_notify() 200 return blocking_notifier_call_chain(&ubi_notifiers, ntype, &nt); in ubi_volume_notify() 214 int ubi_notify_all(struct ubi_device *ubi, int ntype, struct notifier_block *nb) in ubi_notify_all() argument 237 nb->notifier_call(nb, ntype, &nt); in ubi_notify_all() 239 ret = blocking_notifier_call_chain(&ubi_notifiers, ntype, in ubi_notify_all()
|
D | ubi.h | 907 int ntype); 908 int ubi_notify_all(struct ubi_device *ubi, int ntype,
|
/external/webrtc/webrtc/p2p/base/ |
D | port_unittest.cc | 391 void TestLocalToStun(NATType ntype) { in TestLocalToStun() argument 394 nat_server2_.reset(CreateNatServer(kNatAddr2, ntype)); in TestLocalToStun() 397 TestConnectivity("udp", port1, StunName(ntype), port2, in TestLocalToStun() 398 ntype == NAT_OPEN_CONE, true, in TestLocalToStun() 399 ntype != NAT_SYMMETRIC, true); in TestLocalToStun() 409 void TestStunToLocal(NATType ntype) { in TestStunToLocal() argument 410 nat_server1_.reset(CreateNatServer(kNatAddr1, ntype)); in TestStunToLocal() 415 TestConnectivity(StunName(ntype), port1, "udp", port2, in TestStunToLocal() 416 true, ntype != NAT_SYMMETRIC, true, true); in TestStunToLocal() 430 void TestStunToRelay(NATType ntype, RelayType rtype, ProtocolType proto) { in TestStunToRelay() argument [all …]
|
/external/tcpdump/ |
D | print-decnet.c | 752 int ntype = info & 3; in print_t_info() local 753 switch (ntype) { in print_t_info() 831 int ntype = info & II_TYPEMASK; in print_i_info() local 832 switch (ntype) { in print_i_info()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
D | DOM2DTM.java | 1215 int ntype=n.getNodeType(); in logicalNextDOMTextNode() local 1216 if(TEXT_NODE != ntype && CDATA_SECTION_NODE != ntype) in logicalNextDOMTextNode()
|
/external/icu/icu4c/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()
|
/external/v8/src/wasm/ |
D | wasm-interpreter.cc | 2508 #define SIGN_EXTENSION_CASE(name, wtype, ntype) \ in Execute() argument 2510 ntype val = static_cast<ntype>(Pop().to<wtype>()); \ in Execute()
|