Searched refs:NT (Results 1 - 24 of 24) sorted by relevance

/external/glide/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
66 @rem Get arguments from the 4NT Shell from JP Software
78 @rem End local scope for the variables with windows NT shell
/external/glide/library/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
66 @rem Get arguments from the 4NT Shell from JP Software
78 @rem End local scope for the variables with windows NT shell
/external/smali/
H A Dgradlew.bat8 @rem Set local scope for the variables with windows NT shell
66 @rem Get arguments from the 4NT Shell from JP Software
78 @rem End local scope for the variables with windows NT shell
/external/clang/test/CXX/special/class.copy/
H A Dp11.0x.copy.cpp12 NonTrivial NT; // expected-note{{copy constructor of 'DeletedNTVariant' is implicitly deleted because variant field 'NT' has a non-trivial copy constructor}} member in union:DeletedNTVariant
20 NonTrivial NT; // expected-note{{copy constructor of 'DeletedNTVariant2' is implicitly deleted because variant field 'NT' has a non-trivial copy constructor}} member in union:DeletedNTVariant2::__anon18483
H A Dp11.0x.move.cpp12 NonTrivial NT; // expected-note{{deleted because variant field 'NT' has a non-trivial move constructor}} member in union:DeletedNTVariant
19 NonTrivial NT; // expected-note{{deleted because variant field 'NT' has a non-trivial move constructor}} member in union:DeletedNTVariant2::__anon18484
/external/chromium_org/third_party/sqlite/src/test/
H A Dmake-where7.tcl84 set NT 1000
87 for {set i 2} {$i<=$NT+1} {incr i} {
/external/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl180 $NT = 2;
249 &I(\$c, "LKEY T[%u] = [T[%u]]", $i1 % $NT, $i1 % $NT) if ($p & $pOut);
251 $i0 % $NT, $i2 % $NSI, $i1 % $NSJ) if ($p & $pComT);
260 &I(\$c, "zxt1 T[%u] = T[%u]", $i0 % $NT, $i0 % $NT) if ($p & $pComT);
266 $i3 % $NData, $i3 % $NData, $i1 % $NT) if ($p & $pOut);
279 &I(\$c, "KEYADDR(T[%u], T[%u])", $i0 % $NT, $i0 % $NT) if ($p & $pComT);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
H A DPlatform.js79 var match = userAgent.match(/Windows NT (\d+)\.(?:\d+)/);
H A DInspectorFrontendHost.js317 var match = navigator.userAgent.match(/Windows NT/);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dant.bat51 rem %~dp0 is expanded pathname of the current script under NT
79 rem and for NT handling to skip to.
196 rem Set the return code if we are not in NT. We can only set
200 rem Set the ERRORLEVEL if we are running NT.
/external/clang/test/SemaCXX/
H A Dnullptr.cpp81 typedef T<nullptr, nullptr, nullptr, nullptr> NT; typedef
/external/llvm/lib/Object/
H A DCOFFYAML.cpp297 MappingNormalization<NType<COFF::RelocationTypeI386>, uint16_t> NT(
299 IO.mapRequired("Type", NT->Type);
301 MappingNormalization<NType<COFF::RelocationTypeAMD64>, uint16_t> NT(
303 IO.mapRequired("Type", NT->Type);
/external/libexif/contrib/watcom/
H A DMakefile1 # This makefile is made for OpenWatcom/NT and runs on my system.
25 SYSTEM=NT
57 !else ifeq SYSTEM NT
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.microsoft14 ATTRIBUTE MS-CHAP-NT-Enc-PW 6 string Microsoft
/external/clang/include/clang/AST/
H A DDeclarationName.h396 struct NT { struct in struct:clang::DeclarationNameLoc
416 struct NT NamedType;
/external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
H A Dmemcpy.S218 if (p2.new) jump:NT .Ldwordaligned; /* %8 < 97 */
361 if(nokernel.new) jump:NT .Lepilog; /* likely not taken */
/external/llvm/include/llvm/Target/
H A DTargetLowering.h737 bool hasTargetDAGCombine(ISD::NodeType NT) const {
738 assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
739 return TargetDAGCombineArray[NT >> 3] & (1 << (NT&7));
1180 void setTargetDAGCombine(ISD::NodeType NT) {
1181 assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
1182 TargetDAGCombineArray[NT >> 3] |= 1 << (NT&7);
/external/openssl/crypto/perlasm/
H A Dx86asm.pl246 win32n - Windows 95/Windows NT NASM format
/external/chromium_org/third_party/boringssl/src/crypto/perlasm/
H A Dx86asm.pl276 win32n - Windows 95/Windows NT NASM format
/external/owasp/sanitizer/tools/findbugs/bin/
H A Dfindbugs.bat4 :: This will only work on Windows NT or later!
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1083 Instruction *NT = I1->clone(); local
1084 BIParent->getInstList().insert(BI, NT);
1085 if (!NT->getType()->isVoidTy()) {
1086 I1->replaceAllUsesWith(NT);
1087 I2->replaceAllUsesWith(NT);
1088 NT->takeName(I1);
1091 IRBuilder<true, NoFolder> Builder(NT);
1105 // These values do not agree. Insert a select instruction before NT
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3654 ISD::NodeType NT;
3657 case AtomicRMWInst::Xchg: NT = ISD::ATOMIC_SWAP; break;
3658 case AtomicRMWInst::Add: NT = ISD::ATOMIC_LOAD_ADD; break;
3659 case AtomicRMWInst::Sub: NT = ISD::ATOMIC_LOAD_SUB; break;
3660 case AtomicRMWInst::And: NT = ISD::ATOMIC_LOAD_AND; break;
3661 case AtomicRMWInst::Nand: NT = ISD::ATOMIC_LOAD_NAND; break;
3662 case AtomicRMWInst::Or: NT = ISD::ATOMIC_LOAD_OR; break;
3663 case AtomicRMWInst::Xor: NT = ISD::ATOMIC_LOAD_XOR; break;
3664 case AtomicRMWInst::Max: NT = ISD::ATOMIC_LOAD_MAX; break;
3665 case AtomicRMWInst::Min: NT
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/testdata/
H A Dvideo.rtpdump1438 �h��lea���t��N�b�j� ՠ���NT>3��SUF3)*TQ�?��s�����C�8�{�����KL_�L����@�
H A Dh264-svc-99-640x360.rtpdump1584 �Tʃ���N�ޅJ�[�~�_ޢo���w��/�LĊ0#�u���륇�������pG]��6��_�.Z� K_H2ndH31K ��󡱖-P�$ExmSZ�oZ��I}){�k�p8t������;��\{��ʹh�� �M*���团ȟ!6~�G�ݷ �NT���?�Q�Y̜�2��^��m� H����0����
2614 �؍� ������Qվ�²�=�|�i�e��>���MU�U��s��S���� �t�K�� �c&K����f��f��axr�8>��G��.��G s!�?h���^��5z��� �Z0�6�yf���f?��#���U(l<B1�% mQr���fva��X Uu�|d7p��g���0!G燺e/�T�C���հ ��a�[���A|&2��.��G �!D�3�Bcq�y]���9� �K�t��,��(H�r��{���OY'*p��c�Tw:`�>_�AB�����Wv���668�/f��4�D=z�>���+:o4QE�P��^ؠ� ��V��󁬵�5S�����Λ��yK߰����k\�N�c�ڨ@��> 5����m�� ��_w�� ���̓�|у�m�^��bj ABڒ��y�?4�*�,$��~p�U5$�NT�b���F7�� A��S�@��:��=�,�-�
8107 ���o�֗��FRD���NT u (�y�'����q�,d]��S��
8121 ~������� ����}�sȈ�����_��ڤZgm&hd�w���Ob`J��/� �<�5��-<��yĪ�F�� �χg�]�d�{F�NT@�{���lM���F7+��ë>�(�`��^���}3FƲ�5��d��<� ��*p��8�}�c���0 ;ٽD@��#���(<�9���f��f��R�mr��g�8�Y�g��M+� Ŗ��Y �����A P��;_2Q�7�x\���̿�8n/���mW?�GgA3�\l�؛K y��~�|z,2�GG��+`��B���M�h!Ѳ�=����84�������e�ϸ�9���"�)�"f�;$^�a �e�'�t�,��j&|�=ʾ��������ް3WN}@n5���7��������Z�^������N>�4��' ��Ð����J������^;�$��T>����]/݈ ,/�r-�Ak ���È��^|�ׂ�mm>��9� R���
9741 �������?�����Ť�;����NT����@� =xo��L�����4<0k%��G0^^�NP@����Xj}��z�����|8���|)�O��Z���|2��<x�@�
15327 ���v+� �1�p��r�|3Jɻ=}��Q�@TL<T��*������f��fv��znr,�g�b���gɍ�2���k6�]qY4:�E�؟�@��(r�J�,9`�p"ӚTRg%���D��m=��e/ b����,��aop4�7����ߨf���L���;��'�?�p�g��*��k/w8Ox>��c�ޓT�a��H�R���E{3�A~��p��=O�M�qI��o�_��?��B�~և|E���=aW�ԡ�fW�ezg|�k�cU�L߁5���m2�_��'�Y����[��pC�����7���8��R�_��>'�va�f1\(̒�OT�� ���ZǨ� [U��Y��x=�õ�W�2�3U�M�������"V;ZQ�>:��r�K����?�� �j�O�[�i���']Wڂ*���������r������Ͽ0Xo��X{�N�UWw��4yiU�*�Ѭ� ��~������NT��R߱?�s+�'�3��lO�����C��������r����� ��'���%�bx?��b�:�hJ1�g�ɍ�2���؟�^��m�U�*���w-�7�q�6�-umU���&� ��,O��{��� 0Y���q�O�E���@Z\mk���|/���9�-CkżP�{�#�N�7M��M������UBj�5 ݉�3�y.�-���}V 1��n�eAnG8�-��xk�:���?Z��Ϩ_���o�N��n�y�e�"WN�%�LK�wtP�� �331�[ۄ��w3g�-��P�����-�i��� 48��jt���wb~�X����͉�>@��E���"Hz�ф�C@��� �(��0؞_����Šg[�k��bcb���؟�p !]ۍRQ��/�OiI^���pwf*8�v�7~��7w��_��P��S�\]T^�F���P�/G\k����u��q/�'�9���N��4�ĚgT_0�2_�KG�7س؞���bx �S�D\\\]��ˬO�7 ��|v�ajH���� ����8���c��̽�'�8 @$ ȿ;����F1?�I���¶$A��rB%��!����Xb~PV�]kt9��<d�c*���9��f��fW���er-8>���c�.�� �!���+:�؁����"'�ϱ�Kb��(e���a1 �.��j�%�w��M��*���g���:��6@��~߉������p�(���ra�{fy�ɥ��J}��|f��=o=\�}�qp t%��D9#4�|$��l�d"k����L6
16414 pPl�_��Lŏb���x,��P"" �+� O|�0�H��(B��}�|9/����i���?`��*��Q��f��f��Dr~�g�h�=�gC�h� vc^XxZAR��r�[A3hJ|��HA(F�!,�m�!<:i0@��T7C�Ǥz���U��) �,�d8�9)�[�A�X��k]Q|�d��� ~�ŏh����秖���ȟ�%�DCAf�A?�J�k��-�����VU�d\�1?�a �&�pY��D��?�s�x) ࣆ��~�@4[Å.�mYxЦ���O���Y�j}�&���7�1��a�i����,s��i"S��!�͠�1�O�?��^��[D����{��C�O �|OÐX �Sę�,�@옡�k���f4���R�tJbA0�O4s>��P ㌈��YV��-fU�-W �����~#�]���Dhu��L/C��Pub�h�$v�~��'��dD����X1q_���X��r'�A�D�@t:�so�b��O����x���O�u ��`Ay��❄���|O��7j��O�@!�%�`� ,•�:E�%��qjV�'�#~?j�}� ?��Z�x% ��F\�y�lv�> p}����8V-Y0f�m��v��7�gɣ܁ٍya�?�NT����Liq17'��� _

Completed in 860 milliseconds