/external/libyuv/files/source/ |
D | row_posix.cc | 1278 #define UR 0 macro 1287 #define BR UR * 128 + VR * 128 1306 { UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR }, 1314 { VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR }
|
D | row_win.cc | 1480 #define UR 0 macro 1489 #define BR UR * 128 + VR * 128 1496 UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR 1508 VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR,
|
D | row_common.cc | 430 #define UR 0 macro 439 #define BR UR * 128 + VR * 128 455 uint32 r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6); in YuvPixel() 467 *r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6); in YuvPixel2()
|
/external/clang/test/Lexer/ |
D | string_concat.cpp | 17 …const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of s… in f() 26 …const char16_t* k = u"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation o… in f() 45 …const wchar_t* x = L"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of… in f()
|
D | string-literal-encoding.c | 14 …char32_t const *f = UR"(�����)"; // expected-error {{illegal character encoding in string literal}} in f() 28 …char32_t const *f = UR"(foo �����)"; // expected-error {{illegal character encoding in string lite… in g()
|
D | pragma-operators.cpp | 26 #define pragma_UR _Pragma(UR"(clang diagnostic error "-Wunused")")
|
/external/llvm/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 91 User *UR = U.getUser(); in PropagateConstantsIntoArguments() local 93 if (isa<BlockAddress>(UR)) continue; in PropagateConstantsIntoArguments() 97 if (!isa<CallInst>(UR) && !isa<InvokeInst>(UR)) in PropagateConstantsIntoArguments() 100 CallSite CS(cast<Instruction>(UR)); in PropagateConstantsIntoArguments()
|
D | ArgumentPromotion.cpp | 473 User *UR = U.getUser(); in isSafeToPromoteArgument() local 475 if (LoadInst *LI = dyn_cast<LoadInst>(UR)) { in isSafeToPromoteArgument() 481 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UR)) { in isSafeToPromoteArgument()
|
/external/llvm/lib/Transforms/Utils/ |
D | GlobalStatus.cpp | 53 const User *UR = U.getUser(); in analyzeGlobalAux() local 54 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(UR)) { in analyzeGlobalAux() 64 } else if (const Instruction *I = dyn_cast<Instruction>(UR)) { in analyzeGlobalAux() 160 } else if (const Constant *C = dyn_cast<Constant>(UR)) { in analyzeGlobalAux()
|
/external/llvm/lib/Support/ |
D | ScaledNumber.cpp | 27 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS); in multiply64() local 30 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR; in multiply64()
|
/external/clang/test/SemaCXX/ |
D | cxx0x-type-convert-construct.cpp | 20 …URstr = UR"foo(a UTF-32 raw string)foo"; // expected-error {{assigning to 'char32_t *' from incomp… in f()
|
D | cxx98-compat.cpp | 37 (void)UR"X(str)X"; // expected-warning {{raw string literals are incompatible with C++98}} in Literals()
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
D | p12.cpp | 20 int f = UR"("тест )"_x;
|
/external/clang/test/CodeGen/ |
D | string-literal-unicode-conversion.c | 57 char32_t const *h = UR"(6Кошка)"; in f()
|
D | string-literal.c | 83 const char32_t *k = UR"bar(IJ)bar"; in main()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 1671 const User *UR = U.getUser(); in AddressIsTaken() local 1672 if (const StoreInst *SI = dyn_cast<StoreInst>(UR)) { in AddressIsTaken() 1675 } else if (isa<InvokeInst>(UR) || isa<CallInst>(UR)) { in AddressIsTaken() 1677 ImmutableCallSite CS(cast<Instruction>(UR)); in AddressIsTaken() 1680 } else if (const LoadInst *LI = dyn_cast<LoadInst>(UR)) { in AddressIsTaken() 1683 } else if (isa<BlockAddress>(UR)) { in AddressIsTaken()
|
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 615 ConstantRange UR = Result_zext.truncate(getBitWidth()); in multiply() local 634 return UR.getSetSize().ult(SR.getSetSize()) ? UR : SR; in multiply()
|
/external/skia/src/effects/ |
D | SkBlurMaskFilter.cpp | 378 const SkVector& UR = rrect.radii(SkRRect::kUpperRight_Corner); in filterRRectToNine() local 383 const SkScalar rightUnstretched = SkTMax(UR.fX, LR.fX) + SkIntToScalar(2 * margin.fX); in filterRRectToNine() 395 const SkScalar topUnstretched = SkTMax(UL.fY, UR.fY) + SkIntToScalar(2 * margin.fY); in filterRRectToNine() 409 radii[SkRRect::kUpperRight_Corner] = UR; in filterRRectToNine()
|
/external/libdrm/intel/tests/ |
D | gen7-3d.batch-ref.txt | 138 0x12300224: 0xa0000840: (PP ), point UR
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 1014 CAMLprim LLVMValueRef llvm_user(LLVMUseRef UR) { in llvm_user() argument 1015 return LLVMGetUser(UR); in llvm_user() 1019 CAMLprim LLVMValueRef llvm_used_value(LLVMUseRef UR) { in llvm_used_value() argument 1020 return LLVMGetUsedValue(UR); in llvm_used_value()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/ |
D | fr-FR_nk0_kdt_dur.pkb | 116 …�g&�ä�M��s`A�����'eŐS�����"�H�`������pe�bH�V"�4"�<>$�%k�r���UR>q�ωh��V:C�#�&+E�.`…
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_gl0_kdt_dur.pkb | 335 …@>āPp�Gf���Q��E�)R���V����W�0����,����B@�Hf���<���� -I|��b)1R��;�UR�f��9�O�*W3��
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/ |
D | en-US_lh0_kdt_dur.pkb | 696 …/���.�"ђ�o)��Ґa���^0�2��/I�h�+I�M\���w_�=����A���A�0������e���n�UR�M�ae��r�g�+ְp(װ…
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64SchedA57.td | 393 def : InstRW<[A57WriteIVA, A57ReadIVA3], (instregex "^(S|SR|U|UR)SRA")>;
|
/external/jpeg/ |
D | usage.doc | 441 -transverse Transverse transpose (across UR-to-LL axis).
|