HomeSort by relevance Sort by last modified time
    Searched defs:sdot (Results 1 - 10 of 10) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/SVE/
sdot-diagnostics.s 7 sdot z0.s, z1.h, z31.h label
9 // CHECK-NEXT: sdot z0.s, z1.h, z31.h
12 sdot z0.d, z1.b, z31.b label
14 // CHECK-NEXT: sdot z0.d, z1.b, z31.b
17 sdot z0.d, z1.s, z31.s label
19 // CHECK-NEXT: sdot z0.d, z1.s, z31.s
26 sdot z0.s, z1.b, z8.b[3] label
28 // CHECK-NEXT: sdot z0.s, z1.b, z8.b[3]
31 sdot z0.d, z1.h, z16.h[1] label
33 // CHECK-NEXT: sdot z0.d, z1.h, z16.h[1
40 sdot z0.s, z1.b, z7.b[-1] label
45 sdot z0.s, z1.b, z7.b[4] label
50 sdot z0.d, z1.h, z15.h[-1] label
55 sdot z0.d, z1.h, z15.h[2] label
65 sdot z0.d, z1.h, z31.h label
71 sdot z0.d, z1.h, z15.h[1] label
    [all...]
sdot.s 10 sdot z0.s, z1.b, z31.b label
11 // CHECK-INST: sdot z0.s, z1.b, z31.b
16 sdot z0.d, z1.h, z31.h label
17 // CHECK-INST: sdot z0.d, z1.h, z31.h
22 sdot z0.s, z1.b, z7.b[3] label
23 // CHECK-INST: sdot z0.s, z1.b, z7.b[3]
28 sdot z0.d, z1.h, z15.h[1] label
29 // CHECK-INST: sdot z0.d, z1.h, z15.h[1]
44 sdot z0.d, z1.h, z31.h label
45 // CHECK-INST: sdot z0.d, z1.h, z31.
56 sdot z0.d, z1.h, z15.h[1] label
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
armv8.2a-dotprod-errors.s 5 sdot v0.2s, v1.8b, v2.4b[4] label
7 sdot v0.4s, v1.16b, v2.4b[4] label
armv8.2a-dotprod.s 8 sdot v0.2s, v1.8b, v2.8b label
10 sdot v0.4s, v1.16b, v2.16b label
12 sdot v0.2s, v1.8b, v2.4b[1] label
14 sdot v0.4s, v1.16b, v2.4b[3] label
21 // CHECK-DOTPROD: sdot v0.2s, v1.8b, v2.8b // encoding: [0x20,0x94,0x82,0x0e]
23 // CHECK-DOTPROD: sdot v0.4s, v1.16b, v2.16b // encoding: [0x20,0x94,0x82,0x4e]
25 // CHECK-DOTPROD: sdot v0.2s, v1.8b, v2.4b[1] // encoding: [0x20,0xe0,0xa2,0x0f]
27 // CHECK-DOTPROD: sdot v0.4s, v1.16b, v2.4b[3] // encoding: [0x20,0xe8,0xa2,0x4f]
36 // CHECK-NO-DOTPROD: sdot v0.2s, v1.8b, v2.8b
42 // CHECK-NO-DOTPROD: sdot v0.4s, v1.16b, v2.16
    [all...]
  /external/skia/modules/canvaskit/
interface.js 19 function sdot(a, b, c, d, e, f) { function in function:CanvasKit.onRuntimeInitialized
75 result[3*r + c] = sdot(m1[3*r + 0], m2[3*0 + c],
92 cosV, -sinV, sdot( sinV, py, 1 - cosV, px),
93 sinV, cosV, sdot(-sinV, px, 1 - cosV, py),
  /external/skqp/experimental/canvaskit/
interface.js 20 function sdot(a, b, c, d, e, f) { function in function:onRuntimeInitialized
76 result[3*r + c] = sdot(m1[3*r + 0], m2[3*0 + c],
93 cosV, -sinV, sdot( sinV, py, 1 - cosV, px),
94 sinV, cosV, sdot(-sinV, px, 1 - cosV, py),
  /external/skia/src/core/
SkMatrix.cpp 51 // sdot and scross are indended to capture these compound operations into a
263 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d) { function
267 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d, function
303 fMat[kMTransX] += sdot(fMat[kMScaleX], dx, fMat[kMSkewX], dy);
304 fMat[kMTransY] += sdot(fMat[kMSkewY], dx, fMat[kMScaleY], dy);
434 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
438 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
993 SkScalar x = sdot(sx, m.fMat[kMScaleX], sy, m.fMat[kMSkewX]) + m.fMat[kMTransX];
994 SkScalar y = sdot(sx, m.fMat[kMSkewY], sy, m.fMat[kMScaleY]) + m.fMat[kMTransY];
998 SkScalar z = sdot(sx, m.fMat[kMPersp0], sy, m.fMat[kMPersp1]) + m.fMat[kMPersp2]
    [all...]
  /external/skqp/src/core/
SkMatrix.cpp 51 // sdot and scross are indended to capture these compound operations into a
263 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d) { function
267 static inline SkScalar sdot(SkScalar a, SkScalar b, SkScalar c, SkScalar d, function
303 fMat[kMTransX] += sdot(fMat[kMScaleX], dx, fMat[kMSkewX], dy);
304 fMat[kMTransY] += sdot(fMat[kMSkewY], dx, fMat[kMScaleY], dy);
434 fMat[kMTransX] = sdot(sinV, py, oneMinusCosV, px);
438 fMat[kMTransY] = sdot(-sinV, px, oneMinusCosV, py);
981 SkScalar x = sdot(sx, m.fMat[kMScaleX], sy, m.fMat[kMSkewX]) + m.fMat[kMTransX];
982 SkScalar y = sdot(sx, m.fMat[kMSkewY], sy, m.fMat[kMScaleY]) + m.fMat[kMTransY];
986 SkScalar z = sdot(sx, m.fMat[kMPersp0], sy, m.fMat[kMPersp1]) + m.fMat[kMPersp2]
    [all...]
  /external/vixl/src/aarch64/
logic-aarch64.cc 895 LogicVRegister Simulator::sdot(VectorFormat vform, function in class:vixl::aarch64::Simulator
902 return sdot(vform, dst, src1, dup_element(indexform, temp, src2, index));
3395 LogicVRegister Simulator::sdot(VectorFormat vform, function in class:vixl::aarch64::Simulator
    [all...]
  /external/error_prone/javac/
javac-9+181-r4173-1.jar 

Completed in 1404 milliseconds