HomeSort by relevance Sort by last modified time
    Searched defs:ntype (Results 1 - 25 of 35) sorted by null

1 2

  /external/mesa3d/src/compiler/nir/
nir_lower_io_types.c 61 const struct glsl_type *ntype = local
65 ntype, NULL);
  /external/webrtc/webrtc/base/
macconversion.cc 54 CFNumberType ntype = CFNumberGetType(cfn); local
55 switch (ntype) {
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
78 converted = CFNumberGetValue(cfn, ntype,
84 converted = CFNumberGetValue(cfn, ntype,
90 converted = CFNumberGetValue(cfn, ntype,
96 converted = CFNumberGetValue(cfn, ntype,
    [all...]
  /external/libedit/src/
map.c 1247 int ntype, rem; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
test_long.py 84 ntype = long variable in class:LongTest
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
test_long.py 84 ntype = long variable in class:LongTest
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
test_long.py 84 ntype = long variable in class:LongTest
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_int.py 53 ntype = None variable in class:IntLongCommonTests
56 self.assertEqual(self.ntype(), 0)
60 self.assertEqual(self.ntype(x=1.2), 1)
61 self.assertEqual(self.ntype('100', base=2), 4)
62 self.assertEqual(self.ntype(x='100', base=2), 4)
63 self.assertRaises(TypeError, self.ntype, base=10)
64 self.assertRaises(TypeError, self.ntype, base=0)
68 ntype = int variable in class:IntTestCases
test_long.py 84 ntype = long variable in class:LongTest
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TZDBTimeZoneNames.java 296 NameType ntype = match.type; local
310 && (ntype == NameType.SHORT_STANDARD || ntype == NameType.SHORT_DAYLIGHT)
313 ntype = NameType.SHORT_GENERIC;
315 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TZDBTimeZoneNames.java 294 NameType ntype = match.type; local
308 && (ntype == NameType.SHORT_STANDARD || ntype == NameType.SHORT_DAYLIGHT)
311 ntype = NameType.SHORT_GENERIC;
313 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength);
  /external/mesa3d/src/amd/vulkan/
radv_formats.c 396 unsigned ntype; local
398 ntype = V_028C70_NUMBER_FLOAT;
400 ntype = V_028C70_NUMBER_UNORM;
402 ntype = V_028C70_NUMBER_SRGB;
405 ntype = V_028C70_NUMBER_SINT;
407 ntype = V_028C70_NUMBER_SNORM;
409 ntype = ~0u;
412 ntype = V_028C70_NUMBER_UINT;
414 ntype = V_028C70_NUMBER_UNORM;
416 ntype = ~0u
    [all...]
radv_device.c 1586 unsigned ntype, format, swap, endian; local
    [all...]
radv_pipeline.c 583 unsigned format, ntype, swap; local
594 ntype = radv_translate_color_numformat(vk_format, desc,
613 if (ntype == V_028C70_NUMBER_UINT)
615 else if (ntype == V_028C70_NUMBER_SINT)
624 if (ntype == V_028C70_NUMBER_UNORM ||
625 ntype == V_028C70_NUMBER_SNORM) {
627 if (ntype == V_028C70_NUMBER_UNORM)
651 } else if (ntype == V_028C70_NUMBER_UINT)
653 else if (ntype == V_028C70_NUMBER_SINT)
655 else if (ntype == V_028C70_NUMBER_FLOAT
    [all...]
  /external/python/cpython2/Lib/test/
test_int.py 56 ntype = None variable in class: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 class:IntTestCases
test_long.py 90 ntype = long variable in class:LongTest
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 627 short ntype = n.getNodeType(); local
629 if (Node.ATTRIBUTE_NODE != ntype)
654 if (Node.ATTRIBUTE_NODE == ntype)
793 if (Node.ATTRIBUTE_NODE != ntype)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
syn.h 166 if ( (p)->ntype == nJunction ) (*(fpJTrans[((Junction *)(p))->jtype]))( p );\
167 else (*(fpTrans[(p)->ntype]))( p );}
170 (*(fpPrint[(p)->ntype]))( p );}
173 (a) = (*(fpReach[(p)->ntype]))( p, k, rk );}
179 else (a) = (*(fpTraverse[(p)->ntype]))( p, k, rk );}
183 *** (a) = (*(fpTraverse[(p)->ntype]))( p, k, rk );}
191 NodeType ntype; member in class:Node
198 NodeType ntype; member in struct:_node
210 NodeType ntype; member in struct:ActionNode::_anode
245 NodeType ntype; member in struct:TokNode::_toknode
289 NodeType ntype; member in struct:RuleRefNode::_rrnode
322 NodeType ntype; member in struct:Junction::_junct
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 1215 int ntype=n.getNodeType(); local
    [all...]
  /external/f2fs-tools/fsck/
fsck.c 349 enum FILE_TYPE ftype, enum NODE_TYPE ntype,
379 if (ntype == TYPE_INODE &&
391 if (ntype != TYPE_INODE &&
406 if (ntype == TYPE_XATTR) {
416 if ((ntype == TYPE_INODE && ftype == F2FS_FT_DIR) ||
417 (ntype == TYPE_XATTR && ftype == F2FS_FT_XATTR)) {
430 if (ntype == TYPE_INODE &&
487 u32 nid, enum FILE_TYPE ftype, enum NODE_TYPE ntype,
496 if (sanity_check_nid(sbi, nid, node_blk, ftype, ntype, &ni))
499 if (ntype == TYPE_INODE)
597 enum NODE_TYPE ntype; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
od-xcoff.c 365 unsigned short ntype; member in struct:xcoff32_symbol::sym
694 s->sym.ntype = bfd_h_get_16 (abfd, sym.e_type);
803 printf (" %04x %3u ", s->sym.ntype, s->sym.numaux);
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_state.c 815 unsigned format, swap, ntype, endian; local
858 ntype = V_0280A0_NUMBER_UNORM;
860 ntype = V_0280A0_NUMBER_SRGB;
863 ntype = V_0280A0_NUMBER_SNORM;
865 ntype = V_0280A0_NUMBER_SINT;
868 ntype = V_0280A0_NUMBER_UNORM;
870 ntype = V_0280A0_NUMBER_UINT;
887 if (ntype == V_0280A0_NUMBER_UINT || ntype == V_0280A0_NUMBER_SINT ||
894 surf->alphatest_bypass = ntype == V_0280A0_NUMBER_UINT || ntype == V_0280A0_NUMBER_SINT
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
parsermodule.c 1563 int ntype = TYPE(CHILD(tree, 0)); local
1598 int ntype; local
1954 int ntype = TYPE(CHILD(tree, 0)); local
    [all...]

Completed in 608 milliseconds

1 2