Home
last modified time | relevance | path

Searched +full:- +full:z (Results 1 – 25 of 1235) sorted by relevance

12345678910>>...50

/external/sdv/vsomeip/third_party/boost/regex/test/regress/
Dtest_backrefs.cpp23 TEST_REGEX_SEARCH("a(b*)c\\1d", perl, "abbcbbd", match_default, make_array(0, 7, 1, 3, -2, -2)); in test_backrefs()
24 TEST_REGEX_SEARCH("a(b*)c\\1d", perl, "abbcbd", match_default, make_array(-2, -2)); in test_backrefs()
25 TEST_REGEX_SEARCH("a(b*)c\\1d", perl, "abbcbbbd", match_default, make_array(-2, -2)); in test_backrefs()
26 TEST_REGEX_SEARCH("^(.)\\1", perl, "abc", match_default, make_array(-2, -2)); in test_backrefs()
27 … TEST_REGEX_SEARCH("a([bc])\\1d", perl, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); in test_backrefs()
28 …_REGEX_SEARCH("a\\([bc]\\)\\1d", basic, "abcdabbd", match_default, make_array(4, 8, 5, 6, -2, -2)); in test_backrefs()
31 …EGEX_SEARCH("a(([bc])\\2)*d", perl, "abbccd", match_default, make_array(0, 6, 3, 5, 3, 4, -2, -2)); in test_backrefs()
32 TEST_REGEX_SEARCH("a(([bc])\\2)*d", perl, "abbcbd", match_default, make_array(-2, -2)); in test_backrefs()
33 …T_REGEX_SEARCH("a((b)*\\2)*d", perl, "abbbd", match_default, make_array(0, 5, 1, 4, 2, 3, -2, -2)); in test_backrefs()
34 …H("(ab*)[ab]*\\1", perl, "ababaaa", match_default, make_array(0, 4, 0, 2, -2, 4, 7, 4, 5, -2, -2)); in test_backrefs()
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-ms-arg-qualifiers.cpp1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 | FileCheck %s
2 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-pc-win32 | FileCheck -check-prefix=X64 %s
5 // CHECK: "\01?foo@@YAXI@Z"
6 // X64: "\01?foo@@YAXI@Z"
9 // CHECK: "\01?foo@@YAXN@Z"
10 // X64: "\01?foo@@YAXN@Z"
13 // CHECK: "\01?bar@@YAXN@Z"
14 // X64: "\01?bar@@YAXN@Z"
17 // CHECK: "\01?foo_pad@@YAXPAD@Z"
18 // X64: "\01?foo_pad@@YAXPEAD@Z"
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
DSecP256R1Field.java15 // 2^256 - 2^224 + 2^192 + 2^96 - 1
24 public static void add(int[] x, int[] y, int[] z) in add() argument
26 int c = Nat256.add(x, y, z); in add()
27 if (c != 0 || (z[7] == P7 && Nat256.gte(z, P))) in add()
29 addPInvTo(z); in add()
42 public static void addOne(int[] x, int[] z) in addOne() argument
44 int c = Nat.inc(8, x, z); in addOne()
45 if (c != 0 || (z[7] == P7 && Nat256.gte(z, P))) in addOne()
47 addPInvTo(z); in addOne()
53 int[] z = Nat256.fromBigInteger(x); in fromBigInteger() local
[all …]
DSecP384R1Field.java15 // 2^384 - 2^128 - 2^96 + 2^32 - 1
27 public static void add(int[] x, int[] y, int[] z) in add() argument
29 int c = Nat.add(12, x, y, z); in add()
30 if (c != 0 || (z[11] == P11 && Nat.gte(12, z, P))) in add()
32 addPInvTo(z); in add()
48 public static void addOne(int[] x, int[] z) in addOne() argument
50 int c = Nat.inc(12, x, z); in addOne()
51 if (c != 0 || (z[11] == P11 && Nat.gte(12, z, P))) in addOne()
53 addPInvTo(z); in addOne()
59 int[] z = Nat.fromBigInteger(384, x); in fromBigInteger() local
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/custom/sec/
DSecP256R1Field.java19 // 2^256 - 2^224 + 2^192 + 2^96 - 1
28 public static void add(int[] x, int[] y, int[] z) in add() argument
30 int c = Nat256.add(x, y, z); in add()
31 if (c != 0 || (z[7] == P7 && Nat256.gte(z, P))) in add()
33 addPInvTo(z); in add()
46 public static void addOne(int[] x, int[] z) in addOne() argument
48 int c = Nat.inc(8, x, z); in addOne()
49 if (c != 0 || (z[7] == P7 && Nat256.gte(z, P))) in addOne()
51 addPInvTo(z); in addOne()
57 int[] z = Nat256.fromBigInteger(x); in fromBigInteger() local
[all …]
DSecP384R1Field.java19 // 2^384 - 2^128 - 2^96 + 2^32 - 1
31 public static void add(int[] x, int[] y, int[] z) in add() argument
33 int c = Nat.add(12, x, y, z); in add()
34 if (c != 0 || (z[11] == P11 && Nat.gte(12, z, P))) in add()
36 addPInvTo(z); in add()
52 public static void addOne(int[] x, int[] z) in addOne() argument
54 int c = Nat.inc(12, x, z); in addOne()
55 if (c != 0 || (z[11] == P11 && Nat.gte(12, z, P))) in addOne()
57 addPInvTo(z); in addOne()
63 int[] z = Nat.fromBigInteger(384, x); in fromBigInteger() local
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/custom/sec/
DSecP256R1Field.java19 // 2^256 - 2^224 + 2^192 + 2^96 - 1
28 public static void add(int[] x, int[] y, int[] z) in add() argument
30 int c = Nat256.add(x, y, z); in add()
31 if (c != 0 || (z[7] == P7 && Nat256.gte(z, P))) in add()
33 addPInvTo(z); in add()
46 public static void addOne(int[] x, int[] z) in addOne() argument
48 int c = Nat.inc(8, x, z); in addOne()
49 if (c != 0 || (z[7] == P7 && Nat256.gte(z, P))) in addOne()
51 addPInvTo(z); in addOne()
57 int[] z = Nat256.fromBigInteger(x); in fromBigInteger() local
[all …]
DSecP384R1Field.java19 // 2^384 - 2^128 - 2^96 + 2^32 - 1
31 public static void add(int[] x, int[] y, int[] z) in add() argument
33 int c = Nat.add(12, x, y, z); in add()
34 if (c != 0 || (z[11] == P11 && Nat.gte(12, z, P))) in add()
36 addPInvTo(z); in add()
52 public static void addOne(int[] x, int[] z) in addOne() argument
54 int c = Nat.inc(12, x, z); in addOne()
55 if (c != 0 || (z[11] == P11 && Nat.gte(12, z, P))) in addOne()
57 addPInvTo(z); in addOne()
63 int[] z = Nat.fromBigInteger(384, x); in fromBigInteger() local
[all …]
/external/boringssl/src/crypto/ecdh_extra/
Decdh_tests.txt1 # Tests from NIST CAVP SP 800-56A ECCCDH Primitive Test Vectors.
4 # P-521 test vectors were fixed to have the right length.
6 Curve = P-224
12 Z = 7d96f9a3bd3c05cf5cc37feb8b9d5209d5c2597464dec3e9983743e8
14 Curve = P-224
20 Z = ee93ce06b89ff72009e858c68eb708e7bc79ee0300f73bed69bbca09
22 Curve = P-224
28 Z = 3fcc01e34d4449da2a974b23fc36f9566754259d39149790cfa1ebd3
30 Curve = P-224
36 Z = 49129628b23afcef48139a3f6f59ff5e9811aa746aa4ff33c24bb940
[all …]
/external/cronet/tot/third_party/boringssl/src/crypto/ecdh_extra/
Decdh_tests.txt1 # Tests from NIST CAVP SP 800-56A ECCCDH Primitive Test Vectors.
4 # P-521 test vectors were fixed to have the right length.
6 Curve = P-224
12 Z = 7d96f9a3bd3c05cf5cc37feb8b9d5209d5c2597464dec3e9983743e8
14 Curve = P-224
20 Z = ee93ce06b89ff72009e858c68eb708e7bc79ee0300f73bed69bbca09
22 Curve = P-224
28 Z = 3fcc01e34d4449da2a974b23fc36f9566754259d39149790cfa1ebd3
30 Curve = P-224
36 Z = 49129628b23afcef48139a3f6f59ff5e9811aa746aa4ff33c24bb940
[all …]
/external/cronet/stable/third_party/boringssl/src/crypto/ecdh_extra/
Decdh_tests.txt1 # Tests from NIST CAVP SP 800-56A ECCCDH Primitive Test Vectors.
4 # P-521 test vectors were fixed to have the right length.
6 Curve = P-224
12 Z = 7d96f9a3bd3c05cf5cc37feb8b9d5209d5c2597464dec3e9983743e8
14 Curve = P-224
20 Z = ee93ce06b89ff72009e858c68eb708e7bc79ee0300f73bed69bbca09
22 Curve = P-224
28 Z = 3fcc01e34d4449da2a974b23fc36f9566754259d39149790cfa1ebd3
30 Curve = P-224
36 Z = 49129628b23afcef48139a3f6f59ff5e9811aa746aa4ff33c24bb940
[all …]
/external/cldr/common/validity/
Dlanguage.xml1 <?xml version='1.0' encoding='UTF-8' ?>
3 <!--
4 Copyright © 1991-2024 Unicode, Inc.
6 SPDX-License-Identifier: Unicode-3.0
10 Tool documented on: http://cldr.unicode.org/development/updating-codes/update-validity-xml
11 -->
15 <id type='language' idStatus='regular'> <!-- 7962 items -->
17 ab aba~j abl~z
18 aca~b acd~f ach~i ack~n acp~z
19 ada~b add~j adl adn~o adq~u adw~z
[all …]
/external/webrtc/net/dcsctp/socket/
Ddcsctp_socket_test.cc4 * Use of this source code is governed by a BSD-style license
78 if (packet->descriptors()[0].type != DataChunk::kType) {
84 DataChunk::Parse(packet->descriptors()[0].data);
90 if (dc->stream_id() != stream_id) {
91 *result_listener << "the stream_id is " << *dc->stream_id();
105 if (packet->descriptors()[0].type != DataChunk::kType) {
111 DataChunk::Parse(packet->descriptors()[0].data);
117 if (dc->ppid() != ppid) {
118 *result_listener << "the ppid is " << *dc->ppid();
132 if (packet->descriptors()[0].type != DataChunk::kType) {
[all …]
/external/python/cpython3/Modules/clinic/
Dcmathmodule.c.h12 "acos($module, z, /)\n"
13 "--\n"
15 "Return the arc cosine of z.");
21 cmath_acos_impl(PyObject *module, Py_complex z);
27 Py_complex z; in cmath_acos() local
30 z = PyComplex_AsCComplex(arg); in cmath_acos()
34 /* modifications for z */ in cmath_acos()
36 _return_value = cmath_acos_impl(module, z); in cmath_acos()
54 "acosh($module, z, /)\n"
55 "--\n"
[all …]
/external/rust/android-crates-io/crates/bstr/src/unicode/fsm/
Dsentence_break_fwd.littleendian.dfa1 rust-regex-automata-sparse-dfa�������������$������0�������
3  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnop…
7  !!"-../>??@@AZ[`az{����������������������������������������������������������������������������…
13-..::??[[]]{{}}����������������������������������������������B�����D������ �����������(��…
17-..//0:;>??@@[[\\]]^`az{{||}}~�������������������������������������������������������������������…
21  !!"-../>??@@AZ[`az{�����������������������������������������������������������������������������…
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat.java11 public static int add(int len, int[] x, int[] y, int[] z) in add() argument
17 z[i] = (int)c; in add()
23 public static int add33At(int len, int x, int[] z, int zPos) in add33At() argument
25 // assert zPos <= (len - 2); in add33At()
26 long c = (z[zPos + 0] & M) + (x & M); in add33At()
27 z[zPos + 0] = (int)c; in add33At()
29 c += (z[zPos + 1] & M) + 1L; in add33At()
30 z[zPos + 1] = (int)c; in add33At()
32 return c == 0 ? 0 : incAt(len, z, zPos + 2); in add33At()
35 public static int add33At(int len, int x, int[] z, int zOff, int zPos) in add33At() argument
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/
DNat.java15 public static int add(int len, int[] x, int[] y, int[] z) in add() argument
21 z[i] = (int)c; in add()
27 public static int add33At(int len, int x, int[] z, int zPos) in add33At() argument
29 // assert zPos <= (len - 2); in add33At()
30 long c = (z[zPos + 0] & M) + (x & M); in add33At()
31 z[zPos + 0] = (int)c; in add33At()
33 c += (z[zPos + 1] & M) + 1L; in add33At()
34 z[zPos + 1] = (int)c; in add33At()
36 return c == 0 ? 0 : incAt(len, z, zPos + 2); in add33At()
39 public static int add33At(int len, int x, int[] z, int zOff, int zPos) in add33At() argument
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/raw/
DNat.java15 public static int add(int len, int[] x, int[] y, int[] z) in add() argument
21 z[i] = (int)c; in add()
27 public static int add33At(int len, int x, int[] z, int zPos) in add33At() argument
29 // assert zPos <= (len - 2); in add33At()
30 long c = (z[zPos + 0] & M) + (x & M); in add33At()
31 z[zPos + 0] = (int)c; in add33At()
33 c += (z[zPos + 1] & M) + 1L; in add33At()
34 z[zPos + 1] = (int)c; in add33At()
36 return c == 0 ? 0 : incAt(len, z, zPos + 2); in add33At()
39 public static int add33At(int len, int x, int[] z, int zOff, int zPos) in add33At() argument
[all …]
/external/rust/android-crates-io/crates/glam/src/swizzles/
Duvec3_impl.rs12 fn xx(self) -> UVec2 { in xx()
21 fn xy(self) -> UVec2 { in xy()
30 fn with_xy(self, rhs: UVec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> UVec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: UVec2) -> Self { in with_xz()
51 fn yx(self) -> UVec2 { in yx()
60 fn with_yx(self, rhs: UVec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]
Dvec3_impl.rs12 fn xx(self) -> Vec2 { in xx()
21 fn xy(self) -> Vec2 { in xy()
30 fn with_xy(self, rhs: Vec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> Vec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: Vec2) -> Self { in with_xz()
51 fn yx(self) -> Vec2 { in yx()
60 fn with_yx(self, rhs: Vec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]
Du64vec3_impl.rs12 fn xx(self) -> U64Vec2 { in xx()
21 fn xy(self) -> U64Vec2 { in xy()
30 fn with_xy(self, rhs: U64Vec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> U64Vec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: U64Vec2) -> Self { in with_xz()
51 fn yx(self) -> U64Vec2 { in yx()
60 fn with_yx(self, rhs: U64Vec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]
Ddvec3_impl.rs12 fn xx(self) -> DVec2 { in xx()
21 fn xy(self) -> DVec2 { in xy()
30 fn with_xy(self, rhs: DVec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> DVec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: DVec2) -> Self { in with_xz()
51 fn yx(self) -> DVec2 { in yx()
60 fn with_yx(self, rhs: DVec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]
Di16vec3_impl.rs12 fn xx(self) -> I16Vec2 { in xx()
21 fn xy(self) -> I16Vec2 { in xy()
30 fn with_xy(self, rhs: I16Vec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> I16Vec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: I16Vec2) -> Self { in with_xz()
51 fn yx(self) -> I16Vec2 { in yx()
60 fn with_yx(self, rhs: I16Vec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]
Du8vec3_impl.rs12 fn xx(self) -> U8Vec2 { in xx()
21 fn xy(self) -> U8Vec2 { in xy()
30 fn with_xy(self, rhs: U8Vec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> U8Vec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: U8Vec2) -> Self { in with_xz()
51 fn yx(self) -> U8Vec2 { in yx()
60 fn with_yx(self, rhs: U8Vec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]
/external/rust/android-crates-io/crates/glam/src/swizzles/neon/
Dvec3a_impl.rs12 fn xx(self) -> Vec2 { in xx()
21 fn xy(self) -> Vec2 { in xy()
30 fn with_xy(self, rhs: Vec2) -> Self { in with_xy()
31 Self::new(rhs.x, rhs.y, self.z) in with_xy()
36 fn xz(self) -> Vec2 { in xz()
39 y: self.z, in xz()
45 fn with_xz(self, rhs: Vec2) -> Self { in with_xz()
51 fn yx(self) -> Vec2 { in yx()
60 fn with_yx(self, rhs: Vec2) -> Self { in with_yx()
61 Self::new(rhs.y, rhs.x, self.z) in with_yx()
[all …]

12345678910>>...50