Home
last modified time | relevance | path

Searched refs:UB (Results 1 – 25 of 233) sorted by relevance

12345678910

/external/libyuv/files/source/
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, -VR},
1009 {-VR, -UB, -VR, -UB, -VR, -UB, -VR, -UB},
1010 {-VR, -UB, -VR, -UB, -VR, -UB, -VR, -UB},
1017 {-UB, -UB, -UB, -UB, -VR, -VR, -VR, -VR, 0, 0, 0, 0, 0, 0, 0, 0},
1022 {-VR, -VR, -VR, -VR, -UB, -UB, -UB, -UB, 0, 0, 0, 0, 0, 0, 0, 0},
1028 {UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0,
1029 UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0},
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_common.cc1074 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
1080 #define BB (UB * 128 + YGB)
1086 {-UB, -VR, -UB, -VR, -UB, -VR, -UB, -VR},
1087 {-UB, -VR, -UB, -VR, -UB, -VR, -UB, -VR},
1093 {-VR, -UB, -VR, -UB, -VR, -UB, -VR, -UB},
1094 {-VR, -UB, -VR, -UB, -VR, -UB, -VR, -UB},
1101 {-UB, -UB, -UB, -UB, -VR, -VR, -VR, -VR, 0, 0, 0, 0, 0, 0, 0, 0},
1106 {-VR, -VR, -VR, -VR, -UB, -UB, -UB, -UB, 0, 0, 0, 0, 0, 0, 0, 0},
1112 {UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0,
1113 UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0},
[all …]
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Dmove_convert.runtime.pass.cpp53 using UB = std::unique_ptr<B[]>; in test_sfinae() typedef
54 static_assert(!std::is_constructible<UA, UB&&>::value, ""); in test_sfinae()
58 using UB = std::unique_ptr<B[], GenericConvertingDeleter<1> >; in test_sfinae() typedef
59 static_assert(!std::is_constructible<UA, UB&&>::value, ""); in test_sfinae()
Dmove_convert.single.pass.cpp99 using UB = std::unique_ptr<B>; in test_sfinae() typedef
103 static_assert(std::is_constructible<UA, UB&&>::value, ""); in test_sfinae()
104 static_assert(!std::is_constructible<UA, UB&>::value, ""); in test_sfinae()
105 static_assert(!std::is_constructible<UA, const UB&>::value, ""); in test_sfinae()
109 static_assert(!std::is_constructible<UAD, UB&&>::value, ""); in test_sfinae()
Dpointer.pass.cpp136 using UB = std::unique_ptr<B[]>; in test_sfinae_runtime() typedef
141 static_assert(!std::is_constructible<UB, A*>::value, ""); in test_sfinae_runtime()
/external/libaom/libaom/third_party/libyuv/source/
Drow_gcc.cc1437 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
1443 #define BB (UB * 128 + YGB)
1449 { UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0,
1450 UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0 },
1463 { 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB,
1464 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB },
1477 #undef UB
Drow_win.cc49 #define UB -128 /* max(-128, round(-2.018 * 64)) */ macro
55 #define BB (UB * 128 + YGB)
61 { UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0,
62 UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0 },
75 { 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB,
76 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB, 0, UB },
89 #undef UB
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.single.pass.cpp78 using UB = std::unique_ptr<B>; in test_sfinae() typedef
82 static_assert(std::is_assignable<UA, UB&&>::value, ""); in test_sfinae()
83 static_assert(!std::is_assignable<UA, UB&>::value, ""); in test_sfinae()
84 static_assert(!std::is_assignable<UA, const UB&>::value, ""); in test_sfinae()
88 static_assert(!std::is_assignable<UAD, UB&&>::value, ""); in test_sfinae()
/external/walt/hardware/enclosure/
DWALT_recessed_enclosure.stl21UB꼱@���@��UB���@���@��UB���@��L@��V��2��<������UB���@��L@��UB���@���@)�UBy�@���@����������������
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DObjCARCAliasAnalysis.cpp58 const Value *UB = GetUnderlyingObjCPtr(SB, DL); in alias() local
59 if (UA != SA || UB != SB) { in alias()
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB)); in alias()
/external/llvm/lib/Analysis/
DObjCARCAliasAnalysis.cpp58 const Value *UB = GetUnderlyingObjCPtr(SB, DL); in alias() local
59 if (UA != SA || UB != SB) { in alias()
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB)); in alias()
/external/mesa3d/src/mesa/main/
Dmacros.h150 #define UNCLAMPED_FLOAT_TO_UBYTE(UB, FLT) \ argument
155 UB = (GLubyte) 0; \
157 UB = (GLubyte) 255; \
160 UB = (GLubyte) __tmp.i; \
163 #define CLAMPED_FLOAT_TO_UBYTE(UB, FLT) \ argument
167 UB = (GLubyte) __tmp.i; \
/external/clang/test/CodeGen/
Dxcore-stringtype.c164 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;} in unionTypeB()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/
Dllvm-size.cpp570 } else if (MachOUniversalBinary *UB = in printFileSectionSizes() local
578 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes()
579 E = UB->end_objects(); in printFileSectionSizes()
670 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes()
671 E = UB->end_objects(); in printFileSectionSizes()
744 bool MoreThanOneArch = UB->getNumberOfObjects() > 1; in printFileSectionSizes()
745 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes()
746 E = UB->end_objects(); in printFileSectionSizes()
/external/llvm/tools/llvm-size/
Dllvm-size.cpp557 } else if (MachOUniversalBinary *UB = in printFileSectionSizes() local
565 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes()
566 E = UB->end_objects(); in printFileSectionSizes()
657 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes()
658 E = UB->end_objects(); in printFileSectionSizes()
731 bool MoreThanOneArch = UB->getNumberOfObjects() > 1; in printFileSectionSizes()
732 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes()
733 E = UB->end_objects(); in printFileSectionSizes()
/external/llvm/test/CodeGen/X86/
Durem-power-of-two.ll34 ; FIXME: A logically right-shifted sign bit is a power-of-2 or UB.
53 ; FIXME: A zero divisor would be UB, so this could be reduced to an 'and' with 3.
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dc4350a238384153c1ac77cccd6505edc.000001ac.honggfuzz.cov105 ���䰶���agethmUp�*���5E�0�o*Z�rC_�0f�w�����.�e3"�f��UBZ�K����蕕�|<K�0�X§����Y��gT��k�L…
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dc4350a238384153c1ac77cccd6505edc.000001ac.honggfuzz.cov105 ���䰶���agethmUp�*���5E�0�o*Z�rC_�0f�w�����.�e3"�f��UBZ�K����蕕�|<K�0�X§����Y��gT��k�L…
/external/clang/lib/AST/
DStmtOpenMP.cpp147 Dir->setUpperBoundVariable(Exprs.UB); in Create()
200 Dir->setUpperBoundVariable(Exprs.UB); in Create()
369 Dir->setUpperBoundVariable(Exprs.UB); in Create()
420 Dir->setUpperBoundVariable(Exprs.UB); in Create()
760 Dir->setUpperBoundVariable(Exprs.UB); in Create()
903 Dir->setUpperBoundVariable(Exprs.UB); in Create()
954 Dir->setUpperBoundVariable(Exprs.UB); in Create()
1004 Dir->setUpperBoundVariable(Exprs.UB); in Create()
1078 Dir->setUpperBoundVariable(Exprs.UB); in Create()
1134 Dir->setUpperBoundVariable(Exprs.UB); in Create()
[all …]
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.h641 llvm::Value *UB,
671 Address IL, Address LB, Address UB, Address ST,
696 Address UB, Address ST,
736 Address UB, Address ST);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIInsertWaitcnts.cpp175 int32_t UB = (int)(ScoreUBs[T] - getWaitCountMax(EXP_CNT)); in setScoreUB() local
176 if (ScoreLBs[T] < UB) in setScoreUB()
177 ScoreLBs[T] = UB; in setScoreUB()
679 int UB = getScoreUB(T); in print() local
683 OS << " VM_CNT(" << UB - LB << "): "; in print()
686 OS << " LGKM_CNT(" << UB - LB << "): "; in print()
689 OS << " EXP_CNT(" << UB - LB << "): "; in print()
692 OS << " UNKNOWN(" << UB - LB << "): "; in print()
696 if (LB < UB) { in print()
741 const int32_t UB = getScoreUB(T); in updateByWait() local
[all …]
/external/curl/tests/data/
Dtest150438 HTTP multi with CURLOPT_RESOLVE, cleanup sequence UB
/external/llvm/tools/llvm-nm/
Dllvm-nm.cpp1140 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) { in dumpSymbolNamesFromFile() local
1147 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpSymbolNamesFromFile()
1148 E = UB->end_objects(); in dumpSymbolNamesFromFile()
1232 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpSymbolNamesFromFile()
1233 E = UB->end_objects(); in dumpSymbolNamesFromFile()
1285 bool moreThanOneArch = UB->getNumberOfObjects() > 1; in dumpSymbolNamesFromFile()
1286 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpSymbolNamesFromFile()
1287 E = UB->end_objects(); in dumpSymbolNamesFromFile()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Durem-power-of-two.ll49 ; A logically right-shifted sign bit is a power-of-2 or UB.
76 ; FIXME: A zero divisor would be UB, so this could be reduced to an 'and' with 3.
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLiveRangeCalc.cpp313 LiveRange::iterator UB = std::upper_bound(LR.begin(), LR.end(), in isDefOnEntry() local
315 if (UB != LR.begin()) { in isDefOnEntry()
316 LiveRange::Segment &Seg = *std::prev(UB); in isDefOnEntry()

12345678910