/external/clang/test/Analysis/ |
D | auto-obj-dtors-cfg-output.cpp | 30 extern const bool UV; 132 if (UV) return; in test_return() 194 if (UV) goto l0; in test_goto() 195 if (UV) goto l1; in test_goto() 322 if (UV) return; in test_if_jumps() 326 if (UV) return; in test_if_jumps() 460 if (UV) break; in test_while_jumps() 461 if (UV) continue; in test_while_jumps() 462 if (UV) return; in test_while_jumps() 489 while (UV); in test_do_implicit_scope() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/GlobalISel/ |
D | legalize-add-v256.mir | 44 …; SSE2: [[UV:%[0-9]+]]:_(<16 x s8>), [[UV1:%[0-9]+]]:_(<16 x s8>) = G_UNMERGE_VALUES [[DEF]](<32 x… 46 …; AVX1: [[UV:%[0-9]+]]:_(<16 x s8>), [[UV1:%[0-9]+]]:_(<16 x s8>) = G_UNMERGE_VALUES [[DEF]](<32 x… 48 ; SSE2: [[ADD:%[0-9]+]]:_(<16 x s8>) = G_ADD [[UV]], [[UV2]] 50 ; AVX1: [[ADD:%[0-9]+]]:_(<16 x s8>) = G_ADD [[UV]], [[UV2]] 82 …; SSE2: [[UV:%[0-9]+]]:_(<8 x s16>), [[UV1:%[0-9]+]]:_(<8 x s16>) = G_UNMERGE_VALUES [[DEF]](<16 x… 84 ; SSE2: [[ADD:%[0-9]+]]:_(<8 x s16>) = G_ADD [[UV]], [[UV2]] 87 …; AVX1: [[UV:%[0-9]+]]:_(<8 x s16>), [[UV1:%[0-9]+]]:_(<8 x s16>) = G_UNMERGE_VALUES [[DEF]](<16 x… 89 ; AVX1: [[ADD:%[0-9]+]]:_(<8 x s16>) = G_ADD [[UV]], [[UV2]] 120 …; SSE2: [[UV:%[0-9]+]]:_(<4 x s32>), [[UV1:%[0-9]+]]:_(<4 x s32>) = G_UNMERGE_VALUES [[DEF]](<8 x … 122 ; SSE2: [[ADD:%[0-9]+]]:_(<4 x s32>) = G_ADD [[UV]], [[UV2]] [all …]
|
D | legalize-add-v512.mir | 48 …; AVX1: [[UV:%[0-9]+]]:_(<16 x s8>), [[UV1:%[0-9]+]]:_(<16 x s8>), [[UV2:%[0-9]+]]:_(<16 x s8>), [… 50 ; AVX1: [[ADD:%[0-9]+]]:_(<16 x s8>) = G_ADD [[UV]], [[UV4]] 56 …; AVX512F: [[UV:%[0-9]+]]:_(<32 x s8>), [[UV1:%[0-9]+]]:_(<32 x s8>) = G_UNMERGE_VALUES [[DEF]](<6… 58 ; AVX512F: [[ADD:%[0-9]+]]:_(<32 x s8>) = G_ADD [[UV]], [[UV2]] 88 …; AVX1: [[UV:%[0-9]+]]:_(<8 x s16>), [[UV1:%[0-9]+]]:_(<8 x s16>), [[UV2:%[0-9]+]]:_(<8 x s16>), [… 90 ; AVX1: [[ADD:%[0-9]+]]:_(<8 x s16>) = G_ADD [[UV]], [[UV4]] 96 …; AVX512F: [[UV:%[0-9]+]]:_(<16 x s16>), [[UV1:%[0-9]+]]:_(<16 x s16>) = G_UNMERGE_VALUES [[DEF]](… 98 ; AVX512F: [[ADD:%[0-9]+]]:_(<16 x s16>) = G_ADD [[UV]], [[UV2]] 128 …; AVX1: [[UV:%[0-9]+]]:_(<4 x s32>), [[UV1:%[0-9]+]]:_(<4 x s32>), [[UV2:%[0-9]+]]:_(<4 x s32>), [… 130 ; AVX1: [[ADD:%[0-9]+]]:_(<4 x s32>) = G_ADD [[UV]], [[UV4]] [all …]
|
D | legalize-add.mir | 102 ; X32: [[UV:%[0-9]+]]:_(s32), [[UV1:%[0-9]+]]:_(s32) = G_UNMERGE_VALUES [[DEF]](s64) 106 ; X32: [[UADDE:%[0-9]+]]:_(s32), [[UADDE1:%[0-9]+]]:_(s1) = G_UADDE [[UV]], [[UV2]], [[TRUNC]]
|
D | irtranslator-callingconv.ll | 184 ; X32: [[UV:%[0-9]+]]:_(s32), [[UV1:%[0-9]+]]:_(s32) = G_UNMERGE_VALUES [[MV]](s64) 185 ; X32: $eax = COPY [[UV]](s32) 289 …; X32: [[UV:%[0-9]+]]:_(<4 x s32>), [[UV1:%[0-9]+]]:_(<4 x s32>) = G_UNMERGE_VALUES [[MV]](<8 x … 290 ; X32: $xmm0 = COPY [[UV]](<4 x s32>) 299 …; X64: [[UV:%[0-9]+]]:_(<4 x s32>), [[UV1:%[0-9]+]]:_(<4 x s32>) = G_UNMERGE_VALUES [[MV]](<8 x … 300 ; X64: $xmm0 = COPY [[UV]](<4 x s32>) 500 …; X32: [[UV:%[0-9]+]]:_(<4 x s32>), [[UV1:%[0-9]+]]:_(<4 x s32>) = G_UNMERGE_VALUES [[MV1]](<8 x… 501 ; X32: $xmm0 = COPY [[UV]](<4 x s32>) 523 …; X64: [[UV:%[0-9]+]]:_(<4 x s32>), [[UV1:%[0-9]+]]:_(<4 x s32>) = G_UNMERGE_VALUES [[MV1]](<8 x… 524 ; X64: $xmm0 = COPY [[UV]](<4 x s32>)
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 416 UserValue *UV = Leader->getLeader(); in getUserValue() local 417 Leader = UV; in getUserValue() 418 for (; UV; UV = UV->getNext()) in getUserValue() 419 if (UV->match(Var, Offset)) in getUserValue() 420 return UV; in getUserValue() 423 UserValue *UV = new UserValue(Var, Offset, DL, allocator); in getUserValue() local 424 userValues.push_back(UV); in getUserValue() 425 Leader = UserValue::merge(Leader, UV); in getUserValue() 426 return UV; in getUserValue() 436 if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) in lookupVirtReg() local [all …]
|
/external/tensorflow/tensorflow/contrib/factorization/g3doc/ |
D | wals.md | 14 \times k}$$ and $$V \in \Rbb^{m \times k}$$, such that the product $$UV^T$$ is a 22 (\|\sqrt{W} \odot (A- UV^T)\|_F^2 + \lambda (\|U\|_F^2 + \|V\|_F^2)), 44 The product $$UV^T$$ is dense, and can be too large to compute. So we use the 51 \|\sqrt W \odot (A - UV^T)\|_F^2 55 w_0 \bracket{u_i}{v_j}^2 \right) + w_0\|UV^T\|_F^2 62 \|UV^T\|_F^2 = \trace(UV^TVU^T) = \trace(U^TUV^TV)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/GlobalISel/ |
D | legalize-unmerge-values.mir | 10 ; CHECK: [[UV:%[0-9]+]]:_(s32), [[UV1:%[0-9]+]]:_(s32) = G_UNMERGE_VALUES [[C]](s64) 11 ; CHECK: $vgpr0 = COPY [[UV]](s32) 26 ; CHECK: [[UV:%[0-9]+]]:_(s32), [[UV1:%[0-9]+]]:_(s32) = G_UNMERGE_VALUES [[COPY]](<2 x s32>) 27 ; CHECK: $vgpr0 = COPY [[UV]](s32)
|
/external/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 465 UserValue *UV = Leader->getLeader(); in getUserValue() local 466 Leader = UV; in getUserValue() 467 for (; UV; UV = UV->getNext()) in getUserValue() 468 if (UV->match(Var, Expr, DL->getInlinedAt(), Offset, IsIndirect)) in getUserValue() 469 return UV; in getUserValue() 474 UserValue *UV = userValues.back().get(); in getUserValue() local 475 Leader = UserValue::merge(Leader, UV); in getUserValue() 476 return UV; in getUserValue() 486 if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) in lookupVirtReg() local 487 return UV->getLeader(); in lookupVirtReg() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 488 UserValue *UV = Leader->getLeader(); in getUserValue() local 489 Leader = UV; in getUserValue() 490 for (; UV; UV = UV->getNext()) in getUserValue() 491 if (UV->match(Var, Expr, DL->getInlinedAt())) in getUserValue() 492 return UV; in getUserValue() 497 UserValue *UV = userValues.back().get(); in getUserValue() local 498 Leader = UserValue::merge(Leader, UV); in getUserValue() 499 return UV; in getUserValue() 509 if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) in lookupVirtReg() local 510 return UV->getLeader(); in lookupVirtReg() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderOperatorTests.cpp | 272 UV = VALUE_UINT_VEC, enumerator 1444 …<< operInfoFunc(addName, addOp, UV, Value(UV, 0.0f, 1e2f), Value(U, 0.0f, 1e2f), notUsed, 5e… in init() 1445 …<< operInfoFunc(addName, addOp, UV, Value(UV, 0.0f, 4e9f), Value(U, 0.0f, 4e9f), notUsed, 2e… in init() 1452 …<< operInfoFunc(addName, addOp, UV, Value(U, 0.0f, 1e2f), Value(UV, 0.0f, 1e2f), notUsed, 5e… in init() 1453 …<< operInfoFunc(addName, addOp, UV, Value(U, 0.0f, 4e9f), Value(UV, 0.0f, 4e9f), notUsed, 2e… in init() 1466 …<< operInfoFunc(subName, subOp, UV, Value(UV, 1e2f, 2e2f), Value(U, 0.0f, 1e2f), notUsed, 5e… in init() 1467 …<< operInfoFunc(subName, subOp, UV, Value(UV, 0.0f, 4e9f), Value(U, 0.0f, 4e9f), notUsed, 2e… in init() 1474 …<< operInfoFunc(subName, subOp, UV, Value(U, 1e2f, 2e2f), Value(UV, 0.0f, 1e2f), notUsed, 5… in init() 1475 …<< operInfoFunc(subName, subOp, UV, Value(U, 0.0f, 4e9f), Value(UV, 0.0f, 4e9f), notUsed, 2… in init() 1488 …<< operInfoFunc(mulName, mulOp, UV, Value(UV, 0.0f, 16.0f), Value(U, 0.0f, 16.0f), notUsed, … in init() [all …]
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | G_M_A_P_.py | 31 self.UV = uv 40 writer.simpletag("UV", value=self.UV) 61 if self.UV is None: 62 self.UV = 0 70 …return "GMAPRecord[ UV: " + str(self.UV) + ", cid: " + str(self.cid) + ", gid: " + str(self.gid) +…
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderOperatorTests.cpp | 292 UV = VALUE_UINT_VEC, enumerator 1475 …<< operInfoFunc(addName, addOp, UV, Value(UV, 0.0f, 1e2f), Value(U, 0.0f, 1e2f), notUsed, 5e… in init() 1476 …<< operInfoFunc(addName, addOp, UV, Value(UV, 0.0f, 4e9f), Value(U, 0.0f, 4e9f), notUsed, 2e… in init() 1483 …<< operInfoFunc(addName, addOp, UV, Value(U, 0.0f, 1e2f), Value(UV, 0.0f, 1e2f), notUsed, 5e… in init() 1484 …<< operInfoFunc(addName, addOp, UV, Value(U, 0.0f, 4e9f), Value(UV, 0.0f, 4e9f), notUsed, 2e… in init() 1497 …<< operInfoFunc(subName, subOp, UV, Value(UV, 1e2f, 2e2f), Value(U, 0.0f, 1e2f), notUsed, 5e… in init() 1498 …<< operInfoFunc(subName, subOp, UV, Value(UV, 0.0f, 4e9f), Value(U, 0.0f, 4e9f), notUsed, 2e… in init() 1505 …<< operInfoFunc(subName, subOp, UV, Value(U, 1e2f, 2e2f), Value(UV, 0.0f, 1e2f), notUsed, 5… in init() 1506 …<< operInfoFunc(subName, subOp, UV, Value(U, 0.0f, 4e9f), Value(UV, 0.0f, 4e9f), notUsed, 2… in init() 1519 …<< operInfoFunc(mulName, mulOp, UV, Value(UV, 0.0f, 16.0f), Value(U, 0.0f, 16.0f), notUsed, … in init() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | VPlanValue.h | 50 VPValue(const unsigned char SC, Value *UV = nullptr) 51 : SubclassID(SC), UnderlyingVal(UV) {} in SubclassID() 76 VPValue(Value *UV = nullptr) : VPValue(VPValueSC, UV) {} in VPValue() argument
|
/external/autotest/client/deps/glbench/src/ |
D | yuv2rgb_4.glslf | 34 * samplers to hold Y, and UV components. 51 * This does the colorspace conversion from Y'UV to RGB as a matrix
|
/external/autotest/client/cros/ |
D | mock_owner_private.key | 5 3O1ej5CoPLz6ejyv2diIySh/UV/ug2m9wS3w/YAEM0LHAFGfFQH752lGnl2HDglz
|
/external/skqp/samplecode/ |
D | SamplePatch.cpp | 93 SkScalar UV = (1 - u) * (1 - v); in eval_sheet() local 95 SkScalar x0 = UV * edge[TL].fX + uV * edge[TR].fX + Uv * edge[BL].fX + uv * edge[BR].fX; in eval_sheet() 96 SkScalar y0 = UV * edge[TL].fY + uV * edge[TR].fY + Uv * edge[BL].fY + uv * edge[BR].fY; in eval_sheet()
|
/external/libcxx/test/support/ |
D | test_iterators.h | 94 template <class T, class TV, class U, class UV> 97 operator==(const input_iterator<T, TV>& x, const input_iterator<U, UV>& y) 102 template <class T, class TV, class U, class UV> 105 operator!=(const input_iterator<T, TV>& x, const input_iterator<U, UV>& y)
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 26304cc92903afafc0ef5a6de1eb346a.00005f21.honggfuzz.cov | 20 ��&�~Ⱥ�p���lGJ%o,8Qx��U9���|G�w�Z��X|��L���q�����ex��H�� .��F[F0��UV��,� Y��Efh���>~�s… 89 ��&�~Ⱥ�p���lGJ%o,8Qx��U9���|G�w�Z��X|��L���q�����ex��H�� .��F[F0��UV��,� Y��Efh���>~�s… 112 ��&�~Ⱥ�p���lGJ%o,8Qx��U9���|G�w�Z��X|��L���q�����ex��H�� .��F[F0��UV��,� Y��Efh���>~�s…
|
/external/skia/samplecode/ |
D | SamplePatch.cpp | 93 SkScalar UV = (1 - u) * (1 - v); in eval_sheet() local 95 SkScalar x0 = UV * edge[TL].fX + uV * edge[TR].fX + Uv * edge[BL].fX + uv * edge[BR].fX; in eval_sheet() 96 SkScalar y0 = UV * edge[TL].fY + uV * edge[TR].fY + Uv * edge[BL].fY + uv * edge[BR].fY; in eval_sheet()
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 26304cc92903afafc0ef5a6de1eb346a.00005f21.honggfuzz.cov | 20 ��&�~Ⱥ�p���lGJ%o,8Qx��U9���|G�w�Z��X|��L���q�����ex��H�� .��F[F0��UV��,� Y��Efh���>~�s… 89 ��&�~Ⱥ�p���lGJ%o,8Qx��U9���|G�w�Z��X|��L���q�����ex��H�� .��F[F0��UV��,� Y��Efh���>~�s… 112 ��&�~Ⱥ�p���lGJ%o,8Qx��U9���|G�w�Z��X|��L���q�����ex��H�� .��F[F0��UV��,� Y��Efh���>~�s…
|
/external/curl/tests/data/ |
D | test1222 | 33 result: 16AFKPQ expected: 16AFKPQ input: 123__678__ABC__FGH__KLM__PQ.S.UV
|
D | test1221 | 33 result: 16AFKPQ expected: 16AFKPQ input: 123__678__ABC__FGH__KLM__PQ.S.UV
|
/external/libyuv/files/docs/ |
D | formats.md | 105 planes for UV: I420, I422, I444, I400, NV21, NV12, I400 106 The size (subsampling) of the UV varies.
|
/external/curl/tests/ |
D | objnames-test10.sh | 89 argstr=123__678__ABC__FGH__KLM__PQ.S.UV
|