/aosp_15_r20/external/cronet/third_party/boringssl/src/third_party/wycheproof_testvectors/ |
H A D | ecdh_secp256r1_test.txt | 138 # y-coordinate of the public key is small 145 # y-coordinate of the public key is small 152 # y-coordinate of the public key is small 159 # y-coordinate of the public key is large 166 # y-coordinate of the public key is large 173 # y-coordinate of the public key is large 180 # y-coordinate of the public key has many trailing 1's 187 # y-coordinate of the public key has many trailing 1's 194 # y-coordinate of the public key has many trailing 1's 201 # y-coordinate of the public key has many trailing 0's [all …]
|
H A D | ecdh_secp384r1_test.txt | 152 # y-coordinate of the public key has many trailing 0's 159 # y-coordinate of the public key has many trailing 1's 166 # y-coordinate of the public key is small 173 # y-coordinate of the public key is large 611 # point with coordinate x = 0 618 # point with coordinate x = 0 625 # point with coordinate x = 0 632 # point with coordinate x = 0 in left to right addition chain 639 # point with coordinate x = 0 in left to right addition chain 646 # point with coordinate x = 0 in left to right addition chain [all …]
|
H A D | ecdh_secp521r1_test.txt | 882 # point with coordinate x = 0 889 # point with coordinate x = 0 896 # point with coordinate x = 0 903 # point with coordinate x = 0 in left to right addition chain 910 # point with coordinate x = 0 in left to right addition chain 917 # point with coordinate x = 0 in left to right addition chain 924 # point with coordinate x = 0 in left to right addition chain 931 # point with coordinate x = 0 in left to right addition chain 938 # point with coordinate x = 0 in left to right addition chain 945 # point with coordinate x = 0 in left to right addition chain [all …]
|
/aosp_15_r20/external/boringssl/src/third_party/wycheproof_testvectors/ |
H A D | ecdh_secp256r1_test.txt | 138 # y-coordinate of the public key is small 145 # y-coordinate of the public key is small 152 # y-coordinate of the public key is small 159 # y-coordinate of the public key is large 166 # y-coordinate of the public key is large 173 # y-coordinate of the public key is large 180 # y-coordinate of the public key has many trailing 1's 187 # y-coordinate of the public key has many trailing 1's 194 # y-coordinate of the public key has many trailing 1's 201 # y-coordinate of the public key has many trailing 0's [all …]
|
H A D | ecdh_secp384r1_test.txt | 152 # y-coordinate of the public key has many trailing 0's 159 # y-coordinate of the public key has many trailing 1's 166 # y-coordinate of the public key is small 173 # y-coordinate of the public key is large 611 # point with coordinate x = 0 618 # point with coordinate x = 0 625 # point with coordinate x = 0 632 # point with coordinate x = 0 in left to right addition chain 639 # point with coordinate x = 0 in left to right addition chain 646 # point with coordinate x = 0 in left to right addition chain [all …]
|
H A D | ecdh_secp521r1_test.txt | 882 # point with coordinate x = 0 889 # point with coordinate x = 0 896 # point with coordinate x = 0 903 # point with coordinate x = 0 in left to right addition chain 910 # point with coordinate x = 0 in left to right addition chain 917 # point with coordinate x = 0 in left to right addition chain 924 # point with coordinate x = 0 in left to right addition chain 931 # point with coordinate x = 0 in left to right addition chain 938 # point with coordinate x = 0 in left to right addition chain 945 # point with coordinate x = 0 in left to right addition chain [all …]
|
/aosp_15_r20/packages/modules/CellBroadcastService/src/com/android/cellbroadcastservice/ |
D | CbSendMessageCalculator.java | 157 public void addCoordinate(CbGeoUtils.LatLng coordinate, float accuracyMeters) { in addCoordinate() argument 163 calculatePersistentAction(coordinate, accuracyMeters); in addCoordinate() 174 private void calculatePersistentAction(CbGeoUtils.LatLng coordinate, float accuracyMeters) { in calculatePersistentAction() argument 178 calculateActionFromFences(coordinate, accuracyMeters); in calculatePersistentAction() 203 private int calculateActionFromFences(CbGeoUtils.LatLng coordinate, float accuracyMeters) { in calculateActionFromFences() argument 210 final int action = calculateSingleFence(coordinate, accuracyMeters, fence); in calculateActionFromFences() 226 private int calculateSingleFence(CbGeoUtils.LatLng coordinate, float accuracyMeters, in calculateSingleFence() argument 228 if (fence.contains(coordinate)) { in calculateSingleFence() 233 return calculateSysSingleFence(coordinate, accuracyMeters, fence); in calculateSingleFence() 239 private int calculateSysSingleFence(CbGeoUtils.LatLng coordinate, float accuracyMeters, in calculateSysSingleFence() argument [all …]
|
/aosp_15_r20/frameworks/base/packages/SettingsLib/Graph/src/com/android/settingslib/graph/ |
H A D | PreferenceGetterApi.kt | 103 for (coordinate in coordinates) { in hasPermission() constant 104 errors[coordinate] = PreferenceGetterErrorCode.NOT_FOUND in hasPermission() 109 for (coordinate in coordinates) nodes[coordinate.key] = null in hasPermission() constant 115 for (coordinate in coordinates) { in hasPermission() constant 116 val node = nodes[coordinate.key] in hasPermission() 118 errors[coordinate] = PreferenceGetterErrorCode.NOT_FOUND in hasPermission() 133 errors[coordinate] = PreferenceGetterErrorCode.DISALLOW in hasPermission() 135 preferences[coordinate] = preferenceProto in hasPermission() 138 errors[coordinate] = PreferenceGetterErrorCode.INTERNAL_ERROR in hasPermission()
|
H A D | PreferenceGetterCodecs.kt | 61 for ((coordinate, code) in this) { in toErrorsByteArray() constant 62 coordinate.writeToParcel(parcel, 0) in toErrorsByteArray() 74 for ((coordinate, preferenceProto) in this) { in toPreferencesByteArray() constant 75 coordinate.writeToParcel(parcel, 0) in toPreferencesByteArray() 99 val coordinate = PreferenceCoordinate(parcel) in decode() constant 100 errors[coordinate] = parcel.readInt() in decode() 114 val coordinate = PreferenceCoordinate(parcel) in toPreferences() constant 117 preferences[coordinate] = PreferenceProto.parseFrom(array) in toPreferences()
|
/aosp_15_r20/frameworks/base/core/java/android/location/ |
H A D | Location.java | 1118 public static @NonNull String convert(@FloatRange double coordinate, @Format int outputType) { in convert() argument 1119 Preconditions.checkArgumentInRange(coordinate, -180D, 180D, "coordinate"); in convert() 1125 if (coordinate < 0) { in convert() 1127 coordinate = -coordinate; in convert() 1132 int degrees = (int) Math.floor(coordinate); in convert() 1135 coordinate -= degrees; in convert() 1136 coordinate *= 60.0; in convert() 1138 int minutes = (int) Math.floor(coordinate); in convert() 1141 coordinate -= minutes; in convert() 1142 coordinate *= 60.0; in convert() [all …]
|
/aosp_15_r20/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
H A D | esextcTessellationShaderVertexSpacing.cpp | 165 const float *coordinate = (const float *)(&run.data[0]) + 3 /* components */ * n_vertex; in getEdgesForIsolinesTessellation() local 168 new_item.x = coordinate[0]; in getEdgesForIsolinesTessellation() 169 new_item.y = coordinate[1]; in getEdgesForIsolinesTessellation() 179 if (de::abs(edge.points[0].y - coordinate[1]) < epsilon) in getEdgesForIsolinesTessellation() 279 const _tess_coordinate_cartesian &coordinate = *coordinate_iterator; in getEdgesForQuadsTessellation() local 280 float delta_x = coordinate.x - 0.5f; in getEdgesForQuadsTessellation() 281 float delta_y = coordinate.y - 0.5f; in getEdgesForQuadsTessellation() 289 current_tl_point = coordinate; in getEdgesForQuadsTessellation() 299 current_tr_point = coordinate; in getEdgesForQuadsTessellation() 309 current_bl_point = coordinate; in getEdgesForQuadsTessellation() [all …]
|
/aosp_15_r20/external/angle/src/common/spirv/ |
H A D | spirv_instruction_builder_autogen.h | 132 IdRef coordinate, 220 IdRef coordinate, 227 IdRef coordinate, 234 IdRef coordinate, 242 IdRef coordinate, 250 IdRef coordinate, 257 IdRef coordinate, 264 IdRef coordinate, 272 IdRef coordinate, 280 IdRef coordinate, [all …]
|
H A D | spirv_instruction_parser_autogen.h | 159 IdRef *coordinate, 255 IdRef *coordinate, 262 IdRef *coordinate, 269 IdRef *coordinate, 277 IdRef *coordinate, 285 IdRef *coordinate, 292 IdRef *coordinate, 299 IdRef *coordinate, 307 IdRef *coordinate, 315 IdRef *coordinate, [all …]
|
/aosp_15_r20/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1/src/main/proto/google/cloud/vision/v1/ |
H A D | geometry.proto | 29 // X coordinate. 32 // Y coordinate. 40 // X coordinate. 43 // Y coordinate. 60 // X coordinate. 63 // Y coordinate. 66 // Z coordinate (or depth).
|
/aosp_15_r20/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1p3beta1/src/main/proto/google/cloud/vision/v1p3beta1/ |
H A D | geometry.proto | 29 // X coordinate. 32 // Y coordinate. 40 // X coordinate. 43 // Y coordinate. 60 // X coordinate. 63 // Y coordinate. 66 // Z coordinate (or depth).
|
/aosp_15_r20/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1p2beta1/src/main/proto/google/cloud/vision/v1p2beta1/ |
H A D | geometry.proto | 28 // X coordinate. 31 // Y coordinate. 39 // X coordinate. 42 // Y coordinate. 59 // X coordinate. 62 // Y coordinate. 65 // Z coordinate (or depth).
|
/aosp_15_r20/external/googleapis/google/cloud/vision/v1/ |
H A D | geometry.proto | 29 // X coordinate. 32 // Y coordinate. 40 // X coordinate. 43 // Y coordinate. 60 // X coordinate. 63 // Y coordinate. 66 // Z coordinate (or depth).
|
/aosp_15_r20/external/google-cloud-java/java-vision/proto-google-cloud-vision-v1p4beta1/src/main/proto/google/cloud/vision/v1p4beta1/ |
H A D | geometry.proto | 31 // X coordinate. 34 // Y coordinate. 42 // X coordinate. 45 // Y coordinate. 62 // X coordinate. 65 // Y coordinate. 68 // Z coordinate (or depth).
|
/aosp_15_r20/external/googleapis/google/cloud/vision/v1p4beta1/ |
H A D | geometry.proto | 31 // X coordinate. 34 // Y coordinate. 42 // X coordinate. 45 // Y coordinate. 62 // X coordinate. 65 // Y coordinate. 68 // Z coordinate (or depth).
|
/aosp_15_r20/external/googleapis/google/cloud/vision/v1p2beta1/ |
H A D | geometry.proto | 28 // X coordinate. 31 // Y coordinate. 39 // X coordinate. 42 // Y coordinate. 59 // X coordinate. 62 // Y coordinate. 65 // Z coordinate (or depth).
|
/aosp_15_r20/external/googleapis/google/cloud/vision/v1p3beta1/ |
H A D | geometry.proto | 29 // X coordinate. 32 // Y coordinate. 40 // X coordinate. 43 // Y coordinate. 60 // X coordinate. 63 // Y coordinate. 66 // Z coordinate (or depth).
|
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/ |
H A D | PatternBouncerViewModelTest.kt | 121 CORRECT_PATTERN.forEachIndexed { index, coordinate -> in <lambda>() method 122 dragToCoordinate(coordinate) in <lambda>() 153 CORRECT_PATTERN.subList(0, 3).forEach { coordinate -> dragToCoordinate(coordinate) } in <lambda>() method 310 .forEach { coordinate -> in <lambda>() method 312 xPx = 30f * coordinate.x + 15, in <lambda>() 313 yPx = 30f * coordinate.y + 15, in <lambda>() 362 private fun dragToCoordinate(coordinate: Point) { in <lambda>() 364 xPx = dotSize * coordinate.x + 15f, in <lambda>() 365 yPx = dotSize * coordinate.y + 15f, in <lambda>()
|
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/ |
H A D | redux_functor.h | 282 Eigen::Index coordinate = block_start / inner_dim % middle_dim; in operator() local 288 buf(coordinate) = binary_op(buf(coordinate), reduced(0)); in operator() 290 coordinate = align_start / inner_dim % middle_dim; in operator() 295 buf(coordinate) = binary_op(buf(coordinate), reduced(0)); in operator() 296 ++coordinate; in operator() 297 if (middle_dim == coordinate) coordinate = 0; in operator() 303 buf(coordinate) = binary_op(buf(coordinate), reduced(0)); in operator()
|
/aosp_15_r20/external/executorch/kernels/portable/cpu/ |
H A D | op__to_dim_order_copy.cpp | 54 size_t coordinate[kTensorDimensionLimit] = {0}; in _to_dim_order_copy_impl() local 61 if (coordinate[j] + 1 < self.size(j)) { in _to_dim_order_copy_impl() 62 coordinate[j]++; in _to_dim_order_copy_impl() 65 coordinate[j] = 0; in _to_dim_order_copy_impl() 69 int64_t self_data_index = coordinateToIndexWithDimOrder(self, coordinate); in _to_dim_order_copy_impl() 70 int64_t out_data_index = coordinateToIndexWithDimOrder(out, coordinate); in _to_dim_order_copy_impl()
|
/aosp_15_r20/external/skia/site/docs/user/ |
H A D | coordinates.md | 8 Skia generally refers to two different coordinate spaces: **device** and 18 The local coordinate space is how all geometry and shaders are supplied to the 19 `SkCanvas`. By default, the local and device coordinate systems are the same. 40 What happened? Remember, the local coordinate space has not changed. The origin 53 Instead, we can use methods on `SkCanvas` to **change the local coordinate 63 Finally, it is possible to transform the coordinate space of the `SkShader`, 64 relative to the canvas local coordinate space. To do this, you supply a 69 shader's coordinates to the coordinate space of the geometry.
|