Home
last modified time | relevance | path

Searched refs:ntype (Results 1 – 25 of 26) sorted by relevance

12

/external/webrtc/webrtc/base/
Dmacconversion.cc54 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/
Dparse.c46 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 …]
Dawk.h153 int ntype; member
202 #define isvalue(n) ((n)->ntype == NVALUE)
203 #define isexpr(n) ((n)->ntype == NEXPR)
Db.c40 #define info(v) (v)->ntype /* badly overloaded here */
/external/mesa3d/src/amd/common/
Dac_shader_util.c319 void ac_choose_spi_color_formats(unsigned format, unsigned swap, unsigned ntype, bool is_depth, in ac_choose_spi_color_formats() argument
346 if (ntype == V_028C70_NUMBER_UINT) in ac_choose_spi_color_formats()
348 else if (ntype == V_028C70_NUMBER_SINT) in ac_choose_spi_color_formats()
357 if (ntype == V_028C70_NUMBER_UNORM || ntype == V_028C70_NUMBER_SNORM) { in ac_choose_spi_color_formats()
359 if (ntype == V_028C70_NUMBER_UNORM) in ac_choose_spi_color_formats()
383 } else if (ntype == V_028C70_NUMBER_UINT) in ac_choose_spi_color_formats()
385 else if (ntype == V_028C70_NUMBER_SINT) in ac_choose_spi_color_formats()
387 else if (ntype == V_028C70_NUMBER_FLOAT) in ac_choose_spi_color_formats()
Dac_shader_util.h100 void ac_choose_spi_color_formats(unsigned format, unsigned swap, unsigned ntype, bool is_depth,
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTZDBTimeZoneNames.java300 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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTZDBTimeZoneNames.java298 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/python/cpython2/Lib/test/
Dtest_int.py56 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
Dtest_long.py90 ntype = long variable in LongTest
/external/mesa3d/src/amd/vulkan/
Dradv_formats.c452 unsigned ntype; in radv_translate_color_numformat() local
457 ntype = V_028C70_NUMBER_FLOAT; in radv_translate_color_numformat()
459 ntype = V_028C70_NUMBER_UNORM; in radv_translate_color_numformat()
461 ntype = V_028C70_NUMBER_SRGB; in radv_translate_color_numformat()
464 ntype = V_028C70_NUMBER_SINT; in radv_translate_color_numformat()
466 ntype = V_028C70_NUMBER_SNORM; in radv_translate_color_numformat()
468 ntype = ~0u; in radv_translate_color_numformat()
471 ntype = V_028C70_NUMBER_UINT; in radv_translate_color_numformat()
473 ntype = V_028C70_NUMBER_UNORM; in radv_translate_color_numformat()
475 ntype = ~0u; in radv_translate_color_numformat()
[all …]
Dradv_device.c6722 unsigned ntype, format, swap, endian; in radv_initialise_color_surface() local
6833 ntype = radv_translate_color_numformat(iview->vk_format, in radv_initialise_color_surface()
6837 if (format == V_028C70_COLOR_INVALID || ntype == ~0u) in radv_initialise_color_surface()
6843 if (ntype == V_028C70_NUMBER_UNORM || in radv_initialise_color_surface()
6844 ntype == V_028C70_NUMBER_SNORM || in radv_initialise_color_surface()
6845 ntype == V_028C70_NUMBER_SRGB) in radv_initialise_color_surface()
6850 if (ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT || in radv_initialise_color_surface()
6857 if ((ntype == V_028C70_NUMBER_UINT || ntype == V_028C70_NUMBER_SINT) && in radv_initialise_color_surface()
6868 S_028C70_ROUND_MODE(ntype != V_028C70_NUMBER_UNORM && in radv_initialise_color_surface()
6869 ntype != V_028C70_NUMBER_SNORM && in radv_initialise_color_surface()
[all …]
/external/python/cpython2/Modules/
Dparsermodule.c1072 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/
Dfsck.c379 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 …]
Ddump.c250 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()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMHelper.java627 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/
Dr600_state.c815 unsigned format, swap, ntype, endian; in r600_init_color_surface() local
858 ntype = V_0280A0_NUMBER_UNORM; in r600_init_color_surface()
860 ntype = V_0280A0_NUMBER_SRGB; in r600_init_color_surface()
863 ntype = V_0280A0_NUMBER_SNORM; in r600_init_color_surface()
865 ntype = V_0280A0_NUMBER_SINT; in r600_init_color_surface()
868 ntype = V_0280A0_NUMBER_UNORM; in r600_init_color_surface()
870 ntype = V_0280A0_NUMBER_UINT; in r600_init_color_surface()
872 ntype = V_0280A0_NUMBER_FLOAT; in r600_init_color_surface()
888 if (ntype == V_0280A0_NUMBER_UNORM || ntype == V_0280A0_NUMBER_SNORM || in r600_init_color_surface()
889 ntype == V_0280A0_NUMBER_SRGB) in r600_init_color_surface()
[all …]
Devergreen_state.c1036 unsigned ntype; member
1050 unsigned format, swap, ntype, endian; in evergreen_set_color_surface_buffer() local
1072 ntype = V_028C70_NUMBER_UNORM; in evergreen_set_color_surface_buffer()
1074 ntype = V_028C70_NUMBER_SRGB; in evergreen_set_color_surface_buffer()
1077 ntype = V_028C70_NUMBER_SNORM; in evergreen_set_color_surface_buffer()
1079 ntype = V_028C70_NUMBER_SINT; in evergreen_set_color_surface_buffer()
1082 ntype = V_028C70_NUMBER_UNORM; in evergreen_set_color_surface_buffer()
1084 ntype = V_028C70_NUMBER_UINT; in evergreen_set_color_surface_buffer()
1086 ntype = V_028C70_NUMBER_FLOAT; in evergreen_set_color_surface_buffer()
1097 S_028C70_NUMBER_TYPE(ntype) | in evergreen_set_color_surface_buffer()
[all …]
/external/u-boot/drivers/mtd/ubi/
Dbuild.c182 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()
Dubi.h911 int ntype);
912 int ubi_notify_all(struct ubi_device *ubi, int ntype,
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_state.c2200 unsigned ntype, bool is_depth) in si_choose_spi_color_formats() argument
2204 ac_choose_spi_color_formats(format, swap, ntype, is_depth, &formats); in si_choose_spi_color_formats()
2216 unsigned format, swap, ntype, endian; in si_initialize_color_surface() local
2228 ntype = V_028C70_NUMBER_FLOAT; in si_initialize_color_surface()
2230 ntype = V_028C70_NUMBER_UNORM; in si_initialize_color_surface()
2232 ntype = V_028C70_NUMBER_SRGB; in si_initialize_color_surface()
2235 ntype = V_028C70_NUMBER_SINT; in si_initialize_color_surface()
2238 ntype = V_028C70_NUMBER_SNORM; in si_initialize_color_surface()
2242 ntype = V_028C70_NUMBER_UINT; in si_initialize_color_surface()
2245 ntype = V_028C70_NUMBER_UNORM; in si_initialize_color_surface()
[all …]
/external/webrtc/webrtc/p2p/base/
Dport_unittest.cc391 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/
Dprint-decnet.c752 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/
DDOM2DTM.java1215 int ntype=n.getNodeType(); in logicalNextDOMTextNode() local
1216 if(TEXT_NODE != ntype && CDATA_SECTION_NODE != ntype) in logicalNextDOMTextNode()
/external/icu/icu4c/source/i18n/
Dtznames_impl.cpp1970 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()

12