Searched refs:UB (Results 1 - 25 of 29) sorted by relevance

12

/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
H A Dmove_convert.runtime.pass.cpp53 using UB = std::unique_ptr<B[]>;
54 static_assert(!std::is_constructible<UA, UB&&>::value, "");
58 using UB = std::unique_ptr<B[], GenericConvertingDeleter<1> >;
59 static_assert(!std::is_constructible<UA, UB&&>::value, "");
H A Dmove_convert.single.pass.cpp99 using UB = std::unique_ptr<B>;
103 static_assert(std::is_constructible<UA, UB&&>::value, "");
104 static_assert(!std::is_constructible<UA, UB&>::value, "");
105 static_assert(!std::is_constructible<UA, const UB&>::value, "");
109 static_assert(!std::is_constructible<UAD, UB&&>::value, "");
H A Dpointer.pass.cpp136 using UB = std::unique_ptr<B[]>;
141 static_assert(!std::is_constructible<UB, A*>::value, "");
/external/libvpx/libvpx/third_party/libyuv/source/
H A Drow_common.cc981 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
987 #define BB (UB * 128 + YGB)
993 { -UB, -VR, -UB, -VR, -UB, -VR, -UB, -VR },
994 { -UB, -VR, -UB, -VR, -UB, -VR, -UB,
1052 #undef UB macro
1068 #define UB macro
1139 #undef UB macro
1156 #define UB macro
1227 #undef UB macro
[all...]
/external/libyuv/files/source/
H A Drow_common.cc990 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
996 #define BB (UB * 128 + YGB)
1002 {-UB, -VR, -UB, -VR, -UB, -VR, -UB, -VR},
1003 {-UB, -VR, -UB, -VR, -UB, -VR, -UB,
1055 #undef UB macro
1071 #define UB macro
1136 #undef UB macro
1154 #define UB macro
1219 #undef UB macro
[all...]
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
H A Dmove_convert.single.pass.cpp78 using UB = std::unique_ptr<B>;
82 static_assert(std::is_assignable<UA, UB&&>::value, "");
83 static_assert(!std::is_assignable<UA, UB&>::value, "");
84 static_assert(!std::is_assignable<UA, const UB&>::value, "");
88 static_assert(!std::is_assignable<UAD, UB&&>::value, "");
/external/llvm/lib/Analysis/
H A DObjCARCAliasAnalysis.cpp58 const Value *UB = GetUnderlyingObjCPtr(SB, DL); local
59 if (UA != SA || UB != SB) {
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB));
H A DDependenceAnalysis.cpp860 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
861 if (!isa<SCEVCouldNotCompute>(UB)) {
863 SE->getTypeSizeInBits(UB->getType())) {
885 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
886 if (!isa<SCEVCouldNotCompute>(UB)) {
888 SE->getTypeSizeInBits(UB->getType())) {
992 const SCEV *UB = SE->getBackedgeTakenCount(L); local
993 return SE->getTruncateOrZeroExtend(UB, T);
1003 if (const SCEV *UB = collectUpperBound(L, T))
1004 return dyn_cast<SCEVConstant>(UB);
[all...]
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c150 // CHECK: !{{[0-9]+}} = !{i32 (%union.UB*)* @unionTypeB,
151 // CHECK: !"f{si}(u(UB){m(N2){b(2:si)},m(N4){b(4:si)},m(){b(2:si)},
164 union UB{int:4; int:2; int N4:4; int N2:2; unsigned int:4; signed int:4; union
167 int unionTypeB(union UB ub) {return UnionAnon.A;}
/external/mesa3d/src/mesa/main/
H A Dmacros.h150 #define UNCLAMPED_FLOAT_TO_UBYTE(UB, FLT) \
155 UB = (GLubyte) 0; \
157 UB = (GLubyte) 255; \
160 UB = (GLubyte) __tmp.i; \
163 #define CLAMPED_FLOAT_TO_UBYTE(UB, FLT) \
167 UB = (GLubyte) __tmp.i; \
/external/llvm/tools/llvm-size/
H A Dllvm-size.cpp557 } else if (MachOUniversalBinary *UB =
565 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
566 E = UB->end_objects();
657 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
658 E = UB->end_objects();
731 bool MoreThanOneArch = UB->getNumberOfObjects() > 1;
732 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
733 E = UB->end_objects();
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h641 llvm::Value *UB,
649 /// bounds \a LB and \a UB and stride \a ST.
661 /// \param UB Address of the output variable in which the upper iteration
671 Address IL, Address LB, Address UB, Address ST,
685 /// \param UB Address of the output variable in which the upper iteration
696 Address UB, Address ST,
729 /// \param UB Address of the output variable in which the upper iteration
736 Address UB, Address ST);
H A DCGStmtOpenMP.cpp1673 Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) {
1689 // UB = min(UB, GlobalUB)
1693 // IV < UB
1697 LB, UB, ST);
1746 // Emit "LB = LB + Stride", "UB = UB + Stride".
1765 Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) {
1808 // while(__kmpc_dispatch_next(&LB, &UB)) {
1810 // while (idx <= UB) { BOD
1671 EmitOMPOuterLoop(bool DynamicOrOrdered, bool IsMonotonic, const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered, Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) argument
1762 EmitOMPForOuterLoop( const OpenMPScheduleTy &ScheduleKind, bool IsMonotonic, const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered, Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) argument
1844 EmitOMPDistributeOuterLoop( OpenMPDistScheduleClauseKind ScheduleKind, const OMPDistributeDirective &S, OMPPrivateScope &LoopScope, Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) argument
1988 LValue UB = local
2662 LValue UB = local
[all...]
H A DCGOpenMPRuntime.cpp2452 bool Ordered, llvm::Value *UB,
2475 UB, // Upper
2486 unsigned IVSize, bool Ordered, Address IL, Address LB, Address UB,
2521 UB.getPointer(), // &UB
2534 Address UB, Address ST,
2543 Ordered, IL, LB, UB, ST, Chunk);
2549 bool Ordered, Address IL, Address LB, Address UB, Address ST,
2558 UB, ST, Chunk);
2585 Address LB, Address UB,
2448 emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc, const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, bool Ordered, llvm::Value *UB, llvm::Value *Chunk) argument
2482 emitForStaticInitCall( CodeGenFunction &CGF, llvm::Value *UpdateLocation, llvm::Value *ThreadId, llvm::Constant *ForStaticInitFunction, OpenMPSchedType Schedule, OpenMPScheduleClauseModifier M1, OpenMPScheduleClauseModifier M2, unsigned IVSize, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk) argument
2529 emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc, const OpenMPScheduleTy &ScheduleKind, unsigned IVSize, bool IVSigned, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk) argument
2546 emitDistributeStaticInit( CodeGenFunction &CGF, SourceLocation Loc, OpenMPDistScheduleClauseKind SchedKind, unsigned IVSize, bool IVSigned, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk) argument
2582 emitForNext(CodeGenFunction &CGF, SourceLocation Loc, unsigned IVSize, bool IVSigned, Address IL, Address LB, Address UB, Address ST) argument
[all...]
H A DCodeGenFunction.h2553 Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk);
2557 Address UB, Address ST, Address IL,
2562 Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk);
/external/clang/lib/AST/
H A DStmtOpenMP.cpp147 Dir->setUpperBoundVariable(Exprs.UB);
200 Dir->setUpperBoundVariable(Exprs.UB);
369 Dir->setUpperBoundVariable(Exprs.UB);
420 Dir->setUpperBoundVariable(Exprs.UB);
760 Dir->setUpperBoundVariable(Exprs.UB);
903 Dir->setUpperBoundVariable(Exprs.UB);
954 Dir->setUpperBoundVariable(Exprs.UB);
1004 Dir->setUpperBoundVariable(Exprs.UB);
1078 Dir->setUpperBoundVariable(Exprs.UB);
1134 Dir->setUpperBoundVariable(Exprs.UB);
[all...]
/external/clang/lib/Analysis/
H A DReachableCode.cpp303 const CFGBlock *UB = I->getPossiblyUnreachableBlock(); local
304 if (!UB)
314 B = UB;
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1140 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1147 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1148 E = UB->end_objects();
1232 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1233 E = UB->end_objects();
1285 bool moreThanOneArch = UB->getNumberOfObjects() > 1;
1286 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1287 E = UB->end_objects();
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp341 if (MachOUniversalBinary *UB = dyn_cast_or_null<MachOUniversalBinary>(Bin)) {
347 UB->getObjectForArch(ArchName);
/external/clang/include/clang/AST/
H A DStmtOpenMP.h448 void setUpperBoundVariable(Expr *UB) { argument
453 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
535 Expr *UB; member in struct:clang::OMPLoopDirective::HelperExprs
583 UB = nullptr;
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp3921 Expr *UB = nullptr;
3925 /// Var < UB
3926 /// Var <= UB
3927 /// UB > Var
3928 /// UB >= Var
3941 /// \brief Check test-expr for canonical form, save upper-bound (#UB), flags
3994 assert(!LB && !UB && !Step);
3998 (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
4022 UB
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp1403 static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB, argument
1407 if (UB->getMagic() == MachO::FAT_MAGIC)
1409 else // UB->getMagic() == MachO::FAT_MAGIC_64
1414 uint32_t nfat_arch = UB->getNumberOfObjects();
1415 StringRef Buf = UB->getData();
1419 outs() << "nfat_arch " << UB->getNumberOfObjects();
1428 MachOUniversalBinary::ObjectForArch OFA(UB, i);
1433 MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
1592 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin))
1593 printMachOUniversalHeaders(UB, !NonVerbos
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DObjCARC.cpp683 const Value *UB = GetUnderlyingObjCPtr(SB); local
684 if (UA != SA || UB != SB) {
685 Result = AliasAnalysis::alias(Location(UA), Location(UB));
/external/webrtc/data/voice_engine/stereo_rtp_files/
H A Dhrtf_g722_1C_48.rtp1071 2v���B�v�4��� �H�u#p�QIG+F��B��):B�<�����,p=�4"jx ���_���}����I��X�c' ���p��6DD�R2�KYޯ�)�#COv���,a���?S� a�x&�`�. J�:��-RW�j k�`0N_r͍ۂ�/!��h�P��i*��Z׉���%�oKVb�襘���M.�O"3�aaU�q�-KVX���x���%m�>���-�R�F�P&k������AE䳪P�0f��i�1�*�hJ��.�9���B�ư3��+8�� ddt�M���}���EI��X��D\��$�Lc�> �G�"�n`8 `��UVD�-��,~όep(�![�dk��!���`v,v�I��L�3��鑱 ��$�G�:��x�G��"��aS@��o�2���ԩ�����B���������#�@;�5Fm�(�r��,�4]��,�ueVH#�Ap(��G�(H�"�ۓ:�&@[-R�UB�k5:#tp(s
1611 �`���l�}���I��XxM�98��UB��/-+H�R��h���&(hٴ�Tb�d������/�pm� k
2929 G���(�,��ޙ%>�t���i���������Aa�D L"w5���H��hz3��ƪ! k^�b��L��Q��IP��Jv#�L:�P�P- Ҡ ����SU-2�J�`�ԈUB��l���B�����j����������)T�}�<�I��X��-3��v6`� �@��01P�JBS�#+
3752 a0j ��l6L��/�9�XG�Q�D[^��aa~:4�Y�r�+R��f�h\`q��jF3Tel��R�P�-` .B*X:@A@~{�z-�z�yCj{UB�����5H�}���EI��X���
4542 E�D�^,��.�׆0& ��Pf �@�*��0��g�I>g4gCͫ��u+UB`[[�yL ������/�@��}:�%�I��X���aABh�E�8<�����XB�A�)�m�ۃ0�"���U,\O�(6�`5���N<�JW�9P#b1�Q^, ��R�n���W��ڃt�����JpB豮����wc����B��aUA��T��� º�_*�+Pd�@�D6\��g� ��Cq�_"�p�`��1r���u�����t(�X� ,���a�W���}1�� +X�s�f.$� �i��c?�@��};�(EI��Xj��!���UDV%����L�ɍ�X0��E'J8N� �Z�O�Vp��r1�s�ƃl2Ƙ�`-#�]� �ku5�T�d�Jv�^5�����L��ǁtx��)kο� �U�DRh��j��F� 
5560 �7����F ��j��X�P0���w��O$�}����I��X{����Հ=@�>���ywj��R�3��%1)����K�=^3O,P�"�J0��UB �LYh@Y)&�� e]�H��4G�m�./+z���#�&ڴ#Q��T�A15���S��q��i�GI� ��VT�?�W�:�;�,������3�j�ǃ���X�B`�������+(�� NJE�c%���rb�r�b��2�I�(�i�D �=`VC���$`Q� ©��$F߿�O8�}���EI��X���¹�G'0 ��9�I([�$��&)ٱ��7��
6309 x^�b�A�s�Y`H���$b4UjS�Ϸ�@2)�&c\ݑ���M&X�9j1W��"���i����H��Zd�}��^�I��Xd�=U�UB,8d��b�����}cr`uj���u�>�f�朗a �,Қ�*pCE�P@=�h�tB��(�7" ��g*u�m�c���¢L̝y�%b�Х��I�)���̹Y&[�b9T<0����I<����@^S�(�" ��)��u� l(&���J�8�Q;hZ�B� ���"���(%� :�,iȚ��E�I]�[� ���֊7�* �(X��t�Ihm3��Zx�}��aEI��X���#Ȩ�'@�[��'�I'C��)��` �J�4�M$������Oΰ��,u�P��)6S�b
6396 -)VB�W���B�ah3h)2R���U�B5*(�f փ^/����t��2v"�"�!@IJ9.D$Gw �Cl�q��j�7�ڀ��������[��}����I��X�QZM$UB��աhL��E$�W�7�J�֟U �
6455 m��d�������\X�}���EI��X�׋��*EB�A GB��1Q3Ipr��.�@��de̓ru2������UBHE�I� 35ñ��3�]��P����4�&�B�eÿqN������?�3�@ ��?��_���Շ&�N�`s"4�ǎm]��)�@=IpJj�!�58@�=�R�)A��7OЏ([+�x��T��yP�-�L����֘f�!��[ *�2�W�<ޠ����l� ���e� �x���\l�}����I��X���t`ª�D�U�ƁH%�
H A Dhrtf_g722_1C_48_jitterT2.rtp1070 2v���B�v�4��� �H�u#p�QIG+F��B��):B�<�����,p=�4"jx ���_�d�}����I��X�c' ���p��6DD�R2�KYޯ�)�#COv���,a���?S� a�x&�`�. J�:��-RW�j k�`0N_r͍ۂ�/!��h�P��i*��Z׉���%�oKVb�襘���M.�O"3�aaU�q�-KVX���x���%m�>���-�R�F�P&k������AE䳪P�0f��i�1�*�hJ��.�9���B�ư3��+8�� ddt�M�r�}����I��X�35����5 ��qPP$MJ��Y��@�o�ޑ �d�a� �>�"G$Z �=��%�����[q&�Dг`M<57�J��DH\�QD��^ =UQ�a�MXW�3��*W@;C�j��� ��'3b-#��n%Q&"�$�+�Qw�� �&/iB���D3H�X1$�T�L���2f 0xݰP�x(��&�$(�j�8p�)�=*�.��qRl�q{t�s�s�}���EI��X��D\��$�Lc�> �G�"�n`8 `��UVD�-��,~όep(�![�dk��!���`v,v�I��L�3��鑱 ��$�G�:��x�G��"��aS@��o�2���ԩ�����B���������#�@;�5Fm�(�r��,�4]��,�ueVH#�Ap(��G�(H�"�ۓ:�&@[-R�UB�k5:#tp(s
1599 �`���[�}���I��XxM�98��UB��/-+H�R��h���&(hٴ�Tb�d������/�pm� k
2916 G���(�,��ޙ%>�t���i���������Aa�D L"w5���H��hz3��ƪ! k^�b��L��Q��IP��Jv#�L:�P�P- Ҡ ����SU-2�J�`�ԈUB��l���B�����j����������)�}�<�I��X��-3��v6`� �@��01P�JBS�#+
3715 a0j ��l6L��/�9�XG�Q�D[^��aa~:4�Y�r�+R��f�h\`q��jF3Tel��R�P�-` .B*X:@A@~{�z-�z�yCj{UB�����4��}���EI��X���
4486 E�D�^,��.�׆0& ��Pf �@�*��0��g�I>g4gCͫ��u+UB`[[�yL ������/�@��};�(EI��Xj��!���UDV%����L�ɍ�X0��E'J8N� �Z�O�Vp��r1�s�ƃl2Ƙ�`-#�]� �ku5�T�d�Jv�^5�����L��ǁtx��)kο� �U�DRh��j��F� 
5489 �7����F ��j��X�P0���w��N�}����I��X{����Հ=@�>���ywj��R�3��%1)����K�=^3O,P�"�J0��UB �LYh@Y)&�� e]�H��4G�m�./+z���#�&ڴ#Q��T�A15���S��q��i�GI� ��VT�?�W�:�;�,������3�j�ǃ���X�B`�������+(�� NJE�c%���rb�r�b��2�I�(�i�D �=`VC���$`Q� ©��$F߿�N�}���EI��X���¹�G'0 ��9�I([�$��&)ٱ��7��
6218 x^�b�A�s�Y`H���$b4UjS�Ϸ�@2)�&c\ݑ���M&X�9j1W��"���i����H��Z)�}��^�I��Xd�=U�UB,8d��b�����}cr`uj���u�>�f�朗a �,Қ�*pCE�P@=�h�tB��(�7" ��g*u�m�c���¢L̝y�%b�Х��I�)���̹Y&[�b9T<0����I<����@^S�(�" ��)��u� l(&���J�8�Q;hZ�B� ���"���(%� :�,iȚ��E�I]�[� ���֊7�* �(X��t�Ihm3��Z0�}��aEI��X���#Ȩ�'@�[��'�I'C��)��` �J�4�M$������Oΰ��,u�P��)6S�b
6305 -)VB�W���B�ah3h)2R���U�B5*(�f փ^/����t��2v"�"�!@IJ9.D$Gw �Cl�q��j�7�ڀ��������[l�}����I��X�QZM$UB��աhL��E$�W�7�J�֟U �
6365 m��d�������\?�}���EI��X�׋��*EB�A GB��1Q3Ipr��.�@��de̓ru2������UBHE�I� 35ñ��3�]��P����4�&�B�eÿqN������?�3�@ ��?��_���Շ&�N�`s"4�ǎm]��)�@=IpJj�!�58@�=�R�)A��7OЏ([+�x��T��yP�-�L����֘f�!��[ *�2�W�<ޠ����l� ���e� �x���\B�}����I��X���t`ª�D�U�ƁH%�

Completed in 720 milliseconds

12