/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/tests/ |
D | gml_st_pipeline.mlir | 7 // 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/ |
D | tiling.mlir | 5 // 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 …]
|
D | tiling_and_fusion.mlir | 10 // 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/ |
D | he_he_Latn_BGN.txt | 62 ו\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/ |
D | he_he_Latn_BGN.txt | 62 ו\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/ |
D | test_keeprefs.py | 45 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]
|
D | test_win32.py | 81 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]
|
D | test_as_parameter.py | 14 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))
|
D | test_functions.py | 23 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()))
|
D | test_structures.py | 230 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/ |
D | test_keeprefs.py | 45 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]
|
D | test_as_parameter.py | 14 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))
|
D | test_win32.py | 95 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]
|
D | test_functions.py | 23 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/ |
D | compressed_points.txt | 2 # 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/ |
D | t051lexer.g | 16 POINT 20 : ( ( NUM POINT NUM ) => NUM POINT NUM 21 | POINT NUM
|
/external/mesa3d/src/mesa/tnl_dd/ |
D | t_dd_unfilled.h | 68 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/ |
D | es2fScissorTests.cpp | 76 …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/ |
D | math_util.rs | 12 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/ |
D | es3fScissorTests.cpp | 86 …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/ |
D | point.cc | 29 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()
|
D | point.h | 19 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/ |
D | pr1172638.c | 12 } 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/ |
D | test_ctypes.py | 8 class POINT(Structure): class 11 _fields_ = [("a", POINTER(POINT))]
|
/external/python/cpython2/Lib/test/leakers/ |
D | test_ctypes.py | 8 class POINT(Structure): class 11 _fields_ = [("a", POINTER(POINT))]
|