/external/libyuv/files/source/ |
D | row_common.cc | 990 #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/ |
D | row_common.cc | 1074 #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/ |
D | move_convert.runtime.pass.cpp | 53 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()
|
D | move_convert.single.pass.cpp | 99 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()
|
D | pointer.pass.cpp | 136 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/ |
D | row_gcc.cc | 1437 #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
|
D | row_win.cc | 49 #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/ |
D | move_convert.single.pass.cpp | 78 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/ |
D | WALT_recessed_enclosure.stl | 21 …UB꼱@�@��UB���@�@��UB���@��L@V��2��<��UB���@��L@��UB���@�@)�UBy�@�@����…
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ObjCARCAliasAnalysis.cpp | 58 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/ |
D | ObjCARCAliasAnalysis.cpp | 58 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/ |
D | macros.h | 150 #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/ |
D | xcore-stringtype.c | 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;} in unionTypeB()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 570 } 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/ |
D | llvm-size.cpp | 557 } 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/ |
D | urem-power-of-two.ll | 34 ; 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/ |
D | c4350a238384153c1ac77cccd6505edc.000001ac.honggfuzz.cov | 105 ���䰶�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/ |
D | c4350a238384153c1ac77cccd6505edc.000001ac.honggfuzz.cov | 105 ���䰶�agethmUp�*���5E�0�o*Z�rC_�0f�w�����.�e3"�f��UBZ�K����蕕�|<K�0�X§����Y��gT��k�L…
|
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 147 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/ |
D | CGOpenMPRuntime.h | 641 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/ |
D | SIInsertWaitcnts.cpp | 175 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/ |
D | test1504 | 38 HTTP multi with CURLOPT_RESOLVE, cleanup sequence UB
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 1140 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/ |
D | urem-power-of-two.ll | 49 ; 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/ |
D | LiveRangeCalc.cpp | 313 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()
|