Home
last modified time | relevance | path

Searched refs:POINT (Results 1 – 25 of 148) sorted by relevance

123456

/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/
Dgml_st_pipeline.mlir7 // RUN: FileCheck %s --check-prefix=POINT-CHECK
26 // POINT-CHECK-LABEL: @log
27 // POINT-CHECK-SAME: %[[ARG:.*]]: tensor<512x4xf32>
28 // POINT-CHECK: %[[RES:.*]] = gml_st.parallel
29 // POINT-CHECK-DAG: %[[ARG_SUB:.*]] = gml_st.materialize %[[ARG]][%{{.*}}]
30 // POINT-CHECK-DAG: %[[LOG_SUB:.*]] = math.log %[[ARG_SUB]]
31 // POINT-CHECK: gml_st.set_yield %[[LOG_SUB]]
32 // POINT-CHECK: return %[[RES]]
54 // POINT-CHECK: @transposed_log
55 // POINT-CHECK-SAME: %[[ARG:.*]]: tensor<20x64xf32>)
[all …]
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/Dialect/gml_st/
Dtiling.mlir5 // RUN: FileCheck %s --check-prefix=CHECK-POINT
69 // CHECK-POINT-LABEL: @add
70 // CHECK-POINT-SAME: %[[LHS:.*]]: tensor<?x?xf32>, %[[RHS:.*]]: tensor<?x?xf32>
72 // CHECK-POINT: %[[GENERIC:.*]] = linalg.generic
73 // CHECK-POINT-SAME: ins(%[[LHS]], %[[RHS]] : tensor<?x?xf32>, tensor<?x?xf32>)
75 // CHECK-POINT-DAG: %[[C0:.*]] = arith.constant 0
76 // CHECK-POINT-DAG: %[[GENERIC_D0:.*]] = tensor.dim %[[GENERIC]], %[[C0]]
77 // CHECK-POINT-DAG: %[[C1:.*]] = arith.constant 1
78 // CHECK-POINT-DAG: %[[GENERIC_D1:.*]] = tensor.dim %[[GENERIC]], %[[C1]]
79 // CHECK-POINT: %[[INIT:.*]] = linalg.init_tensor [%[[GENERIC_D0]], %[[GENERIC_D1]]]
[all …]
Dtiling_and_fusion.mlir10 // RUN: FileCheck %s --check-prefix=CHECK-POINT
48 // CHECK-POINT-LABEL: @pointwise
49 // CHECK-POINT-SAME: %[[ARG0:.*]]:{{.*}}%[[ARG1:.*]]:
50 // CHECK-POINT: %[[INIT:.*]] = linalg.init_tensor
51 // CHECK-POINT: gml_st.parallel (%[[I:.*]], %[[J:.*]]) =
52 // CHECK-POINT: %[[OUTPUT_POINT:.*]] = gml_st.point %{{.*}} [%[[I]], %[[J]]]
53 // CHECK-POINT: %[[ARG0_MAT:.*]] = gml_st.materialize %[[ARG0]][%[[OUTPUT_POINT]]]
54 // CHECK-POINT: %[[ARG1_POINT:.*]] = gml_st.transpose_dims %[[OUTPUT_POINT]], [1, 0]
55 // CHECK-POINT: %[[ARG1_MAT:.*]] = gml_st.materialize %[[ARG1]][%[[ARG1_POINT]]]
56 // CHECK-POINT: %[[OUT:.*]] = arith.addf %[[ARG0_MAT]], %[[ARG1_MAT]]
[all …]
/external/cronet/third_party/icu/source/data/translit/
Dhe_he_Latn_BGN.txt62 ו\u05BC → u ; # HEBREW LETTER VAV + POINT DAGESH
63 ו\u05B9 → o ; # HEBREW LETTER VAV + POINT HOLAM
104 \u05B7 → a ; # HEBREW POINT PATAH
105 \u05B2 → a ; # HEBREW POINT HATAF PATAH
106 \u05B8 → o ; # HEBREW POINT QAMATS
107 \u05B6 → e ; # HEBREW POINT SEGOL
108 \u05B1 → e ; # HEBREW POINT HATAF SEGOL
109 \u05B5י → e ; # HEBREW POINT TSERE + LETTER YOD
110 \u05B5 → e ; # HEBREW POINT TSERE
111 \u05B0 → e ; # HEBREW POINT SHEVA
[all …]
/external/icu/icu4c/source/data/translit/
Dhe_he_Latn_BGN.txt62 ו\u05BC → u ; # HEBREW LETTER VAV + POINT DAGESH
63 ו\u05B9 → o ; # HEBREW LETTER VAV + POINT HOLAM
104 \u05B7 → a ; # HEBREW POINT PATAH
105 \u05B2 → a ; # HEBREW POINT HATAF PATAH
106 \u05B8 → o ; # HEBREW POINT QAMATS
107 \u05B6 → e ; # HEBREW POINT SEGOL
108 \u05B1 → e ; # HEBREW POINT HATAF SEGOL
109 \u05B5י → e ; # HEBREW POINT TSERE + LETTER YOD
110 \u05B5 → e ; # HEBREW POINT TSERE
111 \u05B0 → e ; # HEBREW POINT SHEVA
[all …]
/external/python/cpython2/Lib/ctypes/test/
Dtest_keeprefs.py45 class POINT(Structure): class
48 _fields_ = [("ul", POINT), ("lr", POINT)]
58 pt = POINT(1, 2)
64 r.lr = POINT()
130 class POINT(Structure): class
133 _fields_ = [("a", POINTER(POINT)),
134 ("b", POINTER(POINT))]
136 p1 = POINT(1, 2)
150 del _pointer_type_cache[POINT]
Dtest_win32.py81 class POINT(Structure): class
93 pt = POINT(15, 25)
100 PointInRect.argtypes = [POINTER(RECT), POINT]
104 ReturnRect.argtypes = [c_int, RECT, POINTER(RECT), POINT, RECT,
105 POINTER(RECT), POINT, RECT]
Dtest_as_parameter.py14 class POINT(Structure): class
144 ptin = POINT(1, 2)
145 ptout = POINT()
153 ptin = POINT(101, 102)
154 ptout = POINT()
155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
Dtest_functions.py23 class POINT(Structure): class
316 ptin = POINT(1, 2)
317 ptout = POINT()
325 ptin = POINT(101, 102)
326 ptout = POINT()
327 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
394 proto = CFUNCTYPE(c_int, RECT, POINT)
399 self.assertRaises(ArgumentError, lambda: callback((1, 2, 3, 4), POINT()))
Dtest_structures.py230 class POINT(Structure): class
233 self.assertRaises(TypeError, POINT, 2, 3, x=4)
234 self.assertRaises(TypeError, POINT, 2, 3, y=4)
237 self.assertRaises(TypeError, POINT, 2, 3, 4)
240 class POINT(Structure): class
242 pt = POINT(1, 2)
245 pt = POINT(y=2, x=1)
249 class POINT(Structure): class
251 self.assertRaises(TypeError, setattr, POINT, "_fields_", [("x", 1), ("y", 2)])
/external/python/cpython3/Lib/ctypes/test/
Dtest_keeprefs.py45 class POINT(Structure): class
48 _fields_ = [("ul", POINT), ("lr", POINT)]
58 pt = POINT(1, 2)
64 r.lr = POINT()
130 class POINT(Structure): class
133 _fields_ = [("a", POINTER(POINT)),
134 ("b", POINTER(POINT))]
136 p1 = POINT(1, 2)
150 del _pointer_type_cache[POINT]
Dtest_as_parameter.py14 class POINT(Structure): class
144 ptin = POINT(1, 2)
145 ptout = POINT()
153 ptin = POINT(101, 102)
154 ptout = POINT()
155 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
Dtest_win32.py95 class POINT(Structure): class
107 pt = POINT(15, 25)
114 PointInRect.argtypes = [POINTER(RECT), POINT]
118 ReturnRect.argtypes = [c_int, RECT, POINTER(RECT), POINT, RECT,
119 POINTER(RECT), POINT, RECT]
Dtest_functions.py23 class POINT(Structure): class
306 ptin = POINT(1, 2)
307 ptout = POINT()
315 ptin = POINT(101, 102)
316 ptout = POINT()
317 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
384 proto = CFUNCTYPE(c_int, RECT, POINT)
389 self.assertRaises(ArgumentError, lambda: callback((1, 2, 3, 4), POINT()))
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/EC/
Dcompressed_points.txt2 # POINT is hex encoded binary data while X and Y are hexadecimal integers
6 POINT = 037399336a9edf2197c2f8eb3d39aed9c34a66e45d918a07dc7684c42c9b37ac68
12 POINT = 02d13b763988943682267deb6298ad3bdfec192459f9e9bf2d2227c8ec3e8ced91
18 POINT = 032cac5ae983fcb88bc502dd48d561c810e2b40edc7b6b67ea52ceb415093be0d0
24 POINT = 02e836ff83c6ab4d7ea391f4897cb926b16cbe6eb0991dd81b4a294c65fe9a9691
/external/antlr/runtime/Cpp/tests/
Dt051lexer.g16 POINT
20 : ( ( NUM POINT NUM ) => NUM POINT NUM
21 | POINT NUM
/external/mesa3d/src/mesa/tnl_dd/
Dt_dd_unfilled.h68 if (ef[e0]) POINT( v[0] ); in TAG()
69 if (ef[e1]) POINT( v[1] ); in TAG()
70 if (ef[e2]) POINT( v[2] ); in TAG()
136 if (ef[e0]) POINT( v[0] ); in TAG()
137 if (ef[e1]) POINT( v[1] ); in TAG()
138 if (ef[e2]) POINT( v[2] ); in TAG()
139 if (ef[e3]) POINT( v[3] ); in TAG()
/external/deqp/modules/gles2/functional/
Des2fScissorTests.cpp76 …side scissor area", Vec4(0.1f, 0.1f, 0.8f, 0.8f), Vec4(0.5f, 0.5f, 0.0f, 0.0f), POINT, 1 }, in init()
77 …nside scissor area", Vec4(0.4f, 0.4f, 0.6f, 0.6f), Vec4(0.0f, 0.0f, 1.0f, 1.0f), POINT, 30 }, in init()
78 …side scissor area", Vec4(0.4f, 0.4f, 0.6f, 0.6f), Vec4(0.0f, 0.0f, 0.0f, 0.0f), POINT, 1 }, in init()
79 … outside render target", Vec4(1.4f, 1.4f, 0.6f, 0.6f), Vec4(0.5f, 0.5f, 0.0f, 0.0f), POINT, 1 } in init()
/external/crosvm/gpu_display/src/gpu_display_win/
Dmath_util.rs12 use winapi::shared::windef::POINT;
124 fn to_sys_point(&self) -> POINT; in to_sys_point() argument
129 fn to_sys_point(&self) -> POINT { in to_sys_point() argument
130 POINT { in to_sys_point()
141 impl SysPointExtension for POINT { implementation
/external/deqp/modules/gles3/functional/
Des3fScissorTests.cpp86 …side scissor area", Vec4(0.1f, 0.1f, 0.8f, 0.8f), Vec4(0.5f, 0.5f, 0.0f, 0.0f), POINT, 1 }, in init()
87 …nside scissor area", Vec4(0.4f, 0.4f, 0.6f, 0.6f), Vec4(0.0f, 0.0f, 1.0f, 1.0f), POINT, 30 }, in init()
88 …side scissor area", Vec4(0.4f, 0.4f, 0.6f, 0.6f), Vec4(0.0f, 0.0f, 0.0f, 0.0f), POINT, 1 }, in init()
89 … outside render target", Vec4(1.4f, 1.4f, 0.6f, 0.6f), Vec4(0.5f, 0.5f, 0.0f, 0.0f), POINT, 1 } in init()
/external/libchrome/ui/gfx/geometry/
Dpoint.cc29 Point::Point(const POINT& point) : x_(point.x), y_(point.y) { in Point()
32 Point& Point::operator=(const POINT& point) { in operator =()
43 POINT Point::ToPOINT() const { in ToPOINT()
44 POINT p; in ToPOINT()
Dpoint.h19 typedef struct tagPOINT POINT; typedef
36 explicit Point(const POINT& point);
37 Point& operator=(const POINT& point);
43 POINT ToPOINT() const;
/external/libffi/testsuite/libffi.call/
Dpr1172638.c12 } POINT; typedef
22 RECT* br __UNUSED__, POINT cp __UNUSED__, in pr_test()
24 POINT fp, RECT gr __UNUSED__) in pr_test()
46 POINT cp, fp; in main()
/external/python/cpython3/Lib/test/leakers/
Dtest_ctypes.py8 class POINT(Structure): class
11 _fields_ = [("a", POINTER(POINT))]
/external/python/cpython2/Lib/test/leakers/
Dtest_ctypes.py8 class POINT(Structure): class
11 _fields_ = [("a", POINTER(POINT))]

123456