HomeSort by relevance Sort by last modified time
    Searched refs:nt (Results 101 - 125 of 272) sorted by null

1 2 3 45 6 7 8 91011

  /external/libhevc/common/arm/
ihevc_intra_pred_luma_mode_3_to_9.s 60 @* @param[in] nt
78 @ word32 nt,
88 @ nt
130 ldr r4,[sp,#40] @loads nt
175 add r1, r0, r4, lsl #1 @pu1_ref + nt
179 sub r1, r1, #9 @ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
498 add r6, r0, r4, lsl #1 @pu1_ref + 2nt
501 sub r6, r6, #9 @ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
  /external/libnl/lib/route/
neightbl.c 420 struct rtnl_neightbl *nt; local
425 nl_list_for_each_entry(nt, &cache->c_items, ce_list) {
426 if (!strcasecmp(nt->nt_name, name) &&
427 ((!ifindex && !nt->nt_parms.ntp_ifindex) ||
428 (ifindex && ifindex == nt->nt_parms.ntp_ifindex))) {
429 nl_object_get((struct nl_object *) nt);
430 return nt;
  /external/lzma/C/Util/7z/
7zMain.c 288 static void ConvertFileTimeToString(const CNtfsFileTime *nt, char *s)
294 UInt64 v64 = nt->Low | ((UInt64)nt->High << 32);
  /cts/tools/dasm/src/java_cup/
Main.java 453 non_terminal nt; local
483 nt = (non_terminal)n.nextElement();
486 if (nt.use_count() == 0)
492 System.err.println("Warning: Non terminal \"" + nt.name() +
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_ntpath.py 156 # ntpath.abspath() can only be used on a system with the "nt" module
157 # (reasonably), so we protect this test with "import nt". This allows
163 import nt
  /external/protobuf/objectivec/DevTools/
compile_testing_protos.sh 57 if [[ "${NewestInput}" -nt "${OldestOutput}" ]] ; then
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_ntpath.py 156 # ntpath.abspath() can only be used on a system with the "nt" module
157 # (reasonably), so we protect this test with "import nt". This allows
163 import nt
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_ntpath.py 156 # ntpath.abspath() can only be used on a system with the "nt" module
157 # (reasonably), so we protect this test with "import nt". This allows
163 import nt
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ntpath.py 156 # ntpath.abspath() can only be used on a system with the "nt" module
157 # (reasonably), so we protect this test with "import nt". This allows
163 import nt
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ntpath.py 156 # ntpath.abspath() can only be used on a system with the "nt" module
157 # (reasonably), so we protect this test with "import nt". This allows
163 import nt
  /external/curl/projects/
build-openssl.bat 25 rem Check we are running on a Windows NT derived OS
198 nmake -f ms\nt.mak
221 nmake -f ms\nt.mak
251 nmake -f ms\nt.mak
274 nmake -f ms\nt.mak
330 echo Error: Only a Windows NT based Operating System is supported
  /external/icu/icu4c/source/common/
utrie2_builder.cpp 329 NewTrieAndStatus *nt=(NewTrieAndStatus *)context; local
330 if(value!=nt->trie->initialValue) {
331 if(nt->exclusiveLimit) {
335 utrie2_set32(nt->trie, start, value, &nt->errorCode);
337 utrie2_setRange32(nt->trie, start, end, value, TRUE, &nt->errorCode);
339 return U_SUCCESS(nt->errorCode);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 492 int nt = cp.getMethodrefNameAndType(mref); local
494 int mref2 = cp.addMethodrefInfo(sc, nt);
ConstPool.java 787 int nt = addNameAndTypeInfo(name, type); local
788 return addFieldrefInfo(classInfo, nt);
826 int nt = addNameAndTypeInfo(name, type); local
827 return addMethodrefInfo(classInfo, nt);
867 int nt = addNameAndTypeInfo(name, type); local
868 return addInterfaceMethodrefInfo(classInfo, nt);
    [all...]
  /external/libnl/doc/stylesheets/
pygments.css 42 .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_shader.h 355 node* create_node(node_type nt, node_subtype nst,
366 container_node* create_container(node_type nt = NT_LIST,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ntpath.py 452 from nt import _getfullpathname
530 from nt import _isdir as isdir
  /prebuilts/gdb/linux-x86/lib/python2.7/
ntpath.py 452 from nt import _getfullpathname
530 from nt import _isdir as isdir
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ntpath.py 452 from nt import _getfullpathname
530 from nt import _isdir as isdir
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ntpath.py 452 from nt import _getfullpathname
530 from nt import _isdir as isdir
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
spark.py 602 def deriveEpsilon(self, nt):
603 if len(self.newrules[nt]) > 1:
604 rule = self.ambiguity(self.newrules[nt])
606 rule = self.newrules[nt][0]
616 def buildTree(self, nt, item, tokens, k):
621 if rule[0] == nt:
  /external/python/cpython2/Parser/
spark.py 602 def deriveEpsilon(self, nt):
603 if len(self.newrules[nt]) > 1:
604 rule = self.ambiguity(self.newrules[nt])
606 rule = self.newrules[nt][0]
616 def buildTree(self, nt, item, tokens, k):
621 if rule[0] == nt:
  /frameworks/base/rs/java/android/renderscript/
ScriptGroup.java 710 Node nt = findNode(to.mScript); local
711 if (nt == null) {
719 nt.mInputs.add(cl);
745 Node nt = findNode(to); local
746 if (nt == null) {
754 nt.mInputs.add(cl);
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptGroup.java 776 Node nt = findNode(to.mScript); local
777 if (nt == null) {
785 nt.mInputs.add(cl);
810 Node nt = findNode(to); local
811 if (nt == null) {
819 nt.mInputs.add(cl);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
type.go 619 nt := *t
624 nt.Extra = &x
627 nt.Extra = &x
630 nt.Extra = &x
633 nt.Extra = &x
636 nt.Extra = &x
639 nt.Extra = &x
642 nt.Extra = &x
646 nt.Orig = &nt
    [all...]

Completed in 1499 milliseconds

1 2 3 45 6 7 8 91011